/* ==========================================================================
   PGMN TOUR — Design System
   Single source of truth for tokens and components.
   Page files may only add page-specific imagery, never new colours or spacing.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces */
  --paper: #f6f3ec;
  --paper-warm: #f1eee5;
  --card: #ffffff;
  --card-warm: #fffdf8;
  --sand: #e9dfcd;
  --mist: #dfe8e2;

  /* Ink */
  --ink: #18211d;
  --ink-soft: #465047;
  --muted: #66716b;
  --on-dark: #ffffff;
  --on-dark-soft: rgba(255, 255, 255, 0.76);
  --on-dark-faint: rgba(255, 255, 255, 0.14);

  /* Brand green */
  --green: #244c3a;
  --green-deep: #1a3a2c;
  --green-hover: #2d5f49;

  /* Gold — three tints, each with a job.
     gold-ink is the only one safe for small text on light surfaces. */
  --gold-ink: #8a6626;
  --gold: #c8a063;
  --gold-on-dark: #ecc890;

  /* Lines & shadows */
  --line: rgba(24, 33, 29, 0.12);
  --line-strong: rgba(24, 33, 29, 0.22);
  --shadow: 0 18px 50px rgba(24, 33, 29, 0.10);
  --shadow-lg: 0 22px 60px rgba(23, 32, 25, 0.14);

  /* Type */
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans SC", sans-serif;
  --font-display: Georgia, "Songti SC", "Times New Roman", serif;

  /* Spacing scale */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-s: 18px;
  --space-m: 26px;
  --space-l: 38px;
  --space-xl: 54px;
  --space-2xl: 76px;
  --space-3xl: 92px;

  /* Geometry */
  --max: 1180px;
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 30px;
  --radius-xl: 34px;
  --pill: 999px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  /* Anchor targets clear the fixed nav instead of hiding beneath it. */
  scroll-padding-top: calc(var(--nav-h) + var(--space-s));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

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

button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 6.4vw, 5.25rem); line-height: 1.03; letter-spacing: -0.045em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -0.025em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--green);
  color: var(--on-dark);
  font-weight: 700;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

section { padding: var(--space-3xl) 0; }
.section--tight { padding-block: var(--space-2xl); }
.section--flush-top { padding-top: 0; }

/* Full-bleed colour bands */
.band--green {
  background: var(--green);
  color: var(--on-dark);
}
.band--sand { background: var(--sand); }

.band--green .lead,
.band--green p { color: var(--on-dark-soft); }
.band--green .eyebrow { color: var(--gold-on-dark); }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  display: block;
  margin: 0 0 var(--space-2xs);
  color: var(--gold-ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  text-wrap: pretty;
}

/* Editorial serif — used by the About page and closing statements. */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.03em; }
.page--editorial h1,
.page--editorial h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* Stacked statement lines, e.g. 慢一点。少一点。深入一点。 */
.statement {
  margin: var(--space-m) 0;
  font-size: clamp(1.4rem, 2.9vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.pullquote {
  margin: var(--space-m) 0 0;
  padding: var(--space-m) var(--space-m);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  background: #f7f1e8;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.45;
}
.pullquote--plain {
  background: none;
  border-radius: 0;
  padding: var(--space-xs) 0 var(--space-xs) var(--space-m);
}
.pullquote--serif {
  font-family: var(--font-display);
  font-weight: 500;
}

/* Section header: kicker + title on the left, supporting line on the right. */
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-l);
  align-items: start;
  margin-bottom: var(--space-l);
}
.section-head--stack {
  display: block;
  max-width: 820px;
}
.section-head--stack .lead { margin-top: var(--space-s); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 0.98rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: var(--on-dark); }
.btn--primary:hover { background: var(--green-hover); }

.btn--light { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }
.btn--light:hover { background: #fff; }

.btn--gold { background: var(--gold); color: #241a08; }
.btn--gold:hover { background: #d3ad72; }

.btn--outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}
.btn--outline:hover { background: #fff; border-color: var(--green); }

/* On photography / dark bands */
.btn--onDark {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10);
  color: var(--on-dark);
  backdrop-filter: blur(8px);
}
.btn--onDark:hover { background: rgba(255, 255, 255, 0.2); }

.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-m);
}
.btn-row--end { justify-content: flex-end; margin-top: 0; }

/* Arrow text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-weight: 800;
  color: var(--green);
}
.text-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.text-link:hover::after { transform: translateX(4px); }
.text-link--onDark { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(246, 243, 236, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 33, 29, 0.07);
}

.site-nav__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
/* The PGMN wordmark. width/height are on the <img> so the row does not
   reflow while it loads; the height here is what actually governs size. */
.brand__logo {
  display: block;
  height: 38px;
  width: auto;
  flex: none;
}
.brand__text { display: flex; align-items: baseline; gap: 8px; }
.brand__text small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  font-size: 0.92rem;
  font-weight: 600;
}
.site-nav__menu a:not(.btn):not(.lang-toggle__opt) { padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav__menu a:not(.btn):not(.lang-toggle__opt):hover { border-bottom-color: var(--gold); }
.site-nav__menu a[aria-current="page"] { border-bottom-color: var(--green); }

/* Language toggle — a two-state segmented control, not a fifth nav
   destination. Showing both languages with the current one filled means the
   visitor never has to guess whether a label is the current state or the
   action. The track is inset and quiet so it stays subordinate to the CTA. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.55);
  /* Inner shadow reads as a recessed track, so the active pill sits on top. */
  box-shadow: inset 0 1px 2px rgba(24, 33, 29, 0.05);
}

.lang-toggle__opt {
  display: block;
  padding: 5px 11px;
  border-radius: var(--pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}

/* The language being read. Rendered as a <span>, so it is not a link to the
   page you are already on. */
.lang-toggle__opt.is-active {
  background: var(--green);
  color: var(--on-dark);
  box-shadow: 0 1px 3px rgba(24, 33, 29, 0.20);
}

a.lang-toggle__opt:hover {
  color: var(--ink);
  background: rgba(36, 76, 58, 0.09);
}
a.lang-toggle__opt:focus-visible { outline-offset: 1px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.22s var(--ease), opacity 0.15s linear;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* Pages whose first block is not a full-bleed hero need the nav's height back. */
.page-offset { padding-top: var(--nav-h); }

/* --------------------------------------------------------------------------
   7. Heroes
   -------------------------------------------------------------------------- */

/* 7a. Split hero — copy beside a framed image (homepage) */
.hero--split { padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-2xl); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-m);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero--split .lead { max-width: 34em; margin-top: var(--space-m); }

.hero__visual {
  position: relative;
  min-height: 600px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
}
.hero__stamp {
  position: absolute;
  inset: auto var(--space-m) var(--space-m);
  padding: var(--space-m);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-m);
  background: rgba(17, 28, 22, 0.54);
  backdrop-filter: blur(12px);
  color: var(--on-dark);
}
.hero__stamp strong { display: block; font-size: 1.3rem; line-height: 1.25; }
.hero__stamp span { display: block; margin-top: 6px; color: var(--on-dark-soft); font-size: 0.95rem; }

/* 7b. Image hero — full-bleed photograph with copy at the bottom */
.hero--image {
  display: grid;
  align-items: end;
  min-height: 82vh;
  color: var(--on-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero--image .eyebrow { color: var(--gold-on-dark); }
.hero__content {
  max-width: 860px;
  padding: calc(var(--nav-h) + var(--space-2xl)) 0 var(--space-2xl);
}
.hero__content p { color: var(--on-dark-soft); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 42em; }
.hero__content p strong { color: var(--on-dark); }
.hero__sub {
  margin-bottom: var(--space-s);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.95rem);
  opacity: 0.94;
}

/* --------------------------------------------------------------------------
   8. Surfaces & cards
   -------------------------------------------------------------------------- */

.panel {
  padding: var(--space-xl);
  border-radius: var(--radius-l);
  background: var(--card);
  box-shadow: var(--shadow);
}
.panel--bordered {
  background: var(--card-warm);
  border: 1px solid var(--line);
  box-shadow: none;
}
.panel--green { background: var(--green); color: var(--on-dark); }
.panel--green p { color: var(--on-dark-soft); }
.panel > p { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: var(--space-m); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-s); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-s); }
/* stretch, not center: the text column sets the row height, and a centered
   fixed-height figure would leave dead space above and below it. */
.grid--split { grid-template-columns: 0.95fr 1.05fr; gap: var(--space-xl); align-items: stretch; }

/* Framed photograph used inside split layouts */
.figure {
  /* Fills the row the text column defines; min-height is only the floor for
     when the text is the shorter of the two. The photo is cropped to fit, so
     the source image's own proportions do not matter — but a portrait source
     survives a tall crop better than a landscape one. */
  min-height: 580px;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.figure--portrait { min-height: 0; }
.figure img { width: 100%; height: 100%; object-fit: cover; }

/* 8a. Journey card — big photographic link tile */
.journey-card {
  position: relative;
  display: block;
  min-height: 500px;
  border-radius: var(--radius-l);
  overflow: hidden;
  color: var(--on-dark);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  transition: transform 0.3s var(--ease);
}
.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.7));
}
.journey-card:hover { transform: translateY(-4px); }
.journey-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: var(--space-l);
}
.journey-card__body .eyebrow { color: var(--gold-on-dark); }
.journey-card__body h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: var(--space-xs); }
.journey-card__body p { max-width: 34em; color: var(--on-dark-soft); }

/* 8b. Numbered feature card */
.feature-card {
  padding: var(--space-l) var(--space-m);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.74);
}
.feature-card__num {
  color: var(--gold-ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.feature-card h3 { margin: var(--space-xs) 0 var(--space-2xs); }
.feature-card p { margin: 0; color: var(--muted); }

/* 8c. Experience card — sits on the green band */
.experience-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: var(--space-m);
  border: 1px solid var(--on-dark-faint);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.08);
}
.experience-card__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-on-dark);
  font-weight: 900;
  font-size: 0.9rem;
}
.experience-card h3 { margin: auto 0 var(--space-2xs); padding-top: var(--space-m); }
.experience-card p { margin: 0; color: var(--on-dark-soft); }

/* 8d. Season card — photographic, four across */
.season-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-m);
  overflow: hidden;
  color: var(--on-dark);
  background-position: center;
  background-size: cover;
}
.season-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.74));
}
.season-card__body { position: absolute; inset: auto 0 0; z-index: 1; padding: var(--space-m); }
.season-card__body small {
  color: var(--gold-on-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.season-card__body h3 { margin: 8px 0 10px; }
.season-card__body p { margin: 0; color: var(--on-dark-soft); font-size: 0.95rem; }

/* Flat season card, for the homepage summary on the green band */
.season-tile {
  min-height: 240px;
  padding: var(--space-m);
  border: 1px solid var(--on-dark-faint);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.08);
}
.season-tile small {
  color: var(--gold-on-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.season-tile h3 { margin: var(--space-s) 0 10px; }
.season-tile p { margin: 0; color: var(--on-dark-soft); }

/* 8e. Trip card — poster image over structured detail */
.trip-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}
.trip-card__media {
  aspect-ratio: 16 / 11;
  background: var(--paper-warm);
}
.trip-card__media img { width: 100%; height: 100%; object-fit: cover; }
.trip-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-l); }
.trip-card__body h3 { margin-bottom: var(--space-2xs); font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.trip-card__body p { color: var(--muted); }
.trip-card .btn { align-self: flex-start; margin-top: auto; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: var(--space-s) 0 var(--space-m); }
.tag {
  padding: 6px 12px;
  border-radius: var(--pill);
  background: var(--paper-warm);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

/* 8f. Poster gallery — static promotional artwork, any aspect ratio */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-m);
}
.poster {
  display: block;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}
.poster:hover { transform: translateY(-4px); }
.poster img { width: 100%; height: auto; }
.poster__caption {
  padding: var(--space-s) var(--space-m) var(--space-m);
  font-weight: 700;
}
.poster__caption span { display: block; color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* 8g. Numbered step */
.step {
  padding: var(--space-m);
  border-radius: var(--radius-m);
  background: var(--sand);
  counter-increment: step;
}
.steps { counter-reset: step; }
.step::before {
  content: "0" counter(step);
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.step h3 { margin: var(--space-s) 0 var(--space-3xs); }
.step p { margin: 0; color: var(--ink-soft); }

/* 8h. Stat block */
.stat {
  padding: var(--space-m);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper-warm);
}
.stat strong { display: block; font-size: clamp(1.75rem, 3vw, 2.2rem); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 0.88rem; }

/* 8i. Person card */
.person {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--card-warm);
}
.person__photo { aspect-ratio: 4 / 3; background: #ddd6ca; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__body { padding: var(--space-m); }
.person h3 { font-size: 1.3rem; }
.person__role { margin: 2px 0 var(--space-xs); color: var(--gold-ink); font-size: 0.85rem; font-weight: 800; }
.person p { margin: 0; color: var(--muted); }
.person--green { background: var(--green); color: var(--on-dark); border-color: transparent; }
.person--green p { color: var(--on-dark-soft); }
.person--green .person__role { color: var(--gold-on-dark); }

/* 8j. Bulleted fact lists */
.tick-list { margin: var(--space-s) 0 0; padding: 0; list-style: none; }
.tick-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line);
}
.tick-list li:last-child { border-bottom: 0; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.fact-panel {
  margin-top: var(--space-m);
  padding: var(--space-m);
  border-radius: var(--radius-m);
  background: var(--mist);
}
.fact-panel h3 { margin-bottom: var(--space-3xs); font-size: 1.25rem; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: var(--space-m) 0 0;
  padding: 0;
  list-style: none;
}
.service-list li { padding-top: 12px; border-top: 1px solid var(--line); font-weight: 700; }

/* --------------------------------------------------------------------------
   9. Composite blocks
   -------------------------------------------------------------------------- */

/* Copy on the left, actions on the right */
.split-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-l);
  align-items: center;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}
.split-box--white { background: var(--card); box-shadow: var(--shadow); }
.split-box--sand { background: var(--sand); }
.split-box--sand p { color: var(--ink-soft); }
.split-box--photo {
  color: var(--on-dark);
  background-position: center;
  background-size: cover;
}
.split-box--photo p { color: var(--on-dark-soft); }
.split-box--photo .eyebrow { color: var(--gold-on-dark); }
.split-box p { font-size: 1.05rem; color: var(--muted); }

/* Centred closing statement over photography */
.closing-box {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: var(--space-2xl) var(--space-m);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--on-dark);
  background-position: center;
  background-size: cover;
}
.closing-box .eyebrow { color: var(--gold-on-dark); }
.closing-box p {
  max-width: 44em;
  margin-inline: auto;
  color: var(--on-dark-soft);
  font-size: 1.05rem;
}
.closing-box h2 { margin-bottom: var(--space-s); }
.closing-box .btn-row { justify-content: center; }

/* Date plaque used on the Japan launch block */
.launch-date {
  padding: var(--space-l);
  border-radius: var(--radius-m);
  background: var(--green);
  color: var(--on-dark);
}
.launch-date span { color: var(--gold-on-dark); font-weight: 800; letter-spacing: 0.14em; font-size: 0.8rem; }
.launch-date strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Empty-state placeholder for sections the CMS will fill */
.empty-note {
  padding: var(--space-l);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-m);
  color: var(--muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */

.footer-logo {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: var(--space-xs);
}

.site-footer {
  padding: var(--space-l) 0 var(--space-xl);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--line);
}
.site-footer h4 {
  margin-bottom: var(--space-2xs);
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { padding: 3px 0; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-l);
  padding-top: var(--space-s);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   11. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--split,
  .hero__grid,
  .section-head,
  .split-box { grid-template-columns: 1fr; }
  .section-head { gap: var(--space-s); }
  .btn-row--end { justify-content: flex-start; margin-top: var(--space-s); }
  .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__visual { min-height: 480px; }
  .figure { min-height: 460px; }

  /* Collapse the menu behind a toggle */
  .nav-toggle { display: grid; place-items: center; }
  .site-nav__menu {
    position: absolute;
    inset: var(--nav-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2xs);
    padding: var(--space-s) 20px var(--space-m);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-size: 1rem;
  }
  .site-nav__menu[data-open="true"] { display: flex; }
  .site-nav__menu a:not(.btn):not(.lang-toggle__opt) {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  /* Keep the control compact in the collapsed menu rather than letting the
     stretched column pull it full width. */
  .lang-toggle { align-self: flex-start; margin-top: var(--space-s); }
  .lang-toggle__opt { padding: 7px 14px; font-size: 0.8rem; }
  .site-nav__menu .btn { margin-top: var(--space-2xs); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  section { padding: var(--space-2xl) 0; }
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; }
  .panel, .split-box { padding: var(--space-m); }
  .trip-card__body { padding: var(--space-m); }
  .hero--image { min-height: 76vh; }
  .hero__content { padding-bottom: var(--space-xl); }
  .hero__visual { min-height: 400px; }
  .figure { min-height: 380px; }
  .journey-card { min-height: 420px; }
  .journey-card__body { padding: var(--space-m); }
  .service-list { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: var(--space-m); }
}

/* --------------------------------------------------------------------------
   12. Motion & print
   -------------------------------------------------------------------------- */

@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;
  }
}

@media print {
  .site-nav, .nav-toggle, .btn-row { display: none !important; }
  body { background: #fff; }
  .panel, .trip-card { box-shadow: none; border: 1px solid #ccc; }
}
