:root {
  --bg: #0d0d12;
  --bg-mid: #111118;
  --surface: #16161e;
  --surface-soft: #1b1b24;
  --surface-strong: #20202c;
  --text: #e8e2d4;
  --text-soft: #9e9587;
  --text-muted: #655f54;
  --line: rgba(232, 226, 212, 0.11);
  --line-soft: rgba(232, 226, 212, 0.06);
  --accent: #d4a540;
  --accent-deep: #b58b2c;
  --accent-soft: rgba(212, 165, 64, 0.13);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1140px;
  --header-height: 66px;
  --font-body: "Noto Sans TC", "Manrope", sans-serif;
  --font-heading: "Sora", "Noto Sans TC", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background: var(--bg);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p,
dd,
li {
  margin: 0;
}

/* ─── Layout ─────────────────────────────────────────── */

.shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 226, 212, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 212, 0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 55%);
}

/* ─── Notice Bar ──────────────────────────────────────── */

.notice-bar {
  background: rgba(212, 165, 64, 0.12);
  border-bottom: 1px solid rgba(212, 165, 64, 0.25);
  padding: 10px 0;
  text-align: center;
}

.notice-bar p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.notice-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.notice-bar a:hover {
  text-decoration: underline;
}

/* ─── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 13, 18, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.brand-mark img,
.site-footer img {
  width: auto;
  height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav a,
.lang-link,
.footer-links a,
.text-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.lang-link:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid rgba(212, 165, 64, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.86rem !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--accent-soft) !important;
  border-color: rgba(212, 165, 64, 0.5) !important;
  color: var(--accent) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.nav-cta-disabled small {
  font-size: 0.72em;
  opacity: 0.8;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.lang-link {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.lang-link.is-active {
  color: var(--text);
  background: var(--surface-soft);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

/* ─── Typography ─────────────────────────────────────── */

h1,
h2,
h3,
strong {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.3;
}

h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.45;
}

.kicker {
  display: inline-flex;
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

p,
dd,
li {
  color: var(--text-soft);
}

/* ─── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0d0d12;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 28px rgba(212, 165, 64, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(212, 165, 64, 0.4);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.09);
}

/* ─── Section base ───────────────────────────────────── */

main {
  overflow-x: clip;
}

.section-block {
  padding: 80px 0;
}

/* ─── Hero ───────────────────────────────────────────── */

.hero-section {
  position: relative;
  padding: 104px 0 88px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 60% 40%, rgba(212, 165, 64, 0.09), transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-body {
  max-width: 780px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-kicker .kicker {
  letter-spacing: 0.12em;
}

.hero-kicker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

.hero-tagline {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  color: var(--text-muted);
  font-weight: 600;
}

.hero-h1 {
  margin-top: 0;
  max-width: 18ch;
}

.hero-sub {
  margin-top: 26px;
  max-width: 56ch;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* ─── Trust Strip ────────────────────────────────────── */

.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.016);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  padding: 22px 28px;
  border-right: 1px solid var(--line-soft);
}

.trust-item:last-child {
  border-right: none;
}

.trust-value {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─── Services Section (homepage) ────────────────────── */

.services-section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-sub {
  margin-top: 8px;
  max-width: 54ch;
  font-size: 0.97rem;
  color: var(--text-soft);
}

.service-rows {
  margin-top: 44px;
  border-top: 1px solid var(--line-soft);
}

.service-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.22s ease;
}

.service-row:hover {
  padding-left: 10px;
}

.service-row-num {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-family: var(--font-heading);
  padding-top: 2px;
}

.service-row-name {
  display: block;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.service-row-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-top: 3px;
}

.service-row-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.service-row:hover .service-row-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.services-more {
  margin-top: 32px;
}

/* ─── Story Section ──────────────────────────────────── */

.story-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.story-kicker {
  margin-bottom: 12px;
}

.story-heading {
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.35;
  max-width: 28ch;
}

.story-body {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.story-body p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.story-link:hover {
  gap: 10px;
}

.story-stats {
  display: grid;
  gap: 0;
  padding-top: 8px;
}

.stat-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.stat-block:first-child {
  border-top: 1px solid var(--line-soft);
}

.stat-num {
  display: block;
  color: var(--accent);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── CTA Section ────────────────────────────────────── */

.cta-section {
  padding: 80px 0 100px;
  border-top: 1px solid var(--line-soft);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-heading {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  max-width: 26ch;
}

.cta-sub {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.97rem;
  max-width: 46ch;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Footer ─────────────────────────────────────────── */

.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--line-soft);
  padding: 32px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a::after,
.text-link::after {
  display: none;
}

.footer-inner p {
  margin: 0;
  justify-self: end;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: right;
}

/* ─── Inner Page Layouts ─────────────────────────────── */

.page-intro {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line-soft);
}

.page-intro h1 {
  margin-top: 14px;
  max-width: 22ch;
}

.page-intro p {
  margin-top: 18px;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.page-body {
  padding: 64px 0 96px;
}

/* About page */

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-text {
  display: grid;
  gap: 28px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.about-text h3 {
  margin-top: 8px;
  font-size: 1.12rem;
  color: var(--text);
}

.about-meta {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.about-meta-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.about-meta-item:first-child {
  padding-top: 0;
}

.about-meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-meta-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-meta-value {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.commitments {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
}

.commitments h2 {
  margin-top: 10px;
  margin-bottom: 36px;
}

.commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.commitment-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.commitment-item:last-child {
  border-bottom: none;
}

.commitment-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 4px;
  font-family: var(--font-heading);
}

.commitment-title {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.commitment-desc {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 52ch;
}

/* Services page */

.services-intro {
  max-width: 60ch;
  margin-bottom: 56px;
}

.services-intro p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.service-detail {
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 20px 36px;
  align-items: start;
}

.service-detail-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-family: var(--font-heading);
  padding-top: 6px;
}

.service-detail h2 {
  margin-top: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.3;
}

.service-detail p {
  margin-top: 14px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.service-detail-cta {
  padding-top: 6px;
  text-align: right;
}

/* FAQ page */

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 24px;
  max-width: 60ch;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* Contact page */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 28px;
}

.contact-info p {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-channel {
  display: grid;
  gap: 14px;
}

.contact-channel-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-channel-item:first-child {
  border-top: 1px solid var(--line-soft);
}

.contact-channel-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-channel-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-channel-value:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-soft);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23655f54' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Travel page */

.travel-intro {
  max-width: 60ch;
  margin-bottom: 64px;
}

.travel-intro p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.travel-services {
  display: grid;
  gap: 0;
}

.travel-service {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 20px 28px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}

.travel-service-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-family: var(--font-heading);
  padding-top: 5px;
}

.travel-service h2 {
  margin-top: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.travel-service p {
  margin-top: 12px;
  max-width: 54ch;
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.travel-service .story-link {
  margin-top: 20px;
}

/* ─── Branding page specifics ────────────────────────── */

.logo-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.logo-info {
  padding: 14px 18px 16px;
  background: var(--surface);
}

.logo-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.logo-info a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo-info a:hover {
  color: var(--accent-deep);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.back-link:hover {
  gap: 10px;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 1080px) {
  .story-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

@media (max-width: 920px) {
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line-soft);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .stat-block {
    padding: 24px 0;
  }

  .stat-block:first-child {
    border-top: none;
  }

  .stat-block:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
    padding-right: 24px;
  }

  .stat-block:nth-child(even) {
    padding-left: 24px;
  }

  .cta-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    row-gap: 14px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-layout {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .service-detail-cta {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 94px;
  }

  .shell {
    width: min(var(--container), calc(100% - 40px));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    justify-self: end;
  }

  body.nav-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(20, 20, 28, 0.97);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover {
    background: var(--surface-soft);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    width: 100%;
    text-align: center;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-section {
    padding: 64px 0 64px;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: none;
  }

  .service-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .service-row-arrow {
    display: none;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-block:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .stat-block:nth-child(even) {
    padding-left: 0;
  }

  .stat-block:first-child {
    border-top: 1px solid var(--line-soft);
  }

  .section-block {
    padding: 56px 0;
  }

  .services-section,
  .story-section,
  .cta-section {
    padding: 56px 0;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-detail-num {
    display: none;
  }

  .service-detail-cta {
    grid-column: 1;
  }

  .page-intro {
    padding: 52px 0 48px;
  }

  .page-intro h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* ─── Animations ─────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .hero-body {
    animation: fade-up 0.56s ease both;
  }

  .trust-strip {
    animation: fade-up 0.56s ease 0.06s both;
  }

  .services-section {
    animation: fade-up 0.56s ease 0.1s both;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
