/* ==========================================================
   China Trip Design — shared design system
   Palette: ink #1C1917 · jade #16594E · gold #A16207 · red #B23A2E
   Type: Bodoni Moda (display) + Jost (body)
   ========================================================== */

:root {
  --ink: #1C1917;
  --ink-soft: #44403C;
  --ink-mute: #78716C;
  --paper: #FAF9F7;
  --paper-2: #F4F1EB;
  --paper-3: #ECE7DE;
  --jade: #16594E;
  --jade-deep: #0E4038;
  --jade-tint: #EAF2EF;
  --jade-border: #CFE0DB;
  --gold: #A16207;
  --gold-soft: #CA8A04;
  --red: #B23A2E;
  --white: #FFFFFF;
  --border: #E4DFD6;
  --border-strong: #CFC8BB;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(28,25,23,.06), 0 1px 3px rgba(28,25,23,.05);
  --shadow: 0 10px 30px -12px rgba(28,25,23,.16);
  --shadow-lg: 0 30px 60px -20px rgba(28,25,23,.26);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --step-0: clamp(1rem, .95rem + .2vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.05rem + .5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.25rem + 1.2vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.5rem + 2.2vw, 3rem);
  --step-4: clamp(2.6rem, 1.8rem + 3.8vw, 4.4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }

:focus-visible { outline: 3px solid var(--jade); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section.tight { padding-block: clamp(40px, 5vw, 72px); }
.bg-soft { background: var(--paper-2); }

.eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--jade); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.head { max-width: 660px; margin-bottom: 48px; }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head h1, .head h2 { font-size: var(--step-3); margin: 16px 0 14px; }
.head p { font-size: var(--step-1); color: var(--ink-soft); font-weight: 300; margin: 0; line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 500; font-size: 1rem;
  border: 1.5px solid transparent; min-height: 52px; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--jade); color: var(--white); }
.btn-primary:hover { background: var(--jade-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--jade-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

.text-link { color: var(--jade); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.text-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,247,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s var(--ease);
}
header.site.scrolled { border-color: var(--border); background: rgba(250,249,247,.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Bodoni Moda', serif; font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: 'Jost', sans-serif; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .94rem; color: var(--ink-soft); position: relative; padding-block: 6px; transition: color .2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--jade); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; min-height: 44px; font-size: .94rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-block: 14px; font-size: .84rem; color: var(--ink-mute); background: var(--paper); }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-mute); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--jade); }
.breadcrumb .sep { color: var(--border-strong); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); border-bottom: 1px solid var(--border); padding-block: clamp(48px, 6vw, 84px); }
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; margin: 16px 0 14px; }
.page-hero .lead { font-size: var(--step-1); color: var(--ink-soft); font-weight: 300; max-width: 56ch; margin: 0; line-height: 1.55; }
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Home hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-block: clamp(44px, 6.5vw, 88px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border); font-size: .85rem; color: var(--ink-soft); box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-badge .flag { width: 20px; height: 14px; border-radius: 2px; flex: none; }
.hero h1 { font-size: var(--step-4); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--jade); }
.hero .lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 40ch; margin: 0 0 30px; line-height: 1.5; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note { font-size: .9rem; color: var(--ink-mute); max-width: 46ch; display: flex; gap: 10px; align-items: flex-start; }
.hero-note svg { width: 18px; height: 18px; color: var(--jade); flex: none; margin-top: 3px; }

.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #46655d, #17332d); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 15px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 270px;
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--jade-tint); display: grid; place-items: center; color: var(--jade); flex: none; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-size: .93rem; display: block; line-height: 1.3; }
.hero-float span { font-size: .78rem; color: var(--ink-mute); }
.float-1 { top: 26px; left: -30px; }
.float-2 { bottom: 30px; right: -26px; }

/* ---------- Banner (visa notice) ---------- */
.banner {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--jade-tint); border: 1px solid var(--jade-border); border-radius: var(--radius-lg); padding: 24px 28px;
}
.banner .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--jade); color: #fff; display: grid; place-items: center; flex: none; }
.banner .ic svg { width: 22px; height: 22px; }
.banner strong { font-family: 'Bodoni Moda', serif; font-size: 1.25rem; font-weight: 600; display: block; margin-bottom: 6px; }
.banner p { margin: 0 0 8px; color: var(--ink-soft); font-size: .97rem; max-width: 72ch; }
.banner .text-link { font-size: .92rem; }

/* ---------- Callout (disclaimers) ---------- */
.callout {
  background: var(--paper-2); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px; font-size: .93rem; color: var(--ink-soft); line-height: 1.65;
}
.callout.jade { border-left-color: var(--jade); }
.callout strong { color: var(--ink); font-weight: 500; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--jade-tint); display: grid; place-items: center; color: var(--jade); margin-bottom: 20px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

/* ---------- Route cards ---------- */
.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.route-grid.three { grid-template-columns: repeat(3, 1fr); }
.route {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.route:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.route .art { position: relative; aspect-ratio: 5/3; overflow: hidden; }
.route .art svg.motif { position: absolute; inset: 0; width: 100%; height: 100%; }
.route .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.route:hover .art img { transform: scale(1.05); }
.art-jade { background: linear-gradient(155deg, #2A6B5F 0%, #123F37 100%); }
.art-ink  { background: linear-gradient(155deg, #4A443E 0%, #1C1917 100%); }
.art-gold { background: linear-gradient(155deg, #B07A1E 0%, #6E4A05 100%); }
.art-red  { background: linear-gradient(155deg, #B85043 0%, #7C2921 100%); }
.route .chips { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; z-index: 2; }
.chip { background: rgba(255,255,255,.94); color: var(--ink); font-size: .74rem; letter-spacing: .04em; font-weight: 500; padding: 6px 12px; border-radius: 999px; }
.route .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.route .kicker { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.route h3 { font-size: 1.45rem; margin-bottom: 4px; }
.route .cities { font-size: .88rem; color: var(--ink-mute); margin-bottom: 16px; }
.route ul.hl { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.route ul.hl li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.route ul.hl li svg { width: 17px; height: 17px; color: var(--jade); flex: none; margin-top: 4px; }
.route .warn { display: flex; gap: 8px; align-items: flex-start; font-size: .84rem; color: var(--ink-mute); background: var(--paper-2); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 18px; }
.route .warn svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.route .foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.route .foot .tone { font-size: .84rem; color: var(--ink-mute); }

/* ---------- Steps ---------- */
.band-dark { background: var(--ink); color: var(--paper); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark .head p { color: rgba(250,249,247,.72); }
.band-dark .eyebrow { color: var(--gold-soft); }
.band-dark .eyebrow::before { background: var(--gold-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(250,249,247,.25); display: grid; place-items: center;
  font-family: 'Bodoni Moda', serif; font-size: 1.35rem; color: var(--gold-soft); margin-bottom: 18px; background: var(--ink);
}
.step h3 { font-size: 1.28rem; margin-bottom: 8px; }
.step p { color: rgba(250,249,247,.68); font-size: .95rem; margin: 0; }
.steps.light .step .num { border-color: var(--border-strong); color: var(--jade); background: var(--white); }
.steps.light .step p { color: var(--ink-soft); }

/* ---------- Included / excluded ---------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.incl {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px;
}
.incl.excl { background: var(--paper-2); }
.incl h3 { font-size: 1.4rem; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.incl h3 .dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.incl h3 .dot.in { background: var(--jade-tint); color: var(--jade); }
.incl h3 .dot.out { background: var(--paper-3); color: var(--ink-mute); }
.incl h3 .dot svg { width: 18px; height: 18px; }
.incl ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.incl ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.incl ul li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; }
.incl ul li svg.tick { color: var(--jade); }
.incl ul li svg.cross { color: var(--ink-mute); }

/* ---------- Pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--jade); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--jade); color: #fff; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card .plan { font-family: 'Bodoni Moda', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.price-card .for { font-size: .9rem; color: var(--ink-mute); margin-bottom: 18px; min-height: 44px; }
.price-card .amount { margin-bottom: 22px; }
.price-card .amount small { display: block; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.price-card .amount b { font-family: 'Bodoni Moda', serif; font-size: 2.1rem; font-weight: 600; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.price-card ul li svg { width: 17px; height: 17px; color: var(--jade); flex: none; margin-top: 4px; }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
table.pricing { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .95rem; }
table.pricing th, table.pricing td { padding: 15px 20px; text-align: left; }
table.pricing thead th {
  background: var(--paper-2); font-family: 'Jost', sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--border);
}
table.pricing tbody tr + tr { border-top: 1px solid var(--border); }
table.pricing tbody th { font-weight: 500; color: var(--ink); }
table.pricing td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
table.pricing td b { color: var(--ink); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Bodoni Moda', serif; font-size: 1.22rem; color: var(--ink); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; flex: none; transition: background .2s var(--ease), border-color .2s; }
.faq summary .pm svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.faq details[open] summary .pm { background: var(--jade); border-color: var(--jade); color: #fff; }
.faq details[open] summary .pm svg { transform: rotate(45deg); }
.faq details > div { padding: 0 0 24px; color: var(--ink-soft); font-size: .97rem; line-height: 1.7; max-width: 66ch; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Split (about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #46655d, #17332d); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: var(--step-3); margin: 16px 0 18px; }
.split p { color: var(--ink-soft); }

/* ---------- CTA panel ---------- */
.cta-panel {
  position: relative; overflow: hidden; background: var(--jade-deep); color: var(--paper);
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center;
}
.cta-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 15%, rgba(202,138,4,.25), transparent 55%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; font-size: var(--step-3); margin-bottom: 14px; }
.cta-panel p { color: rgba(250,249,247,.78); font-size: var(--step-1); font-weight: 300; max-width: 52ch; margin: 0 auto 30px; }
.cta-panel .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Guide topics ---------- */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; }
.topic .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--jade-tint); display: grid; place-items: center; color: var(--jade); margin-bottom: 16px; }
.topic .ic svg { width: 23px; height: 23px; }
.topic h3 { font-size: 1.2rem; margin-bottom: 8px; }
.topic p { margin: 0; color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-card fieldset { border: 0; padding: 0; margin: 0 0 30px; }
.form-card legend { font-family: 'Bodoni Moda', serif; font-size: 1.35rem; font-weight: 600; padding: 0; margin-bottom: 6px; }
.form-card .legend-sub { font-size: .9rem; color: var(--ink-mute); margin-bottom: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: .88rem; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.f-field label .opt { color: var(--ink-mute); font-weight: 400; }
.f-field label .req { color: var(--red); }
.f-field input[type="text"], .f-field input[type="email"], .f-field input[type="tel"],
.f-field select, .f-field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
  background: var(--paper); color: var(--ink); font-family: inherit; font-size: .97rem; min-height: 50px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.f-field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--jade); box-shadow: 0 0 0 3px rgba(22,89,78,.15); }
.f-field .hint { font-size: .8rem; color: var(--ink-mute); margin-top: 5px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 16px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); cursor: pointer; padding: 4px 0; }
.check-item input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--jade); flex: none; cursor: pointer; }
.consent { display: flex; gap: 12px; align-items: flex-start; background: var(--paper-2); border-radius: var(--radius-sm); padding: 16px 18px; font-size: .9rem; color: var(--ink-soft); margin-bottom: 24px; cursor: pointer; }
.consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--jade); flex: none; cursor: pointer; }
.form-success { text-align: center; padding: clamp(30px, 5vw, 60px); }
.form-success .ok { width: 68px; height: 68px; border-radius: 50%; background: var(--jade-tint); color: var(--jade); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }

/* ---------- Prose (legal & long-form) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 2.2em 0 .6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 1.6em 0 .5em; }
.prose p, .prose li { color: var(--ink-soft); font-size: .98rem; }
.prose ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.2em; }
.prose .updated { font-size: .85rem; color: var(--ink-mute); border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 30px; }

/* ---------- Footer ---------- */
footer.site { background: var(--paper-2); border-top: 1px solid var(--border); padding-block: 60px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 44px; }
footer.site .brand { margin-bottom: 16px; }
footer.site .about { color: var(--ink-soft); font-size: .92rem; max-width: 36ch; margin: 0 0 18px; }
.foot-contact { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .92rem; color: var(--ink-soft); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { width: 17px; height: 17px; color: var(--jade); flex: none; margin-top: 4px; }
.fcol h4 { font-family: 'Jost', sans-serif; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 16px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fcol ul a { font-size: .92rem; color: var(--ink-soft); transition: color .2s var(--ease); }
.fcol ul a:hover { color: var(--jade); }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--ink-mute); font-size: .82rem; }
.foot-bottom .disclaimer-line { max-width: 62ch; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,249,247,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--border);
}
.sticky-cta .btn { width: 100%; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .float-1 { left: 0; } .float-2 { right: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards.three { grid-template-columns: repeat(2, 1fr); }
  .route-grid.three { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-card .for { min-height: 0; }
  .incl-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; box-shadow: var(--shadow);
  }
  .route-grid, .route-grid.three, .cards, .cards.three, .topics, .check-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .page-hero .actions .btn { width: 100%; }
  .banner { flex-direction: column; }
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
}
