@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Bricolage+Grotesque:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Deep maritime blues */
  --abyss:   #020b14;
  --deep:    #05182a;
  --navy:    #0a2a44;
  --ocean:   #0f3d63;
  --sea:     #1a5c8a;
  --horizon: #2980b9;
  --sky:     #74b9e0;
  --foam:    #d6eaf8;
  --chalk:   #f4f8fb;

  /* Accents */
  --brass:   #c89b3c;
  --rust:    #c0392b;
  --sand:    #f0e4c8;
  --white:   #ffffff;
  --muted:   #6b8199;
  --vm-blue: #038ED7;  /* VoiceMap brand colour */

  --r: 4px;
  --sans: 'Bricolage Grotesque', sans-serif;
  --serif: 'Instrument Serif', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--abyss);
  background: var(--chalk);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(2, 11, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 155, 60, 0.2);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-family: var(--serif); font-size: 1rem; color: var(--chalk); line-height: 1.1; }
.nav-logo-text span { display: block; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 500; }

.nav-links { list-style: none; display: flex; }
.nav-links a { color: rgba(244,248,251,0.65); text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.4rem 0.85rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brass); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--chalk); transition: 0.3s; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 60px;
  display: flex; align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--abyss);
}
/* animated water-line effect */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: -50%; right: -50%;
  height: 300px;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(41, 128, 185, 0.15), transparent);
  animation: tide 8s ease-in-out infinite alternate;
}
@keyframes tide { from { transform: translateX(-5%); } to { transform: translateX(5%); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  align-items: center; gap: 4rem;
  padding-top: 4rem; padding-bottom: 4rem;
}

.hero-left { padding: 2rem 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.35);
  color: var(--brass); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 2rem;
  width: fit-content;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  color: var(--chalk);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--brass); }

.hero-lede {
  font-size: 1.05rem; color: rgba(244,248,251,0.65);
  max-width: 480px; line-height: 1.75; margin-bottom: 2rem;
  font-weight: 300;
}

.hero-steps {
  display: flex; gap: 0; margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  overflow: hidden; max-width: 420px;
}
.hero-step {
  flex: 1; padding: 0.9rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-step:last-child { border-right: none; }
.hero-step-icon { font-size: 1.2rem; }
.hero-step-text { font-size: 0.68rem; color: rgba(244,248,251,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }

.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-right {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 80px rgba(2,11,20,0.6);
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) contrast(1.1); }
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 60%, rgba(2,11,20,0.8) 100%);
}
.hero-right-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2; border-left: 3px solid var(--brass); padding-left: 1rem;
}
.hero-right-caption p { font-size: 0.82rem; color: rgba(244,248,251,0.8); font-style: italic; line-height: 1.5; }
.hero-right-caption cite { font-size: 0.68rem; color: var(--brass); font-style: normal; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-right-caption cite a { color: var(--brass); text-decoration: none; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.8rem; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-brass { background: var(--brass); color: var(--abyss); }
.btn-brass:hover { background: #b8892e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,155,60,0.3); }
.btn-ghost { background: transparent; color: var(--chalk); border: 1.5px solid rgba(244,248,251,0.3); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-ocean { background: var(--ocean); color: var(--chalk); }
.btn-ocean:hover { background: var(--sea); transform: translateY(-1px); }
.btn-chalk { background: var(--chalk); color: var(--abyss); }
.btn-chalk:hover { background: var(--foam); }
.btn-dark { background: var(--abyss); color: var(--chalk); }
.btn-dark:hover { background: var(--deep); }

/* ── SECTION UTILS ────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 0.6rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 0.8rem; }
.section-title em { font-style: italic; }
.section-intro { font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }

/* ── STORIES SECTION ──────────────────────────────── */
.stories-section { background: var(--chalk); padding: 6rem 0; }

.story-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
  margin-top: 3rem; background: rgba(10,42,68,0.08);
}
.story-card {
  background: var(--chalk); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.story-card:hover { background: var(--foam); }
.story-num {
  font-family: var(--serif); font-size: 5rem; font-weight: 400;
  color: rgba(10,42,68,0.06); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
  pointer-events: none; user-select: none;
}
.story-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.8rem; line-height: 1.2; }
.story-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.story-card-tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--brass); border-bottom: 1px solid var(--brass); padding-bottom: 0.1rem; margin-bottom: 1rem; }

/* ── VOICEMAP FEATURE ─────────────────────────────── */
.voicemap-section {
  background: var(--deep);
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
.voicemap-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,128,185,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.voicemap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.voicemap-right { position: relative; }
.voicemap-phone-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2rem;
}
.voicemap-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--chalk); line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.voicemap-headline em { font-style: italic; color: var(--brass); }

.voicemap-steps { display: flex; flex-direction: column; gap: 0; margin: 2rem 0; }
.voicemap-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.voicemap-step:last-child { border-bottom: none; }
.voicemap-step-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.voicemap-step-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--chalk); margin-bottom: 0.2rem; }
.voicemap-step-text p { font-size: 0.8rem; color: rgba(244,248,251,0.5); line-height: 1.5; }

.voicemap-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.vm-cred {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 1rem;
}
.vm-cred-num { font-family: var(--serif); font-size: 2rem; color: var(--brass); line-height: 1; }
.vm-cred-label { font-size: 0.7rem; color: rgba(244,248,251,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* ── TOUR CARDS ───────────────────────────────────── */
.tours-section { background: var(--navy); padding: 6rem 0; }
.tours-section .section-title { color: var(--chalk); }
.tours-section .section-intro { color: rgba(244,248,251,0.55); }

.tour-stack { display: flex; flex-direction: column; gap: 1px; margin-top: 3rem; background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }

.tour-row {
  display: grid; grid-template-columns: 280px 1fr auto;
  gap: 0; background: var(--deep);
  text-decoration: none; color: inherit;
  transition: background 0.2s;
  align-items: stretch;
}
.tour-row:hover { background: var(--ocean); }

.tour-row-img { position: relative; overflow: hidden; }
.tour-row-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); transition: filter 0.3s, transform 0.4s; }
.tour-row:hover .tour-row-img img { filter: saturate(1); transform: scale(1.03); }
.tour-row-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, var(--deep) 100%); transition: background 0.2s; }
.tour-row:hover .tour-row-img-overlay { background: linear-gradient(to right, transparent 70%, var(--ocean) 100%); }

.tour-row-body { padding: 2rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.tour-row-badge { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--brass); margin-bottom: 0.5rem; }
.tour-row-title { font-family: var(--serif); font-size: 1.5rem; color: var(--chalk); margin-bottom: 0.5rem; line-height: 1.2; }
.tour-row-desc { font-size: 0.83rem; color: rgba(244,248,251,0.55); line-height: 1.65; max-width: 480px; }
.tour-row-meta { display: flex; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap; }
.tour-meta-item { font-size: 0.72rem; color: rgba(244,248,251,0.4); display: flex; align-items: center; gap: 0.35rem; }

.tour-row-cta { padding: 2rem; display: flex; align-items: center; }
.tour-row-cta .btn { white-space: nowrap; }

/* ── REVIEWS ──────────────────────────────────────── */
.reviews-section { background: var(--abyss); padding: 6rem 0; }
.reviews-section .section-title { color: var(--chalk); }

.reviews-marquee-wrap { overflow: hidden; margin: 0 -2rem; position: relative; margin-top: 2.5rem; }
.reviews-marquee-wrap::before, .reviews-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.reviews-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--abyss), transparent); }
.reviews-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--abyss), transparent); }
.reviews-marquee { display: flex; gap: 1.5rem; padding: 0.5rem 2rem; animation: marquee 45s linear infinite; width: max-content; }
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card {
  width: 340px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.5rem;
}
.review-stars { color: var(--brass); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.review-text { font-size: 0.88rem; color: rgba(244,248,251,0.75); font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.review-author { font-size: 0.68rem; font-weight: 600; color: var(--brass); letter-spacing: 0.08em; text-transform: uppercase; }
.review-author a { color: var(--brass); text-decoration: none; }
.review-author a:hover { text-decoration: underline; }

/* ── VS SECTION ───────────────────────────────────── */
.vs-section { background: var(--chalk); padding: 6rem 0; }

.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; border-radius: 12px; overflow: hidden; }
.vs-col { padding: 2.5rem; }
.vs-col.them { background: #e8ecef; }
.vs-col.us { background: var(--navy); }
.vs-col h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.5rem; }
.vs-col.them h3 { color: var(--muted); }
.vs-col.us h3 { color: var(--chalk); }
.vs-list { list-style: none; }
.vs-list li { padding: 0.6rem 0; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; gap: 0.8rem; align-items: baseline; }
.vs-col.us .vs-list li { border-bottom-color: rgba(255,255,255,0.07); color: rgba(244,248,251,0.75); }
.vs-col.them .vs-list li { color: var(--muted); }

/* ── BLOG ─────────────────────────────────────────── */
.blog-section { background: var(--foam); padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--chalk); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10,42,68,0.12); }
.blog-card-img { height: 160px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--brass); margin-bottom: 0.6rem; }
.blog-card-title { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.6rem; }
.blog-card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-read { font-size: 0.72rem; font-weight: 700; color: var(--sea); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: var(--brass);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'KIEL';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: 20rem; font-weight: 400;
  color: rgba(2,11,20,0.05); white-space: nowrap; pointer-events: none; user-select: none;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4rem); color: var(--abyss); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-band p { color: rgba(2,11,20,0.65); max-width: 500px; margin: 0 auto 2rem; position: relative; z-index: 1; font-size: 1.05rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero {
  min-height: 50vh; padding-top: 60px;
  background: var(--abyss);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.4) brightness(0.4); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--abyss) 0%, rgba(2,11,20,0.6) 60%, rgba(2,11,20,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 3rem 2rem 4rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.breadcrumb { font-size: 0.72rem; color: rgba(244,248,251,0.35); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(244,248,251,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--brass); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); color: var(--chalk); line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--brass); }
.page-hero-sub { font-size: 1.05rem; color: rgba(244,248,251,0.6); max-width: 560px; font-weight: 300; }

/* ── INFO PILLS ───────────────────────────────────── */
.info-strip { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2.5rem 0; }
.info-pill { background: var(--chalk); border: 1px solid rgba(10,42,68,0.1); border-radius: 8px; padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.info-pill-icon { font-size: 1.2rem; }
.info-pill-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.info-pill-value { font-size: 0.9rem; font-weight: 700; color: var(--navy); }

/* ── PULL QUOTE ───────────────────────────────────── */
.pull-quote { border-left: 3px solid var(--brass); padding: 1rem 1.5rem; background: var(--foam); border-radius: 0 6px 6px 0; margin: 1.5rem 0; }
.pull-quote p { font-style: italic; font-size: 0.95rem; color: var(--navy); line-height: 1.7; margin-bottom: 0.4rem; }
.pull-quote cite { font-size: 0.7rem; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; font-style: normal; }
.pull-quote cite a { color: var(--brass); text-decoration: none; }

/* ── CONTENT GRID ─────────────────────────────────── */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media(max-width:768px) { .content-split { grid-template-columns: 1fr; gap: 2rem; } }

.prose p { margin-bottom: 1.1rem; color: var(--abyss); line-height: 1.75; }
.prose h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin: 1.5rem 0 0.6rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; color: var(--abyss); }
.prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol li { margin-bottom: 0.5rem; color: var(--abyss); }

/* ── STICKY PHOTO ─────────────────────────────────── */
.sticky-img { position: sticky; top: 80px; }
.sticky-img img { width: 100%; border-radius: 10px; box-shadow: 16px 16px 0 var(--brass); filter: saturate(0.8); }

/* ── FAQ ──────────────────────────────────────────── */
details { border-bottom: 1px solid rgba(10,42,68,0.1); }
details:first-of-type { border-top: 1px solid rgba(10,42,68,0.1); }
summary { padding: 1.3rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--brass); flex-shrink: 0; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 0 1.3rem; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ── FORM ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid rgba(10,42,68,0.15); border-radius: var(--r);
  font-family: var(--sans); font-size: 0.92rem; color: var(--abyss);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sea); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display:none; background:#e8f5e9; border:1px solid #a5d6a7; color:#2e7d32; padding:1rem; border-radius:var(--r); margin-top:1rem; font-size:0.9rem; }

/* ── ITINERARY CARDS ──────────────────────────────── */
.itinerary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin: 2rem 0; }
.itinerary-card { border-radius: 8px; overflow: hidden; border: 1.5px solid rgba(10,42,68,0.1); }
.itinerary-card-header { background: var(--navy); padding: 1.2rem 1.5rem; }
.itinerary-card-header h3 { font-family: var(--serif); color: var(--chalk); font-size: 1.1rem; margin-bottom: 0.2rem; }
.itinerary-card-header .price { color: var(--brass); font-size: 0.82rem; font-weight: 600; }
.itinerary-card-body { padding: 1.5rem; background: var(--white); }
.itinerary-card-body p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.includes-list { list-style: none; font-size: 0.82rem; }
.includes-list li { padding: 0.25rem 0; color: var(--abyss); }
.includes-list li::before { content: '✓ '; color: var(--brass); font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--abyss); padding: 4rem 2rem 2rem; color: rgba(244,248,251,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand h3 { font-family: var(--serif); color: var(--chalk); font-size: 1.3rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 320px; }
.footer-brand p a { color: rgba(244,248,251,0.4); text-decoration: none; }
.footer-brand p a:hover { color: var(--brass); }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(244,248,251,0.4); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brass); }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; flex-wrap: wrap; gap: 1rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(244,248,251,0.3); text-decoration: none; font-size: 0.75rem; transition: color 0.2s; }
.social-links a:hover { color: var(--brass); }

/* ── BLOG PAGE ────────────────────────────────────── */
.blog-article { max-width: 720px; margin: 0 auto; }
.blog-article h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.blog-article .lead { font-size: 1.1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; font-weight: 300; border-left: 3px solid var(--brass); padding-left: 1.2rem; }
.blog-article h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 0.8rem; }
.blog-article p { margin-bottom: 1.2rem; color: var(--abyss); line-height: 1.8; font-size: 1rem; }
.blog-article ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.blog-article ul li { margin-bottom: 0.5rem; color: var(--abyss); line-height: 1.7; }
.blog-cta-box { background: var(--navy); border-radius: 10px; padding: 2rem; margin: 2.5rem 0; text-align: center; }
.blog-cta-box h3 { font-family: var(--serif); color: var(--chalk); font-size: 1.4rem; margin-bottom: 0.5rem; }
.blog-cta-box p { color: rgba(244,248,251,0.6); font-size: 0.88rem; margin-bottom: 1.2rem; }

/* ── EDITOR NOTICE ────────────────────────────────── */
.editor-notice { background: rgba(200,155,60,0.1); border: 1px solid rgba(200,155,60,0.3); border-radius: 6px; padding: 0.8rem 1.2rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { aspect-ratio: 16/9; max-height: 400px; }
  .voicemap-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tour-row { grid-template-columns: 200px 1fr; }
  .tour-row-cta { display: none; }
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background: var(--abyss); padding: 2rem; gap: 0.3rem; z-index: 199; }
  .nav-links.open a { font-size: 1.1rem; padding: 0.8rem 0; }
  .story-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .voicemap-credentials { grid-template-columns: repeat(4, 1fr); }
  .tour-row { grid-template-columns: 1fr; }
  .tour-row-img { height: 180px; }
  .tour-row-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--deep) 100%) !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Story cards grid responsive */
@media(max-width: 900px) {
  .story-cards-grid { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width: 600px) {
  .story-cards-grid { grid-template-columns: 1fr !important; }
  .proof-strip { grid-template-columns: repeat(3,1fr) !important; }
  .tour-choice-grid { grid-template-columns: 1fr !important; }
}

/* ── MOBILE STICKY BOTTOM BAR ───────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--abyss);
  border-top: 1px solid rgba(200,155,60,0.25);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(2,11,20,0.4);
}
.mobile-sticky .btn-sticky-primary {
  flex: 1;
  display: block;
  text-align: center;
  background: var(--brass);
  color: var(--abyss);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-sticky .btn-sticky-secondary {
  flex-shrink: 0;
  display: block;
  text-align: center;
  background: transparent;
  color: rgba(244,248,251,0.6);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

@media(max-width: 768px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 72px; } /* prevent content hiding behind bar */
}

/* ── MOBILE FONT SIZE FIXES ─────────────────────────── */
@media(max-width: 768px) {
  body { font-size: 1rem; }
  .prose p, .blog-article p { font-size: 1rem; line-height: 1.75; }
  .section-intro { font-size: 1rem; }
  .faq-answer { font-size: 1rem; }
  details p { font-size: 1rem; }
  .review-text { font-size: 0.95rem; }
  .tour-row-desc { font-size: 0.95rem; }
  /* Increase tap targets */
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  summary { min-height: 48px; }
  .nav-links.open a { min-height: 52px; display: flex; align-items: center; }
  /* Story cards single column on mobile */
  .story-grid { grid-template-columns: 1fr !important; }
  /* Proof strip wraps to 3+2 */
  .proof-strip-inner { grid-template-columns: repeat(3,1fr) !important; }
}

/* ── VOICEMAP BRANDED BUTTON ─────────────────────── */
.btn-voicemap {
  background: #038ED7;
  color: white;
  border: none;
}
.btn-voicemap:hover {
  background: #0279bc;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(3,142,215,0.3);
}
.vm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(3,142,215,0.12);
  border: 1px solid rgba(3,142,215,0.35);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
}
