:root {
  --bg: #f6f2ec;
  --paper: #fffaf3;
  --paper-strong: #ffffff;
  --ink: #18201f;
  --muted: #596360;
  --line: rgba(24, 32, 31, 0.14);
  --accent: #b4482c;
  --accent-dark: #7e2f1d;
  --green: #184d3d;
  --blue: #244d68;
  --gold: #d69b35;
  --shadow: 0 20px 48px rgba(29, 34, 32, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.site-header,
main {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand,
.site-nav a,
.text-link,
.source-list a,
.success-panel a {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.text-link:hover,
.source-list a:hover,
.success-panel a:hover {
  color: var(--accent-dark);
}

section {
  margin-top: 28px;
}

.hero {
  min-height: min(720px, calc(100vh - 92px));
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(14, 20, 19, 0.78), rgba(14, 20, 19, 0.3)),
    url("../img/dublin-survival-pack-mockup.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-overlay {
  width: min(760px, 100%);
  padding: clamp(24px, 5vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  font-weight: 800;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text {
  color: #fffaf3;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  max-width: 17ch;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 62ch;
  margin: 18px 0 0;
}

.hero-actions,
.pricing-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf3;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(180, 72, 44, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.problem-band,
.sample-band,
.trust-section,
.content-preview {
  padding: clamp(28px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 66ch;
  margin: 0;
}

.problem-grid,
.trust-grid,
.checklist-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-grid article,
.trust-grid article,
.feature-card,
.lead-capture-card,
.pricing-card,
.success-card,
.success-panel {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.section-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 5vw, 52px) 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sample-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.pricing-section {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px) 0;
  background: #e9efe8;
  margin-left: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  margin-right: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
}

.pricing-card {
  width: min(720px, calc(100% - 32px));
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 800;
}

.price span {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.pricing-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.launch-form {
  margin-top: 24px;
}

.lead-form label {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 32, 31, 0.18);
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.faq {
  padding: clamp(28px, 5vw, 52px) 0 56px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.free-guide-hero {
  max-width: 780px;
  padding: clamp(28px, 5vw, 54px) 0 10px;
}

.guide-page {
  padding-bottom: 64px;
}

.guide-hero {
  padding: clamp(32px, 6vw, 72px) 0 24px;
  max-width: 860px;
}

.guide-hero h1,
.free-guide-hero h1 {
  max-width: 13ch;
}

.guide-hero p,
.free-guide-hero p {
  max-width: 68ch;
  font-size: 1.08rem;
}

.guide-section {
  padding: clamp(28px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
}

.guide-section > h2,
.guide-section > .eyebrow + h2 {
  margin-bottom: 18px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid article,
.guide-callout,
.phrase-box,
.phrase-list,
.itinerary-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.guide-grid ul,
.itinerary-card ol,
.source-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.guide-callout {
  margin: 0 0 16px;
  color: var(--green);
  background: #e9efe8;
  font-weight: 700;
}

.phrase-box,
.phrase-list {
  margin-top: 16px;
}

.phrase-box p,
.phrase-list p {
  margin: 8px 0;
}

.itinerary-list {
  display: grid;
  gap: 16px;
}

.sources {
  padding-bottom: 0;
}

.lead-capture-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  box-shadow: var(--shadow);
}

.success-page {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
}

.success-card {
  max-width: 760px;
  box-shadow: var(--shadow);
}

.success-panel {
  margin-top: 22px;
  background: var(--paper);
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-split,
  .lead-capture-card,
  .problem-grid,
  .trust-grid,
  .checklist-preview,
  .sample-layout,
  .guide-grid,
  .guide-grid.two {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }
}

@media (max-width: 640px) {
  .site-header,
  main {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  h1 {
    max-width: 11ch;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .pricing-section {
    display: none;
  }

  body {
    background: #ffffff;
  }

  main,
  .site-header {
    width: 100%;
  }

  .guide-section,
  .guide-grid article,
  .guide-callout,
  .phrase-box,
  .phrase-list,
  .itinerary-card {
    break-inside: avoid;
    box-shadow: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }
}

/* Chinese Ireland guide landing page */
.zh-home {
  --bg: #f7efe3;
  --paper: #fff7ec;
  --paper-strong: #fffdf8;
  --ink: #17211d;
  --muted: #5f675f;
  --line: rgba(23, 33, 29, 0.14);
  --accent: #b64d32;
  --accent-dark: #7b2d1f;
  --green: #174d3b;
  --blue: #22637a;
  --gold: #d6a23d;
  --clay: #c9875d;
  --sea: #dbe9e4;
  --shadow: 0 24px 70px rgba(38, 31, 22, 0.16);
  --soft-shadow: 0 14px 34px rgba(38, 31, 22, 0.1);
  --hero-photo: url("../img/cliffs-moher-kyle-lockett.jpg");
  --inis-photo: url("../img/inisheer-boat-beach-ulrike-donohue.jpg");
  --achill-photo: url("../img/achill-road-jonas-stolle.jpg");
  --cliffs-photo: url("../img/cliffs-moher-kyle-lockett.jpg");
  --kerry-photo: url("../img/dingle-kerry-dahlia-akhaine.jpg");
  --dublin-photo: url("../img/dublin-liffey-sophie-popplewell.jpg");
  font-family: "Noto Sans SC", "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(247, 239, 227, 0.96) 340px),
    repeating-linear-gradient(90deg, rgba(23, 33, 29, 0.025) 0 1px, transparent 1px 72px),
    var(--bg);
  overflow-x: hidden;
}

.zh-home h1,
.zh-home h2,
.zh-home h3,
.zh-brand {
  font-family: "Noto Serif SC", "Noto Sans SC", Georgia, serif;
}

.zh-home h1,
.zh-home h2,
.zh-home h3 {
  letter-spacing: 0;
}

.zh-home h1 {
  max-width: none;
  font-size: clamp(3.25rem, 6.8vw, 5.9rem);
  line-height: 0.96;
}

.zh-home h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.6vw, 4.15rem);
  line-height: 1.05;
}

.zh-home h3 {
  font-size: 1.32rem;
}

.zh-home p {
  font-size: 1rem;
}

.zh-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
}

.zh-header::before {
  position: fixed;
  inset: 0 0 auto;
  height: 74px;
  content: "";
  pointer-events: none;
  background: rgba(247, 239, 227, 0.84);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.zh-brand {
  color: var(--green);
  font-size: 1.32rem;
  font-weight: 900;
}

.zh-nav {
  align-items: center;
}

.zh-nav a {
  color: rgba(23, 33, 29, 0.68);
}

.zh-nav a:hover,
.zh-nav a:focus-visible {
  color: var(--accent-dark);
}

.journey-hero {
  position: relative;
  display: grid;
  min-height: min(640px, calc(100svh - 118px));
  align-items: end;
  margin-top: 0;
  margin-left: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  margin-right: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  padding: clamp(28px, 5vw, 74px)
    max(16px, calc((100vw - var(--max-width)) / 2 + 16px));
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(90deg, rgba(10, 26, 22, 0.98) 0%, rgba(10, 26, 22, 0.84) 48%, rgba(10, 26, 22, 0.44) 78%, rgba(10, 26, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(198, 126, 84, 0.22), rgba(198, 126, 84, 0)),
    var(--hero-photo) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.journey-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 28, 23, 0.52));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.zh-home .hero-content .eyebrow,
.zh-home .hero-content h1,
.zh-home .hero-content .hero-text {
  color: #fff8ed;
}

.zh-home .hero-text {
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.78;
}

.route-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.route-switch a,
.pack-badge,
.mini-links a,
.pack-links a,
.transport-stack a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.route-switch a {
  padding: 0 14px;
  color: #fff8ed;
  background: rgba(255, 248, 237, 0.15);
  border: 1px solid rgba(255, 248, 237, 0.32);
  backdrop-filter: blur(12px);
}

.hero-route-card {
  position: absolute;
  right: max(16px, calc((100vw - var(--max-width)) / 2 + 16px));
  bottom: clamp(26px, 5vw, 70px);
  z-index: 2;
  width: min(390px, 35vw);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 95, 73, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 52% 45%, rgba(151, 181, 123, 0.28), transparent 34%),
    radial-gradient(circle at 58% 45%, rgba(126, 165, 119, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(255, 251, 239, 0.96), rgba(246, 238, 218, 0.9));
  box-shadow: 0 22px 54px rgba(8, 18, 15, 0.28);
  transform: rotate(1.5deg);
  overflow: hidden;
}

.hero-route-card::before,
.hero-route-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-route-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 74%, rgba(34, 99, 122, 0.12), transparent 12%),
    radial-gradient(circle at 86% 65%, rgba(34, 99, 122, 0.1), transparent 13%),
    repeating-linear-gradient(0deg, rgba(23, 33, 29, 0.025) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

.hero-route-card::after {
  right: 20px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(23, 77, 59, 0.44);
  border-radius: 999px;
  background:
    linear-gradient(0deg, transparent 48%, rgba(23, 77, 59, 0.44) 49%, rgba(23, 77, 59, 0.44) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(23, 77, 59, 0.44) 49%, rgba(23, 77, 59, 0.44) 51%, transparent 52%);
}

.map-title {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(23, 77, 59, 0.86);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  letter-spacing: 0.16em;
  z-index: 2;
}

.map-art {
  position: absolute;
  inset: 58px 10px 8px;
  width: calc(100% - 20px);
  height: calc(100% - 66px);
  overflow: visible;
}

.map-sea {
  fill: rgba(142, 191, 195, 0.22);
}

.ireland-shape {
  fill: rgba(144, 169, 96, 0.62);
  stroke: rgba(48, 76, 44, 0.38);
  stroke-width: 2;
  filter: drop-shadow(0 12px 18px rgba(23, 33, 29, 0.12));
}

.route-line,
.route-line-east {
  fill: none;
  stroke: rgba(182, 77, 50, 0.76);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 7;
}

.route-line-east {
  stroke: rgba(23, 77, 59, 0.54);
  stroke-dasharray: none;
}

.map-pin circle:first-child {
  fill: rgba(255, 248, 237, 0.9);
  stroke: rgba(182, 77, 50, 0.28);
  stroke-width: 3;
}

.map-pin circle:last-child {
  fill: var(--accent);
}

.map-art text {
  fill: rgba(23, 33, 29, 0.78);
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-compass {
  position: absolute;
  right: 37px;
  bottom: 73px;
  z-index: 2;
  color: rgba(23, 77, 59, 0.72);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.quick-value {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.quick-value article {
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 253, 248, 0.82);
}

.quick-value span,
.system-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff8ed;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-value h2 {
  max-width: none;
  font-size: 1.42rem;
}

.wide-heading {
  padding-top: clamp(36px, 7vw, 84px);
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr);
  grid-template-rows: repeat(3, minmax(170px, 1fr));
  gap: 14px;
  padding: clamp(28px, 6vw, 72px) 0 clamp(10px, 3vw, 26px);
}

.story-photo {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cliffs-photo) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.story-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 24, 22, 0.04), rgba(9, 24, 22, 0.68)),
    linear-gradient(45deg, rgba(198, 126, 84, 0.16), transparent 44%);
}

.story-photo > div {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 4vw, 34px);
}

.story-photo .eyebrow,
.story-photo h2,
.story-photo h3,
.story-photo p {
  color: #fff8ed;
}

.story-photo h2 {
  max-width: 13ch;
}

.story-photo p {
  max-width: 42ch;
  margin-bottom: 0;
}

.story-photo-large {
  grid-row: span 3;
  min-height: 620px;
}

.story-inis {
  background-image: var(--inis-photo);
  background-position: center 42%;
}

.story-kerry {
  background-image: var(--kerry-photo);
  background-position: center;
}

.story-achill {
  background-image: var(--achill-photo);
  background-position: center;
}

.wide-heading h2,
.guide-system h2,
.visa-section h2,
.new-pricing h2 {
  max-width: 17ch;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pack-card,
.transport-note,
.system-grid article,
.visa-grid article,
.pricing-panel,
.day-plan {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--soft-shadow);
}

.pack-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.pack-photo {
  min-height: 160px;
  margin: calc(clamp(22px, 3vw, 30px) * -1) calc(clamp(22px, 3vw, 30px) * -1) 22px;
  border-radius: 16px 16px 0 0;
  background: var(--dublin-photo) center / cover no-repeat;
}

.pack-photo-dublin {
  background-image:
    linear-gradient(180deg, transparent, rgba(12, 30, 25, 0.18)),
    var(--dublin-photo);
}

.pack-photo-west {
  background-image:
    linear-gradient(180deg, transparent, rgba(12, 30, 25, 0.18)),
    var(--inis-photo);
  background-position: center 44%;
}

.pack-photo-south {
  background-image:
    linear-gradient(180deg, transparent, rgba(12, 30, 25, 0.18)),
    var(--kerry-photo);
}

.pack-card.is-featured {
  background:
    linear-gradient(180deg, rgba(219, 233, 228, 0.74), rgba(255, 253, 248, 0.94)),
    var(--paper-strong);
}

.pack-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pack-badge {
  min-height: 30px;
  padding: 0 10px;
  color: var(--accent-dark);
  background: rgba(214, 162, 61, 0.2);
  font-size: 0.78rem;
  white-space: nowrap;
}

.pack-card p {
  margin: 14px 0 0;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
}

.clean-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--clay);
}

.pack-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.pack-links a,
.mini-links a,
.transport-stack a {
  min-height: 34px;
  padding: 0 12px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.08);
  border: 1px solid rgba(23, 77, 59, 0.13);
}

.sample-itinerary,
.guide-system,
.visa-section {
  padding: clamp(42px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.itinerary-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
  align-items: start;
}

.day-plan {
  padding: clamp(22px, 3vw, 34px);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 30px;
}

.timeline-item:not(:last-child)::after {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 38px;
  content: "";
  border-left: 2px solid rgba(23, 77, 59, 0.18);
}

.timeline-item > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 34px;
  border-radius: 999px;
  color: #fff8ed;
  background: var(--accent);
  font-weight: 900;
}

.timeline-item h3,
.transport-note h3,
.gem-copy h3 {
  font-family: "Noto Sans SC", "Manrope", Arial, sans-serif;
  font-weight: 900;
}

.timeline-item p {
  margin: 8px 0 0;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.transport-note {
  position: sticky;
  top: 96px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(219, 233, 228, 0.68)),
    var(--paper-strong);
}

.transport-stack {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.transport-stack a {
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
}

.hidden-gem {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: clamp(42px, 8vw, 94px) 0;
  border-top: 1px solid var(--line);
}

.gem-photo-panel {
  position: relative;
}

.photo-frame {
  min-height: clamp(360px, 48vw, 560px);
  border: 10px solid rgba(255, 253, 248, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 28, 31, 0.08), rgba(8, 28, 31, 0.26)),
    var(--inis-photo) 7% center / cover no-repeat;
  box-shadow: var(--shadow);
}

.photo-caption {
  position: absolute;
  right: -12px;
  bottom: 28px;
  max-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  color: #fff8ed;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(23, 33, 29, 0.18);
}

.gem-copy p {
  max-width: 66ch;
}

.gem-grid,
.system-grid,
.visa-grid {
  display: grid;
  gap: 16px;
}

.gem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.gem-grid article {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.72);
}

.system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.system-grid article {
  padding: 24px;
}

.system-number {
  background: var(--blue);
}

.visa-section {
  margin-left: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  margin-right: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  padding-right: max(16px, calc((100vw - var(--max-width)) / 2 + 16px));
  padding-left: max(16px, calc((100vw - var(--max-width)) / 2 + 16px));
  background:
    linear-gradient(90deg, rgba(219, 233, 228, 0.82), rgba(255, 247, 236, 0.9)),
    var(--sea);
}

.visa-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.visa-grid article {
  padding: 22px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: none;
}

.new-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  margin-left: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  margin-right: calc((100vw - min(calc(100vw - 32px), var(--max-width))) / -2);
  padding: clamp(44px, 8vw, 96px)
    max(16px, calc((100vw - var(--max-width)) / 2 + 16px));
  background: var(--green);
}

.new-pricing .eyebrow,
.new-pricing h2,
.new-pricing .pricing-copy p {
  color: #fff8ed;
}

.pricing-panel {
  padding: clamp(22px, 3vw, 34px);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .zh-home h1 {
    max-width: none;
  }

  .quick-value,
  .pack-grid,
  .photo-story,
  .itinerary-showcase,
  .hidden-gem,
  .system-grid,
  .visa-grid,
  .new-pricing {
    grid-template-columns: 1fr;
  }

  .transport-note {
    position: static;
  }

  .system-grid,
  .visa-grid {
    gap: 12px;
  }

  .hero-route-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 28px;
    transform: none;
  }

  .story-photo-large {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .zh-header {
    align-items: flex-start;
    padding: 12px 0;
  }

  .zh-header::before {
    height: 116px;
  }

  .zh-nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .zh-nav a {
    flex: 0 0 auto;
  }

  .journey-hero {
    min-height: min(570px, calc(100svh - 128px));
    margin-left: -10px;
    margin-right: -10px;
    padding: 36px 28px 30px 20px;
    border-radius: 0 0 18px 18px;
    background:
      linear-gradient(90deg, rgba(11, 28, 23, 0.98) 0%, rgba(11, 28, 23, 0.78) 70%, rgba(11, 28, 23, 0.54) 100%),
      var(--hero-photo) 44% center / cover no-repeat;
  }

  .zh-home h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.2vw, 2.85rem);
  }

  .route-switch {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: calc(100vw - 48px);
    gap: 8px;
  }

  .route-switch a {
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
  }

  .quick-value {
    border-radius: 0 0 14px 14px;
  }

  .hero-route-card {
    aspect-ratio: 1.04;
    max-width: calc(100vw - 48px);
    margin-top: 22px;
    border-radius: 10px;
  }

  .map-title {
    top: 18px;
    left: 18px;
    font-size: 1.45rem;
  }

  .map-art {
    inset: 48px 5px 5px;
    width: calc(100% - 10px);
    height: calc(100% - 53px);
  }

  .map-art text {
    font-size: 11px;
  }

  .photo-story {
    gap: 10px;
    padding-top: 28px;
  }

  .story-photo,
  .story-photo-large {
    min-height: 380px;
    border-radius: 14px;
  }

  .story-photo:not(.story-photo-large) {
    min-height: 260px;
  }

  .story-photo h2 {
    max-width: 10ch;
  }

  .pack-card,
  .transport-note,
  .system-grid article,
  .visa-grid article,
  .pricing-panel,
  .day-plan {
    border-radius: 12px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pack-photo {
    min-height: 190px;
    border-radius: 12px 12px 0 0;
  }

  .timeline-item:not(:last-child)::after {
    left: 16px;
    top: 40px;
  }

  .timeline-item > span {
    width: 72px;
  }

  .gem-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame {
    min-height: 360px;
  }

  .photo-caption {
    right: 12px;
    bottom: 16px;
  }

  .new-pricing,
  .visa-section {
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    color: #fff8ed;
    background: var(--accent);
    box-shadow: 0 16px 38px rgba(38, 31, 22, 0.26);
    text-decoration: none;
    font-weight: 900;
  }

  .zh-home {
    padding-bottom: 72px;
  }
}

/* American audience version */
.us-home {
  font-family: "Manrope", Arial, sans-serif;
}

.us-home h1,
.us-home h2,
.us-home h3,
.us-home .zh-brand {
  font-family: "Fraunces", Georgia, serif;
}

.us-home h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.us-home h2 {
  max-width: 14ch;
}

.us-home .hero-text {
  max-width: 46rem;
}

.us-home .hero-content {
  width: min(760px, 100%);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.audience-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.82);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.audience-card span {
  color: var(--ink);
  font-weight: 900;
}

.audience-card.is-active {
  border-color: rgba(182, 77, 50, 0.36);
  background: rgba(255, 248, 237, 0.95);
}

.us-home .timeline-item > span {
  width: 78px;
}

.sample-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.sample-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(23, 77, 59, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.07);
  font-size: 0.86rem;
  font-weight: 900;
}

.local-tip {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(214, 162, 61, 0.11);
}

.route-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.route-options article,
.preview-payoff,
.local-note-stack div {
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 12px;
  background: rgba(255, 248, 237, 0.74);
}

.route-options article {
  padding: 18px;
}

.route-options span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-options h3 {
  font-size: 1.18rem;
}

.preview-payoff {
  margin-top: 14px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(219, 233, 228, 0.82), rgba(255, 248, 237, 0.92)),
    var(--paper-strong);
}

.preview-payoff p {
  margin-bottom: 0;
}

.local-note-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.local-note-stack div {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.local-note-stack strong {
  color: var(--ink);
}

.local-note-stack span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .audience-strip {
    grid-template-columns: 1fr;
  }

  .us-home h1 {
    max-width: 11ch;
  }
}

@media (max-width: 700px) {
  .us-home h1 {
    max-width: min(9ch, 100%);
    font-size: clamp(2.76rem, 12.2vw, 3.45rem);
  }

  .us-home .hero-text,
  .us-home .hero-content .eyebrow {
    max-width: calc(100vw - 68px);
  }

  .us-home .hero-text {
    max-width: 30ch;
  }

  .us-home .hero-content {
    width: calc(100vw - 68px);
  }

  .us-home .route-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .us-home .route-switch a:last-child {
    grid-column: 1 / -1;
  }

  .audience-strip {
    margin-top: 10px;
  }

  .audience-card {
    padding: 16px;
    border-radius: 10px;
  }

  .us-home .audience-card {
    max-width: calc(100vw - 28px);
  }

  .sample-meta {
    gap: 6px;
  }

  .sample-meta span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .route-options {
    grid-template-columns: 1fr;
  }
}
