:root {
  --color-bg: #f4f1ea;
  --color-surface: #fbfaf7;
  --color-surface-strong: #e9e3d8;
  --color-text: #10232a;
  --color-text-muted: #5c6d70;
  --color-primary: #123843;
  --color-primary-2: #0b2a33;
  --color-accent: #b88d52;
  --color-line: rgba(16, 35, 42, .16);
  --color-white: #fff;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 112px;
  --text-display: clamp(2.7rem, 5.7vw, 4.1rem);
  --text-h1: clamp(2.35rem, 4.4vw, 3.35rem);
  --text-h2: clamp(2rem, 3.5vw, 2.9rem);
  --text-h3: clamp(1.25rem, 2vw, 1.65rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 60px rgba(20, 39, 45, .09);
  --shadow-hover: 0 24px 70px rgba(20, 39, 45, .16);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: var(--space-8) 0; position: relative; }
.section-tight { padding: var(--space-7) 0; }
.surface { background: var(--color-surface); }
.dark { background: var(--color-primary-2); color: var(--color-white); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 700; color: var(--color-accent); }
.display, h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; font-weight: 600; }
h1 { font-size: var(--text-display); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--color-text); max-width: 70ch; }
.dark .lead, .dark .muted { color: rgba(255,255,255,.72); }
.muted { color: var(--color-text-muted); }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, .78fr); gap: var(--space-6); align-items: end; margin-bottom: var(--space-6); }
.section-head h2 { max-width: 760px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244,241,234,.9);
  border-bottom: 1px solid var(--color-line);
}
.header-inner { height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .09em; font-size: .88rem; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--color-primary); position: relative; overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ''; position: absolute; left: 9px; right: 9px; height: 1px; background: var(--color-accent); transform: rotate(-18deg); }
.brand-mark::before { top: 16px; }
.brand-mark::after { top: 24px; }
.brand-mark img { position: absolute; inset: 0; object-fit: contain; opacity: 1; background: var(--color-primary); padding: 5px; }
.nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav a { font-size: .9rem; color: #294047; transition: color .25s ease; }
.nav a:hover { color: var(--color-accent); }
.ad-label { font-size: .7rem; padding: 6px 9px; border: 1px solid var(--color-line); border-radius: 100px; color: var(--color-text-muted); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--color-line); border-radius: 50%; background: transparent; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border-radius: 100px; border: 1px solid transparent; font-weight: 650; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-light { background: var(--color-white); color: var(--color-primary); }
.btn-outline { border-color: var(--color-line); color: var(--color-primary); }
.dark .btn-outline { border-color: rgba(255,255,255,.25); color: var(--color-white); }

.hero { min-height: 820px; display: grid; align-items: stretch; overflow: hidden; border-bottom: 1px solid var(--color-line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; }
.hero-copy { padding: 92px 72px 64px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { max-width: 800px; margin: 16px 0 22px; }
.hero-copy .lead { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 46px; display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; max-width: 650px; }
.hero-note strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-accent); }
.hero-media { min-height: 720px; position: relative; background: var(--color-surface-strong); overflow: hidden; }
.hero-media img { position: absolute; inset: 0; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,25,31,.42)); pointer-events: none; }
.hero-caption { position: absolute; z-index: 2; left: 34px; bottom: 32px; right: 34px; color: white; display: flex; justify-content: space-between; align-items: end; gap: 24px; font-size: .84rem; }

.course-line { position: relative; height: 20px; margin: 28px 0; overflow: hidden; max-width: 100%; }
.course-line::before { content: ''; position: absolute; left: 0; right: 0; top: 10px; height: 1px; background: linear-gradient(90deg, var(--color-accent), var(--color-line)); }
.course-line::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 18%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-bg);
  box-shadow:
    clamp(100px, 52vw, 380px) 0 0 -2px var(--color-bg),
    clamp(100px, 52vw, 380px) 0 0 0 var(--color-accent);
}
.dark .course-line::before { background: linear-gradient(90deg, var(--color-accent), rgba(255,255,255,.14)); }
.dark .course-line::after {
  background: var(--color-primary-2);
  box-shadow:
    clamp(100px, 52vw, 380px) 0 0 -2px var(--color-primary-2),
    clamp(100px, 52vw, 380px) 0 0 0 var(--color-accent);
}

@media (max-width: 480px) {
  .course-line::after { box-shadow: none; }
}

.story-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story-media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface-strong); box-shadow: var(--shadow-soft); }
.story-copy { display: grid; gap: 22px; }
.story-copy h2 { max-width: 760px; }
.story-copy p { max-width: 66ch; color: var(--color-text-muted); font-size: 1.04rem; }

.stats { border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 26px; border-right: 1px solid var(--color-line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; font-size: 2.25rem; line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .86rem; color: var(--color-text-muted); }

.voyages { display: grid; gap: 32px; }
.voyage-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-line); box-shadow: 0 10px 28px rgba(20,39,45,.04); transition: transform .3s ease, box-shadow .3s ease; }
.voyage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.voyage-main { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 490px; }
.voyage-media { min-height: 490px; background: var(--color-surface-strong); overflow: hidden; }
.voyage-copy { padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; }
.voyage-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .84rem; color: var(--color-text-muted); margin: 14px 0 22px; }
.voyage-price { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--color-line); }
.voyage-price strong { font-size: 1.2rem; }
.voyage-details { border-top: 1px solid var(--color-line); }
.voyage-toggle { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; color: var(--color-primary); font-weight: 700; }
.voyage-detail-panel { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.voyage-card.open .voyage-detail-panel { max-height: 1500px; }
.voyage-detail-inner { padding: 0 28px 32px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; }
.timeline { display: grid; }
.time-row { display: grid; grid-template-columns: 78px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--color-line); }
.time-row:first-child { border-top: 0; }
.time-row time { font-weight: 700; color: var(--color-accent); }
.included { background: var(--color-bg); border-radius: var(--radius-md); padding: 24px; }
.included h4 { font-size: 1.25rem; margin-bottom: 14px; }
.included ul { margin: 0; padding-left: 18px; color: var(--color-text-muted); }
.highlights { margin-top: 18px; font-size: .88rem; color: var(--color-text-muted); }

.route-ribbon { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.route-chip { padding: 26px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: rgba(255,255,255,.42); transition: transform .25s ease, background .25s ease; }
.route-chip:hover { transform: translateY(-3px); background: var(--color-surface); }
.route-chip span { color: var(--color-accent); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.route-chip h3 { margin: 10px 0 8px; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { border-radius: var(--radius-lg); padding: 32px; min-height: 280px; background: var(--color-surface); border: 1px solid var(--color-line); display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-no { font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; font-size: 2rem; color: var(--color-accent); }
.service-card p { max-width: 52ch; color: var(--color-text-muted); }

.stops-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 310px 310px; gap: 16px; }
.stop { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--color-surface-strong); }
.stop:first-child { grid-row: 1 / span 2; }
.stop::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(4,25,31,.7)); }
.stop-copy { position:absolute; z-index:2; left:24px; right:24px; bottom:22px; color:white; }
.stop-copy small { color: rgba(255,255,255,.72); }

.day-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 72px; align-items: start; }
.day-steps { border-left: 1px solid rgba(255,255,255,.22); margin-left: 7px; }
.day-step { position: relative; padding: 0 0 34px 34px; }
.day-step::before { content:''; position:absolute; width:13px; height:13px; border-radius:50%; background:var(--color-accent); left:-7px; top:6px; box-shadow:0 0 0 6px rgba(184,141,82,.15); }
.day-step time { font-weight:700; color:var(--color-accent); }
.day-step p { color:rgba(255,255,255,.7); margin-top:6px; }
.day-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow:hidden; background:#173844; position:sticky; top:112px; }

.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:170px; gap:16px; }
.gallery-item { border:0; padding:0; border-radius:var(--radius-md); overflow:hidden; background:var(--color-surface-strong); position:relative; cursor:zoom-in; }
.gallery-item:nth-child(1) { grid-column:span 7; grid-row:span 3; }
.gallery-item:nth-child(2) { grid-column:span 5; grid-row:span 2; }
.gallery-item:nth-child(3) { grid-column:span 5; grid-row:span 1; }
.gallery-item:nth-child(4) { grid-column:span 4; grid-row:span 2; }
.gallery-item:nth-child(5) { grid-column:span 4; grid-row:span 2; }
.gallery-item:nth-child(6) { grid-column:span 4; grid-row:span 2; }
.lightbox { position:fixed; inset:0; z-index:100; background:rgba(6,22,27,.88); display:none; place-items:center; padding:32px; }
.lightbox.open { display:grid; }
.lightbox img { max-width:1100px; max-height:82vh; object-fit:contain; border-radius:var(--radius-md); }
.lightbox-close { position:absolute; top:24px; right:24px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.35); background:rgba(0,0,0,.18); color:white; font-size:1.35rem; }

.about-layout { display:grid; grid-template-columns:.95fr 1.05fr; gap:72px; align-items:center; }
.about-media { aspect-ratio: 16/10; border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface-strong); }
.about-copy { display:grid; gap:20px; }

.contact-wrap { display:grid; grid-template-columns:.82fr 1.18fr; gap:22px; }
.contact-card, .form-card { background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-lg); padding:clamp(28px,4vw,48px); }
.contact-card { display:flex; flex-direction:column; justify-content:space-between; background:var(--color-primary); color:white; }
.contact-card .muted { color:rgba(255,255,255,.68); }
.contact-list { display:grid; gap:18px; margin-top:34px; }
.contact-item small { display:block; color:var(--color-accent); text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1 / -1; }
label { font-size:.82rem; font-weight:700; }
input, select, textarea { width:100%; border:1px solid var(--color-line); border-radius:12px; background:var(--color-bg); color:var(--color-text); padding:14px 15px; outline:none; transition:border-color .25s ease, box-shadow .25s ease; }
input:focus, select:focus, textarea:focus { border-color:var(--color-accent); box-shadow:0 0 0 4px rgba(184,141,82,.12); }
textarea { min-height:120px; resize:vertical; }
.checkline { display:flex; gap:10px; align-items:flex-start; font-size:.82rem; color:var(--color-text-muted); }
.checkline input { width:auto; margin-top:4px; }

.site-footer { padding:58px 0 30px; background:#071f27; color:white; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr 1fr; gap:40px; }
.footer-brand p { color:rgba(255,255,255,.62); max-width:38ch; margin-top:16px; }
.footer-col h4 { font-family:"Avenir Next", "Segoe UI", Arial, sans-serif; font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; color:var(--color-accent); margin-bottom:14px; }
.footer-col a, .footer-col span { display:block; color:rgba(255,255,255,.7); font-size:.88rem; margin:8px 0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:42px; padding-top:24px; display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.48); font-size:.78rem; }
.disclaimer { max-width:850px; }

.cookie-banner { position:fixed; left:18px; right:18px; bottom:18px; z-index:90; max-width:930px; margin:auto; background:#fff; color:var(--color-text); border:1px solid var(--color-line); border-radius:20px; box-shadow:var(--shadow-hover); padding:18px; display:none; grid-template-columns:1fr auto; gap:20px; align-items:center; }
.cookie-banner.show { display:grid; }
.cookie-banner p { font-size:.82rem; color:var(--color-text-muted); }
.cookie-actions { display:flex; gap:8px; flex-wrap:wrap; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

.legal-hero { padding:100px 0 70px; border-bottom:1px solid var(--color-line); }
.legal-hero h1 { font-size:var(--text-h1); max-width:850px; }
.legal-title { word-break: break-all; }
.legal-title h1,
.legal-title .lead,
.legal-title .last-updated,
.legal-title .eyebrow { word-break: break-all; }
.legal-wrap { width:min(calc(100% - 40px), 900px); margin:0 auto; padding:80px 0 110px; }
.legal-wrap h2 { font-size:1.8rem; margin:48px 0 16px; }
.legal-wrap h3 { font-size:1.25rem; margin:30px 0 10px; }
.legal-wrap p { color:var(--color-text-muted); margin:0 0 16px; }
.legal-wrap a { color:var(--color-primary); text-decoration:underline; }
.legal-content, .legal-wrap { word-break: break-word; }
.last-updated { color: var(--color-text-muted); font-size: var(--text-small); margin: 12px 0 0; }
.notice { background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-md); padding:22px; margin:26px 0; }
.thanks-card { width:min(calc(100% - 40px), 980px); margin:80px auto; background:var(--color-surface); border-radius:var(--radius-lg); padding:clamp(34px,7vw,72px); box-shadow:var(--shadow-soft); }
.thanks-card h1 { font-size:var(--text-h1); margin:14px 0 20px; }
.next-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:38px 0; }
.next-step { padding:24px; border:1px solid var(--color-line); border-radius:var(--radius-md); }
.next-step b { color:var(--color-accent); }

:focus-visible { outline:3px solid rgba(184,141,82,.55); outline-offset:3px; }

@media (max-width: 1024px) {
  .site-header { position: sticky; top: 0; z-index: 50; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    height: auto;
    min-height: 72px;
    padding: 10px 0;
  }
  .brand {
    grid-column: 1;
    justify-self: start;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    text-align: center;
  }
  .brand span:last-child { font-size: .72rem; letter-spacing: .12em; }
  .ad-label {
    grid-column: 2;
    justify-self: center;
    white-space: nowrap;
  }
  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
    margin: 0;
    background: var(--color-bg);
    padding: 28px 22px 38px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 18px 40px rgba(20, 39, 45, .08);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { min-height:auto; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding:72px 0 54px; }
  .hero-media { min-height:560px; }
  .section-head, .story-layout, .day-layout, .about-layout, .contact-wrap { grid-template-columns:1fr; }
  .story-layout { gap:42px; }
  .story-media { aspect-ratio:16/10; }
  .voyage-main { grid-template-columns:1fr; }
  .voyage-media { min-height:380px; }
  .day-media { position:relative; top:auto; aspect-ratio:16/9; }
  .stops-grid { grid-template-columns:1fr 1fr; grid-template-rows:360px 280px 280px; }
  .stop:first-child { grid-column:1 / -1; grid-row:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --space-8: 78px; --space-7: 56px; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .hero-copy { padding:58px 0 44px; }
  .hero-media { min-height:430px; margin:0 -14px; }
  .hero-note { grid-template-columns:1fr; gap:8px; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat { border-bottom:1px solid var(--color-line); }
  .stat:nth-child(2) { border-right:0; }
  .voyage-detail-inner { grid-template-columns:1fr; }
  .route-ribbon { grid-template-columns:1fr; }
  .service-card, .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(4) { grid-column:1 / -1; }
  .service-grid { grid-template-columns:1fr; }
  .stops-grid { display:grid; grid-template-columns:1fr; grid-template-rows:none; }
  .stop, .stop:first-child { min-height:330px; grid-column:auto; }
  .gallery-grid { grid-template-columns:1fr; grid-auto-rows:260px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column:auto; grid-row:auto; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .cookie-banner { grid-template-columns:1fr; }
  .next-grid { grid-template-columns:1fr; }
}

@media (max-width: 430px) {
  .hero-media { min-height:360px; }
  .stats-grid { grid-template-columns:1fr; }
  .stat { border-right:0; }
  .voyage-copy { padding:28px 22px; }
  .voyage-price { flex-direction:column; align-items:flex-start; }
  .voyage-detail-inner { padding:0 20px 28px; }
  .time-row { grid-template-columns:66px 1fr; }
}

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.text-link { text-decoration: underline; }
.day-lead { margin: 18px 0 44px; }
.contact-title { font-size: 2rem; margin-top: var(--space-2); }
.next-step-title { margin: 10px 0; }

.brand-mark::before, .brand-mark::after { display: none; }


/* Multi-page extensions — deliberately reuse the home-page visual grammar. */
.menu-toggle span { display:block; width:20px; height:1px; background:var(--color-primary); margin:5px auto; transition:.25s ease; }

@media (min-width: 1025px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .header-inner {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
  }
  .nav {
    grid-area: 1 / 1;
    position: static;
    z-index: 2;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    justify-content: flex-end;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
}

.section-cta { margin-top: var(--space-5); display:flex; justify-content:flex-end; }
.section-cta.start { justify-content:flex-start; }
.page-hero { padding: 74px 0 84px; border-bottom:1px solid var(--color-line); }
.page-hero-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(44px,7vw,92px); align-items:center; }
.page-hero-copy h1 { font-size:var(--text-h1); margin:14px 0 22px; max-width:760px; }
.page-hero-copy .lead { max-width:650px; }
.page-hero-media { height:540px; border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface-strong); box-shadow:var(--shadow-soft); }
.page-hero-note { display:grid; grid-template-columns:110px 1fr; gap:18px; margin-top:34px; padding-top:22px; border-top:1px solid var(--color-line); max-width:650px; }
.page-hero-note strong { color:var(--color-accent); text-transform:uppercase; letter-spacing:.12em; font-size:.76rem; }
.editorial-intro { display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(36px,7vw,90px); align-items:start; }
.editorial-intro h2 { position:sticky; top:120px; }
.editorial-copy-stack { display:grid; gap:22px; }
.editorial-copy-stack p { color:var(--color-text-muted); font-size:1.04rem; max-width:68ch; }
.route-principles { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--color-line); border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface); }
.route-principle { padding:30px; border-right:1px solid var(--color-line); min-height:245px; }
.route-principle:last-child { border-right:0; }
.route-principle b { color:var(--color-accent); font-family:"Iowan Old Style", Georgia, serif; font-size:2rem; font-weight:500; }
.route-principle h3 { margin:38px 0 12px; }
.route-principle p { color:var(--color-text-muted); font-size:.9rem; }
.editorial-band { display:grid; grid-template-columns:1.15fr .85fr; gap:var(--space-6); align-items:center; }
.editorial-band-media { aspect-ratio:16/10; overflow:hidden; border-radius:var(--radius-lg); background:var(--color-surface-strong); }
.editorial-band-copy { display:grid; gap:18px; }
.editorial-band-copy p { color:var(--color-text-muted); }
.voyage-compare { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--color-line); border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface); }
.voyage-compare article { padding:30px; border-right:1px solid var(--color-line); }
.voyage-compare article:last-child { border-right:0; }
.voyage-compare span { display:block; color:var(--color-accent); text-transform:uppercase; letter-spacing:.12em; font-size:.74rem; font-weight:700; }
.voyage-compare h3 { margin:14px 0 12px; }
.voyage-compare p { color:var(--color-text-muted); font-size:.9rem; }
.voyage-compare strong { display:block; margin-top:20px; }
.contact-flow { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.contact-flow article { padding:30px; border:1px solid var(--color-line); border-radius:var(--radius-md); background:var(--color-surface); }
.contact-flow b { display:block; color:var(--color-accent); font-family:"Iowan Old Style", Georgia, serif; font-size:2rem; font-weight:500; }
.contact-flow h3 { margin:24px 0 10px; }
.contact-flow p { color:var(--color-text-muted); font-size:.9rem; }
.voyage-links { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.voyage-link-card { min-height:260px; padding:28px; border-radius:var(--radius-lg); border:1px solid var(--color-line); background:var(--color-surface); display:flex; flex-direction:column; justify-content:space-between; transition:.25s ease; }
.voyage-link-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.voyage-link-card small { color:var(--color-accent); text-transform:uppercase; letter-spacing:.11em; }
.voyage-link-card p { color:var(--color-text-muted); }
.footer-grid { grid-template-columns:1.2fr .8fr .9fr .75fr 1.1fr; }
.brand-footer { margin-bottom:16px; }
.footer-contact span { line-height:1.5; }

@media (max-width: 1024px) {
  .page-hero-grid, .editorial-intro, .editorial-band { grid-template-columns:1fr; }
  .page-hero-media { height:500px; }
  .editorial-intro h2 { position:static; }
  .route-principles { grid-template-columns:1fr 1fr; }
  .route-principle:nth-child(2) { border-right:0; }
  .route-principle { border-bottom:1px solid var(--color-line); }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column:1 / -1; }
}
@media (max-width: 768px) {
  .page-hero { padding:54px 0 64px; }
  .page-hero-grid { gap:30px; }
  .page-hero-media { height:390px; }
  .page-hero-note { grid-template-columns:1fr; gap:6px; }
  .route-principles, .voyage-compare, .contact-flow, .voyage-links { grid-template-columns:1fr; }
  .route-principle, .voyage-compare article { border-right:0; border-bottom:1px solid var(--color-line); min-height:auto; }
  .route-principle:last-child, .voyage-compare article:last-child { border-bottom:0; }
  .section-cta { justify-content:flex-start; }
}

.legal-title .lead { color: var(--color-text); margin-top: 18px; }
.thanks-section { padding:80px 0 110px; }
.thanks-contact { padding:28px; border-left:2px solid var(--color-accent); background:var(--color-bg); margin:22px 0 28px; }
.thanks-contact h2 { font-size:1.7rem; margin-bottom:12px; }
@media (max-width:768px){ .thanks-section { padding:54px 0 76px; } }


/* Detail-page depth: internal pages expand the home-page subjects rather than cloning them. */
.detail-row { display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(42px,7vw,92px); align-items:center; }
.detail-row.reverse .detail-media { order:2; }
.detail-row.reverse .detail-copy { order:1; }
.detail-media { aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface-strong); box-shadow:var(--shadow-soft); }
.detail-copy { display:grid; gap:18px; }
.detail-copy h2 { max-width:720px; }
.detail-copy > p:not(.lead) { color:var(--color-text-muted); max-width:68ch; }
.detail-copy .btn { justify-self:start; margin-top:8px; }
.detail-facts { display:grid; gap:0; border-top:1px solid var(--color-line); margin:10px 0 6px; }
.detail-facts span { display:grid; grid-template-columns:150px 1fr; gap:18px; padding:13px 0; border-bottom:1px solid var(--color-line); color:var(--color-text-muted); font-size:.92rem; }
.detail-facts b { color:var(--color-text); }
.mini-grid { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid rgba(255,255,255,.16); border-radius:var(--radius-lg); overflow:hidden; }
.mini-card { padding:30px; border-right:1px solid rgba(255,255,255,.14); min-height:300px; }
.mini-card:last-child { border-right:0; }
.mini-card b { color:var(--color-accent); font-family:"Iowan Old Style", Georgia, serif; font-size:2rem; font-weight:500; }
.mini-card h3 { margin:42px 0 14px; }
.mini-card p { color:rgba(255,255,255,.68); font-size:.92rem; }
.route-deep-list { display:grid; gap:26px; }
.route-deep { display:grid; grid-template-columns:.8fr 1.2fr; border:1px solid var(--color-line); border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface); }
.route-deep:nth-child(even) { grid-template-columns:1.2fr .8fr; }
.route-deep:nth-child(even) .route-deep-media { order:2; }
.route-deep-media { min-height:430px; background:var(--color-surface-strong); overflow:hidden; }
.route-deep-copy { padding:clamp(30px,5vw,56px); display:flex; flex-direction:column; justify-content:center; }
.route-deep-copy h3 { font-size:clamp(1.65rem,2.5vw,2.25rem); margin:12px 0 18px; }
.route-deep-copy p { color:var(--color-text-muted); margin-top:13px; }
.stop-detail-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.stop-detail { grid-column:span 2; border:1px solid var(--color-line); border-radius:var(--radius-md); overflow:hidden; background:var(--color-surface); }
.stop-detail:nth-child(4), .stop-detail:nth-child(5) { grid-column:span 3; }
.stop-detail > img { aspect-ratio:16/10; height:auto; }
.stop-detail > div { padding:22px; }
.stop-detail h3 { margin-bottom:10px; }
.stop-detail p { color:var(--color-text-muted); font-size:.9rem; }
.service-detail-grid { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--color-line); border-radius:var(--radius-lg); overflow:hidden; }
.service-detail-grid article { padding:34px; min-height:280px; border-right:1px solid var(--color-line); border-bottom:1px solid var(--color-line); }
.service-detail-grid article:nth-child(2n) { border-right:0; }
.service-detail-grid article:nth-last-child(-n+2) { border-bottom:0; }
.service-detail-grid span { color:var(--color-accent); text-transform:uppercase; letter-spacing:.1em; font-size:.74rem; font-weight:700; }
.service-detail-grid h3 { margin:42px 0 14px; }
.service-detail-grid p { color:var(--color-text-muted); }

@media (max-width:1024px) {
  .detail-row, .detail-row.reverse, .route-deep, .route-deep:nth-child(even) { grid-template-columns:1fr; }
  .detail-row.reverse .detail-media, .detail-row.reverse .detail-copy, .route-deep:nth-child(even) .route-deep-media { order:initial; }
  .detail-media { aspect-ratio:16/10; }
  .mini-grid { grid-template-columns:1fr 1fr; }
  .mini-card:nth-child(2) { border-right:0; }
  .mini-card { border-bottom:1px solid rgba(255,255,255,.14); }
  .stop-detail-grid { grid-template-columns:1fr 1fr; }
  .stop-detail, .stop-detail:nth-child(4), .stop-detail:nth-child(5) { grid-column:auto; }
  .stop-detail:last-child { grid-column:1 / -1; }
}
@media (max-width:768px) {
  .detail-facts span { grid-template-columns:1fr; gap:4px; }
  .mini-grid, .service-detail-grid, .stop-detail-grid { grid-template-columns:1fr; }
  .mini-card { border-right:0; min-height:auto; }
  .mini-card:last-child { border-bottom:0; }
  .service-detail-grid article { border-right:0; border-bottom:1px solid var(--color-line); min-height:auto; }
  .service-detail-grid article:nth-last-child(-n+2) { border-bottom:1px solid var(--color-line); }
  .service-detail-grid article:last-child { border-bottom:0; }
  .stop-detail, .stop-detail:last-child { grid-column:auto; }
  .route-deep-media { min-height:320px; }
}

.contact-brief-grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:24px; align-items:start; }
@media (max-width:1024px){ .contact-brief-grid { grid-template-columns:1fr; } }


/* Refined vertical rhythm */
.hero-copy h1 { margin-top:18px; margin-bottom:30px; }
.hero-copy .lead { margin:0; }
.hero-actions { margin-top:38px; gap:14px; }
.page-hero-copy h1 { margin-top:18px; margin-bottom:30px; }
.page-hero-copy .lead { margin:0; }
.page-hero-note { margin-top:40px; }
.section-head h2 { margin-top:14px; }
.section-head .lead { align-self:end; padding-bottom:4px; }
.detail-copy h2 { margin-top:12px; margin-bottom:4px; }
.contact-title { margin-top:16px; }
.form-card .btn[type="submit"] { margin-top:10px; min-height:52px; padding-inline:26px; }

/* Premium CTA composition */
.cta-section { background:var(--color-bg); padding-top:32px; padding-bottom:var(--space-8); }
.cta-panel { position:relative; overflow:hidden; display:grid; grid-template-columns:minmax(0,1fr) minmax(240px,.34fr); gap:clamp(36px,7vw,88px); align-items:end; padding:clamp(38px,6vw,72px); border-radius:var(--radius-lg); background:var(--color-primary-2); color:var(--color-white); box-shadow:0 30px 80px rgba(7,31,39,.16); }
.cta-panel::before { content:''; position:absolute; width:360px; height:360px; border:1px solid rgba(184,141,82,.22); border-radius:50%; right:-145px; top:-190px; }
.cta-panel::after { content:''; position:absolute; left:clamp(38px,6vw,72px); right:clamp(38px,6vw,72px); bottom:32px; height:1px; background:linear-gradient(90deg,var(--color-accent),rgba(255,255,255,.06) 55%,transparent); opacity:.7; pointer-events:none; }
.cta-copy, .cta-action { position:relative; z-index:1; }
.cta-copy h2 { margin-top:16px; max-width:820px; }
.cta-copy > p { margin-top:24px; max-width:66ch; color:rgba(255,255,255,.7); font-size:1.02rem; }
.cta-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:30px; padding-bottom:20px; }
.cta-tags span { padding:8px 12px; border:1px solid rgba(255,255,255,.16); border-radius:100px; color:rgba(255,255,255,.72); font-size:.78rem; letter-spacing:.02em; }
.cta-action { display:grid; gap:18px; justify-items:start; padding-bottom:20px; }
.cta-action small { max-width:28ch; color:rgba(255,255,255,.58); line-height:1.55; }
.btn-cta { min-height:54px; padding:0 24px; gap:16px; }
.btn-cta span { font-size:1.05rem; transition:transform .25s ease; }
.btn-cta:hover span { transform:translate(2px,-2px); }

/* Gallery is intentionally image-only on the home page */
.gallery-item { cursor:zoom-in; }

/* Expanded thank-you page */
.thanks-page { overflow:hidden; }
.thanks-hero { padding:72px 0 96px; border-bottom:1px solid var(--color-line); }
.thanks-hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(42px,7vw,92px); align-items:center; }
.thanks-hero-copy h1 { font-size:var(--text-h1); margin-top:18px; margin-bottom:30px; max-width:760px; }
.thanks-hero-copy .lead { margin:0; max-width:700px; }
.thanks-hero-media { min-height:570px; border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface-strong); box-shadow:var(--shadow-soft); }
.thanks-status { display:flex; flex-wrap:wrap; gap:10px; margin-top:38px; }
.thanks-status span { padding:9px 12px; border:1px solid var(--color-line); border-radius:100px; font-size:.78rem; color:var(--color-text-muted); }
.thanks-steps .next-step { min-height:260px; background:var(--color-surface); padding:30px; }
.thanks-steps .next-step b { display:block; font-family:"Iowan Old Style",Georgia,serif; font-size:2rem; font-weight:500; }
.thanks-steps .next-step h3 { margin:34px 0 14px; }
.thanks-steps .next-step p { color:var(--color-text-muted); }
.thanks-editorial { display:grid; grid-template-columns:.88fr 1.12fr; gap:clamp(40px,7vw,88px); align-items:center; }
.thanks-editorial-media { aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; background:var(--color-surface-strong); }
.thanks-editorial-copy h2 { margin-top:16px; max-width:760px; }
.thanks-editorial-copy > p { margin-top:22px; color:var(--color-text-muted); max-width:66ch; }
.thanks-note { margin-top:30px; padding:22px 0 0; border-top:1px solid var(--color-line); display:grid; grid-template-columns:130px 1fr; gap:24px; }
.thanks-note strong { color:var(--color-accent); text-transform:uppercase; letter-spacing:.1em; font-size:.75rem; }
.thanks-note span { color:var(--color-text-muted); }
.thanks-priority-grid { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid rgba(255,255,255,.14); border-radius:var(--radius-lg); overflow:hidden; }
.thanks-priority-grid article { padding:30px; min-height:300px; border-right:1px solid rgba(255,255,255,.13); }
.thanks-priority-grid article:last-child { border-right:0; }
.thanks-priority-grid span { color:var(--color-accent); text-transform:uppercase; letter-spacing:.12em; font-size:.74rem; font-weight:700; }
.thanks-priority-grid h3 { margin:46px 0 14px; }
.thanks-priority-grid p { color:rgba(255,255,255,.68); font-size:.92rem; }
.thanks-contact-panel { display:grid; grid-template-columns:1fr .8fr; gap:clamp(36px,7vw,80px); align-items:start; padding:clamp(34px,5vw,56px); background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-lg); }
.thanks-contact-panel h2 { margin-top:14px; max-width:700px; }
.thanks-contact-panel p { margin-top:22px; color:var(--color-text-muted); max-width:62ch; }
.thanks-contact-data { display:grid; gap:8px; padding-left:28px; border-left:1px solid var(--color-line); color:var(--color-text-muted); }
.thanks-contact-data strong { color:var(--color-text); font-size:1.05rem; }
.thanks-actions { margin-top:30px; display:flex; flex-wrap:wrap; gap:22px; align-items:center; }

@media (max-width:1024px) {
  .cta-panel, .thanks-hero-grid, .thanks-editorial, .thanks-contact-panel { grid-template-columns:1fr; }
  .cta-action { max-width:520px; }
  .thanks-hero-media { min-height:500px; }
  .thanks-editorial-media { aspect-ratio:16/10; }
  .thanks-priority-grid { grid-template-columns:1fr 1fr; }
  .thanks-priority-grid article:nth-child(2) { border-right:0; }
  .thanks-priority-grid article { border-bottom:1px solid rgba(255,255,255,.13); }
  .thanks-priority-grid article:nth-last-child(-n+2) { border-bottom:0; }
  .thanks-contact-data { padding-left:0; padding-top:24px; border-left:0; border-top:1px solid var(--color-line); }
}
@media (max-width:768px) {
  .hero-copy h1, .page-hero-copy h1, .thanks-hero-copy h1 { margin-bottom:24px; }
  .hero-actions { margin-top:30px; }
  .cta-section { padding-top:16px; }
  .cta-panel { gap:30px; padding:34px 26px 50px; }
  .cta-panel::after { left:26px; right:26px; bottom:24px; }
  .thanks-hero { padding:54px 0 72px; }
  .thanks-hero-media { min-height:390px; }
  .thanks-priority-grid { grid-template-columns:1fr; }
  .thanks-priority-grid article, .thanks-priority-grid article:nth-child(2), .thanks-priority-grid article:nth-last-child(-n+2) { border-right:0; border-bottom:1px solid rgba(255,255,255,.13); min-height:auto; }
  .thanks-priority-grid article:last-child { border-bottom:0; }
}
#galerie { scroll-margin-top:96px; }
.detail-copy .btn { margin-top:14px; }


/* Reduced-image layouts: internal pages rely on typography and repeated section imagery only. */
.story-layout.story-text-only { grid-template-columns: 1fr; }
.story-layout.story-text-only .story-copy { max-width: 900px; margin-inline: auto; }
.page-hero-grid.page-hero-solo { grid-template-columns: 1fr; }
.page-hero-grid.page-hero-solo .page-hero-copy { max-width: 920px; }
.route-deep.route-deep-text, .route-deep.route-deep-text:nth-child(even) { grid-template-columns: 1fr; }
.route-deep.route-deep-text .route-deep-copy { min-height: 0; padding: clamp(34px, 5vw, 64px); }
.thanks-hero-grid.thanks-hero-solo { grid-template-columns: 1fr; }
.thanks-hero-grid.thanks-hero-solo .thanks-hero-copy { max-width: 900px; }
.thanks-editorial.thanks-editorial-solo { grid-template-columns: 1fr; }
.thanks-editorial.thanks-editorial-solo .thanks-editorial-copy { max-width: 900px; }

input, select, textarea, .form-card .btn[type="submit"] { max-width: 100%; }

.hero-grid > *,
.page-hero-grid > *,
.story-layout > *,
.contact-wrap > *,
.voyage-main > *,
.day-layout > *,
.about-layout > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .brand span:last-child { word-break: break-all; min-width: 0; }
  .ad-label { word-break: normal; }
  .footer-grid { display: flex; flex-direction: column; gap: 28px; }
  .footer-col { word-break: break-all; }
  .thanks-editorial-copy,
  .thanks-editorial-copy h2,
  .thanks-editorial-copy p,
  .thanks-editorial-copy span { word-break: break-all; }
  .thanks-note { display: flex; flex-direction: column; gap: 10px; }
  .hero-media { display: flex; flex-direction: column; gap: 10px; }
  .hero-caption { position: static; max-width: 100%; color: var(--color-text); flex-direction: column; align-items: flex-start; padding: 0 14px 14px; }
}

@media (max-width: 480px) {
  :root { --space-8: 64px; --space-7: 48px; --space-6: 36px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: var(--space-7) 0; }
  .hero-copy { padding: 48px 0 36px; }
  .contact-card, .form-card { padding: 20px 16px; }
  .legal-wrap { padding: 56px 0 72px; }
  .voyage-copy { padding: 24px 16px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.65rem, 6vw, 2.1rem); }
}
