:root {
  --bg: #e8eeeb;
  --surface: #f6f1e8;
  --surface-2: #dce7e2;
  --surface-3: #ffffff;
  --text: #102129;
  --muted: #5d6c70;
  --navy: #071a24;
  --navy-2: #0c2a34;
  --accent: #d8b36a;
  --accent-2: #9fcdbf;
  --line: rgba(16, 33, 41, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --font-display: Baskerville, "Baskerville Old Face", "Times New Roman", serif;
  --font-body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --fs-display: clamp(3.3rem, 7.2vw, 7rem);
  --fs-h1: clamp(2.7rem, 5vw, 5.4rem);
  --fs-h2: clamp(2.1rem, 3.8vw, 4rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.7rem);
  --fs-body: clamp(1rem, 1.1vw, 1.08rem);
  --space-xs: 0.55rem;
  --space-sm: 0.9rem;
  --space-md: 1.4rem;
  --space-lg: 2.4rem;
  --space-xl: clamp(4.2rem, 7vw, 7.4rem);
  --radius-sm: 6px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(7, 26, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; overflow-x: clip; background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.65; }
main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.shell { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--accent); color: var(--navy); padding: 10px 16px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 700; }
.skip-link:focus { top: 0; }
.ad-disclosure { min-height: 34px; background: var(--accent); color: var(--navy); display: flex; justify-content: center; gap: 16px; align-items: center; padding: 7px 20px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ad-disclosure span:first-child { font-weight: 900; border: 1px solid rgba(7, 26, 36, 0.4); padding: 1px 7px; border-radius: 999px; }
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(7, 26, 36, 0.96); color: #fff; border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(14px); }
.header-row { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,0.34); background: var(--surface); }
.brand-name { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.main-nav a { font-size: 0.87rem; color: rgba(255,255,255,0.78); transition: color .2s ease; white-space: nowrap; }
.main-nav a:hover { color: #fff; }
.header-cta { border: 1px solid rgba(255,255,255,0.34); padding: 10px 15px; border-radius: 999px; font-size: 0.86rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border-radius: 50%; cursor: pointer; }
.nav-toggle span { width: 18px; height: 1px; background: #fff; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.section-dark { background: var(--navy); color: #f9f6ef; }
.section-pearl { background: var(--surface); }
.section-mist { background: var(--surface-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.73rem; font-weight: 800; color: var(--muted); margin-bottom: 14px; }
.section-dark .eyebrow { color: var(--accent-2); }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(216,179,106,.14); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; margin: 0; }
h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-h3); }
p { margin: 0; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 12px 20px; font-weight: 800; font-size: 0.9rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 1px solid transparent; }
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--navy); box-shadow: 0 12px 34px rgba(216,179,106,.18); }
.button-dark { background: var(--navy); color: #fff; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.text-link { display: inline-flex; margin-top: 20px; font-weight: 900; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.light-link { color: #a76f00; }
.hero { position: relative; overflow: hidden; padding: clamp(50px, 8vw, 100px) 0 34px; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 78%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.hero-grid > * { min-width: 0; max-width: 100%; }
.hero-copy h1 { max-width: 800px; }
.hero-lead { max-width: 760px; margin-top: 24px; color: rgba(255,255,255,.76); font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.hero-facts div { background: var(--navy); padding: 18px; }
.hero-facts strong { display: block; color: var(--accent); font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; }
.hero-facts span { font-size: .74rem; color: rgba(255,255,255,.62); }
.hero-visual { position: relative; min-width: 0; padding: 38px 0 28px 30px; }
.hero-image-frame { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 180px 180px 18px 18px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.18); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; width: 52%; height: 46%; background: linear-gradient(145deg, var(--accent-2), rgba(159,205,191,.16)); left: 0; bottom: 0; z-index: -1; border-radius: 50% 0 0 0; opacity: .56; }
.route-stamp { position: absolute; top: 0; left: 0; z-index: 3; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.28); background: rgba(7,26,36,.78); backdrop-filter: blur(10px); border-radius: 50%; display: grid; place-content: center; text-align: center; }
.route-stamp span { color: var(--accent); font-size: .66rem; letter-spacing: .12em; }
.route-stamp strong { font-size: .7rem; margin-top: 4px; }
.floating-panel { position: absolute; right: -12px; bottom: 0; background: var(--surface); color: var(--text); padding: 16px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow); min-width: 190px; }
.floating-panel span, .floating-panel small { display: block; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.floating-panel strong { display: block; margin: 3px 0; font-family: var(--font-display); font-size: 1.15rem; }
.course-line { position: relative; display: flex; align-items: center; gap: 12px; margin-top: 60px; font-size: .69rem; letter-spacing: .12em; color: rgba(255,255,255,.62); }
.course-line span { flex: 1; height: 1px; background: var(--line-dark); }
.course-line i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.story { padding: var(--space-xl) 0; }
.story-grid { display: grid; grid-template-columns: .55fr 1.6fr .85fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.story-index { border-top: 1px solid var(--line); padding-top: 16px; }
.story-index span { font-family: var(--font-display); font-size: 4.6rem; color: var(--accent); line-height: .9; }
.story-index p { color: var(--muted); margin-top: 14px; max-width: 180px; }
.story-copy p { margin-top: 18px; font-size: 1.08rem; color: #31474e; }
.story-card { background: var(--navy); color: #fff; padding: 28px; border-radius: var(--radius-md); transform: translateY(36px); box-shadow: var(--shadow); }
.story-card-kicker { color: var(--accent-2); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.story-card strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1.08; margin: 16px 0 12px; }
.story-card p { color: rgba(255,255,255,.68); }
.mini-route { display: flex; gap: 8px; align-items: center; margin-top: 26px; font-size: .68rem; color: rgba(255,255,255,.68); }
.mini-route i { flex: 1; border-top: 1px dashed var(--accent); }
.voyages, .stops, .gallery-page, .contact-section { padding: var(--space-xl) 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { max-width: 820px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; }
.split-heading p { color: var(--muted); max-width: 500px; }
.voyage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.voyage-card { background: var(--surface-3); box-shadow: 0 14px 40px rgba(7,26,36,.08); border: 1px solid rgba(7,26,36,.08); display: flex; flex-direction: column; border-radius: var(--radius-sm); overflow: hidden; }
.voyage-card-featured { transform: translateY(-14px); border-top: 4px solid var(--accent); }
.voyage-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.voyage-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.voyage-card:hover .voyage-image img { transform: scale(1.035); }
.flag { position: absolute; top: 14px; left: 14px; background: var(--navy); color: #fff; padding: 6px 10px; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.voyage-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-route { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; margin-bottom: 8px; }
.voyage-body h3 { min-height: 3.4rem; }
.spec-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0 10px; }
.spec-row span, .service-chips span { border: 1px solid var(--line); padding: 5px 8px; font-size: .72rem; border-radius: 999px; color: var(--muted); }
.price { font-family: var(--font-display); font-size: 1.55rem; margin: 4px 0 13px; }
.price small { font-family: var(--font-body); font-size: .7rem; color: var(--muted); }
.voyage-body p { color: #445960; font-size: .94rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag-row span { background: var(--surface-2); padding: 5px 8px; font-size: .68rem; }
.section-action { text-align: center; margin-top: 34px; }
.route-services { padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.route-services::after { content: "NORDKURS"; position: absolute; right: -20px; bottom: -48px; font-family: var(--font-display); font-size: clamp(7rem, 15vw, 13rem); color: rgba(255,255,255,.025); pointer-events: none; }
.route-services-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
.route-board { border: 1px solid var(--line-dark); padding: clamp(26px, 4vw, 48px); background: linear-gradient(135deg, rgba(255,255,255,.03), transparent); }
.route-board h2 { max-width: 720px; }
.route-list { margin-top: 34px; }
.route-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-dark); align-items: center; }
.route-item > span { color: var(--accent); font-family: var(--font-display); font-size: 1.2rem; }
.route-item strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.route-item p { color: rgba(255,255,255,.62); font-size: .88rem; margin-top: 3px; }
.route-item b { color: var(--accent-2); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.service-stack { background: var(--accent-2); color: var(--navy); padding: 30px; border-radius: var(--radius-md); }
.service-stack .eyebrow { color: #375c61; }
.service-stack-item { padding: 18px 0; border-top: 1px solid rgba(7,26,36,.18); }
.service-stack-item span { font-size: .69rem; text-transform: uppercase; letter-spacing: .1em; }
.service-stack-item strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin: 3px 0 4px; }
.service-stack-item p { font-size: .88rem; color: #2c4c52; }
.gallery-teaser { padding: var(--space-xl) 0; }
.gallery-teaser-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.gallery-photo { position: relative; }
.gallery-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 0 90px 0 0; box-shadow: var(--shadow); }
.photo-caption { position: absolute; left: 22px; bottom: -18px; background: var(--accent); color: var(--navy); padding: 9px 12px; font-size: .7rem; font-weight: 800; }
.gallery-copy p { color: var(--muted); margin: 20px 0 26px; }
.stop-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 16px; }
.stop-card { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.stop-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stop-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,26,36,.9), rgba(7,26,36,.04) 70%); }
.stop-card div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.stop-card div > span { color: var(--accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.stop-card p { color: rgba(255,255,255,.72); margin-top: 8px; font-size: .9rem; }
.about-preview { padding: var(--space-xl) 0; }
.about-preview-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; align-items: center; }
.about-number { border-right: 1px solid var(--line); min-height: 220px; display: grid; align-content: center; }
.about-number span { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 8rem); color: var(--navy); letter-spacing: -.05em; }
.about-number small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.about-preview-copy p { margin-top: 20px; color: var(--muted); max-width: 720px; }
.cta-band { padding: clamp(50px, 7vw, 80px) 0; }
.cta-band-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 20px; }
.section-pearl.cta-band p { color: var(--muted); }
.page-hero { padding: clamp(56px, 8vw, 96px) 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: 7%; top: 16%; box-shadow: 0 0 0 45px rgba(255,255,255,.02), 0 0 0 90px rgba(255,255,255,.015); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.7); margin-top: 20px; font-size: 1.1rem; }
.page-hero-note { border-left: 1px solid var(--accent); padding-left: 22px; }
.page-hero-note span, .page-hero-note small { display: block; color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.page-hero-note strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin: 5px 0; }
.detail-voyages { padding: var(--space-xl) 0; }
.detail-voyage-list { display: grid; gap: 28px; }
.detail-voyage { display: grid; grid-template-columns: .9fr 1.1fr; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(7,26,36,.07); }
.detail-voyage:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.detail-voyage:nth-child(even) .detail-voyage-image { order: 2; }
.detail-voyage-image { min-height: 440px; position: relative; overflow: hidden; }
.detail-voyage-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-voyage-image span { position: absolute; left: 18px; top: 18px; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-family: var(--font-display); }
.detail-voyage-copy { padding: clamp(28px, 4vw, 54px); align-self: center; }
.detail-voyage-copy > p { color: var(--muted); margin-top: 15px; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; margin-bottom: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.detail-columns h3 { font-size: 1.12rem; }
.detail-columns p { color: var(--muted); font-size: .9rem; margin-top: 8px; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; grid-auto-rows: 280px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: var(--navy); }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item span { position: absolute; left: 14px; bottom: 14px; background: rgba(7,26,36,.82); color: #fff; padding: 7px 10px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(3,13,18,.9); padding: 30px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: #fff; background: transparent; font-size: 1.8rem; cursor: pointer; }
.services-editorial { padding: clamp(50px, 7vw, 84px) 0; }
.services-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.services-editorial-grid.reverse .services-photo { order: 2; }
.services-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0 80px 0 0; box-shadow: var(--shadow); }
.section-dark .services-copy p { color: rgba(255,255,255,.68); }
.services-copy p { color: var(--muted); margin-top: 18px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.section-dark .service-chips span { border-color: var(--line-dark); color: rgba(255,255,255,.7); }
.about-story { padding: var(--space-xl) 0; }
.about-story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.about-story-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 170px 170px 10px 10px; box-shadow: var(--shadow); }
.about-story-copy p { color: var(--muted); margin-top: 18px; }
.about-values { padding: var(--space-xl) 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-grid article { padding: 28px; background: rgba(255,255,255,.55); border: 1px solid rgba(7,26,36,.09); }
.value-grid span { font-family: var(--font-display); color: var(--accent); font-size: 2.4rem; }
.value-grid h3 { margin-top: 28px; }
.value-grid p { color: var(--muted); margin-top: 10px; }
.about-stats { padding: 48px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.about-stats-grid div { padding: 16px 30px; border-right: 1px solid var(--line-dark); }
.about-stats-grid div:last-child { border-right: 0; }
.about-stats-grid span { display: block; color: var(--accent); font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); }
.about-stats-grid p { color: rgba(255,255,255,.64); }
.about-photo-pair { padding: var(--space-xl) 0; }
.photo-pair { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; align-items: end; }
.photo-pair img { width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.photo-pair img:first-child { aspect-ratio: 16 / 10; }
.photo-pair img:last-child { aspect-ratio: 4 / 5; max-height: 520px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-panel { background: var(--navy); color: #fff; padding: 32px; border-radius: var(--radius-md); position: sticky; top: 126px; }
.contact-panel h2 { font-size: 2.3rem; }
.company-list { margin-top: 24px; border-top: 1px solid var(--line-dark); }
.company-list p { padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
.company-list span { display: block; color: var(--accent-2); text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; }
.company-list strong { display: block; font-weight: 500; margin-top: 2px; overflow-wrap: anywhere; }
.contact-note { margin-top: 22px; color: rgba(255,255,255,.62); font-size: .82rem; padding-left: 14px; border-left: 2px solid var(--accent); }
.inquiry-form { background: #fff; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 24px; }
.form-heading > span { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.form-heading h2 { font-size: 2.6rem; margin-top: 4px; }
.inquiry-form label { display: grid; gap: 7px; margin-top: 16px; font-size: .84rem; font-weight: 800; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; max-width: 100%; border: 1px solid var(--line); background: var(--surface); padding: 13px 14px; border-radius: var(--radius-sm); min-height: 48px; color: var(--text); }
.inquiry-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { grid-template-columns: 22px 1fr !important; align-items: start; font-weight: 500 !important; font-size: .78rem !important; }
.consent input { width: 18px !important; min-height: 18px !important; margin-top: 3px; }
.consent a { text-decoration: underline; }
.inquiry-form .button { margin-top: 22px; border: 0; cursor: pointer; }
.thanks-page { min-height: 78vh; padding: var(--space-xl) 0; display: grid; place-items: center; }
.thanks-card { max-width: 980px; border: 1px solid var(--line-dark); padding: clamp(28px, 5vw, 62px); background: rgba(255,255,255,.035); box-shadow: var(--shadow); }
.thanks-card > img { border-radius: 50%; background: var(--surface); margin-bottom: 20px; }
.thanks-card h1 span:not(:empty)::before { content: ", "; }
.thanks-lead { color: rgba(255,255,255,.7); font-size: 1.15rem; margin-top: 18px; }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 34px 0; }
.next-steps div { border: 1px solid var(--line-dark); padding: 20px; }
.next-steps span { color: var(--accent); font-family: var(--font-display); font-size: 1.5rem; }
.next-steps h2 { font-size: 1.45rem; margin-top: 10px; }
.next-steps p { color: rgba(255,255,255,.62); font-size: .88rem; margin-top: 8px; }
.thanks-contact { border-left: 2px solid var(--accent); padding-left: 14px; margin-bottom: 24px; color: rgba(255,255,255,.76); }
.legal-hero { padding: 70px 0 44px; }
.legal-content { max-width: 860px; margin: 0 auto; padding: 0 20px; word-break: break-word; }
.legal-hero p { color: rgba(255,255,255,.72); margin-top: 22px; }
.last-updated { color: rgba(255,255,255,.62); font-size: .88rem; margin-top: 10px; }
.legal-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.legal-meta span { border: 1px solid var(--line-dark); padding: 6px 9px; font-size: .72rem; color: rgba(255,255,255,.65); }
.legal-section { padding: 54px 0 76px; }
.legal-section h2 { font-size: 1.9rem; margin: 38px 0 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-section h2:first-child { margin-top: 0; }
.legal-section p { color: #40565d; margin-top: 12px; }
.legal-callout { margin: 24px 0; padding: 18px 20px; border-left: 4px solid var(--accent); background: var(--surface-2); color: #28434a; }
.site-footer { background: #041117; color: #fff; margin-top: auto; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .55fr 1fr; gap: 50px; }
.brand-footer { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.56); max-width: 450px; }
.footer-links h2, .footer-company h2 { font-family: var(--font-body); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-2); margin-bottom: 15px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a { color: rgba(255,255,255,.72); padding: 5px 0; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-company p { color: rgba(255,255,255,.66); font-size: .86rem; margin-top: 5px; overflow-wrap: anywhere; }
.footer-disclaimer { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); margin-top: 42px; padding-top: 22px; padding-bottom: 22px; }
.footer-disclaimer p { color: rgba(255,255,255,.48); font-size: .82rem; }
.footer-bottom { min-height: 66px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.42); font-size: .82rem; }
.to-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--accent); color: var(--navy); font-weight: 900; box-shadow: var(--shadow); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; z-index: 70; }
.to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .site-header { overflow: visible; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border: 1px solid var(--line-dark);
    padding: 12px;
    box-shadow: var(--shadow);
    margin-left: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; border-bottom: 1px solid var(--line-dark); }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: flex; }
  .hero-grid, .story-grid, .route-services-grid, .gallery-teaser-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-grid > *,
  .contact-grid > *,
  .voyage-grid > *,
  .about-preview-grid > *,
  .about-story-grid > *,
  .route-services-grid > *,
  .gallery-teaser-grid > *,
  .cta-band-grid > *,
  .page-hero-grid > *,
  .services-editorial-grid > *,
  .footer-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .story-card { transform: none; }
  .story-index { display: none; }
  .voyage-grid { grid-template-columns: 1fr 1fr; }
  .voyage-card-featured { transform: none; }
  .voyage-card:last-child { grid-column: span 2; }
  .stop-grid { grid-template-columns: 1fr 1fr; }
  .stop-card:first-child { grid-column: span 2; }
  .contact-panel { position: static; }
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 28px;
  }
  .route-stamp {
    position: static;
    width: auto;
    height: auto;
    max-width: 100%;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    align-self: flex-start;
  }
  .route-stamp span {
    font-size: .62rem;
    white-space: nowrap;
  }
  .route-stamp strong {
    font-size: .72rem;
    margin-top: 0;
    white-space: nowrap;
  }
  .floating-panel {
    position: static;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    right: auto;
  }
  .hero-visual::after { display: none; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1240px); }
  .ad-disclosure {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-height: auto;
    padding: 10px 16px;
    font-size: .63rem;
    text-align: center;
  }
  .ad-disclosure span:last-child {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .site-header .shell.header-row {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 68px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .site-header .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    flex: 1;
  }
  .site-header .brand img { width: 44px; height: 44px; flex-shrink: 0; }
  .site-header .brand-name { font-size: 1.3rem; min-width: 0; word-break: break-all; }
  .header-cta { display: none; margin-left: 0; }
  .nav-toggle { flex-shrink: 0; margin-left: 0; }
  .main-nav { left: 12px; right: 12px; }
  .hero { padding-top: 44px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-visual { padding-left: 0; padding-right: 0; }
  .hero-image-frame { aspect-ratio: 4 / 4.7; }
  .floating-panel { right: 0; }
  .course-line { margin-top: 40px; gap: 7px; overflow: hidden; }
  .course-line b { font-size: .58rem; }
  .split-heading, .cta-band-grid, .page-hero-grid, .about-preview-grid, .services-editorial-grid, .about-story-grid, .photo-pair { grid-template-columns: 1fr; gap: 28px; }
  .voyage-grid, .stop-grid, .value-grid, .about-stats-grid, .next-steps { grid-template-columns: 1fr; }
  .voyage-card:last-child, .stop-card:first-child { grid-column: auto; }
  .stop-card { min-height: 360px; }
  .about-number { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .route-item { grid-template-columns: 38px 1fr; }
  .route-item b { grid-column: 2; }
  .detail-voyage, .detail-voyage:nth-child(even) { grid-template-columns: 1fr; }
  .detail-voyage:nth-child(even) .detail-voyage-image { order: 0; }
  .detail-voyage-image { min-height: 300px; }
  .detail-columns, .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .gallery-item-tall, .gallery-item-wide { grid-row: auto; grid-column: auto; }
  .services-editorial-grid.reverse .services-photo { order: 0; }
  .about-stats-grid div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 640px) {
  .footer-brand .brand { flex-direction: column; align-items: flex-start; }
  .footer-brand .brand-name { word-break: break-all; min-width: 0; flex: 1; }
  .footer-company { word-break: break-all; }
}

@media (max-width: 480px) {
  .shell { width: min(100% - 20px, 1240px); }
  .ad-disclosure { padding: 7px 12px; font-size: .58rem; }
  .site-header .shell.header-row { gap: 8px; padding-top: 12px; padding-bottom: 12px; min-height: 62px; }
  .inquiry-form,
  .contact-panel,
  .thanks-card { padding: 16px; }
  .legal-content { padding: 0 12px; }
  .button { padding: 10px 16px; font-size: .84rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
