/* =========================================================
   Koyrota — Mavi Tur Planlayıcı
   Art direction: "Aegean editorial" — coastal travel journal.
   Palette: bg #F4F7FB / surface #FFFFFF / ink #0F2540
            accent #2E6BE6 (deep sea) / accent-2 #12B886 (shallows) / sun #FFCF6B
   Type: Fraunces (editorial serif display) / Space Grotesk (nautical-chart labels)
         / Manrope (body) / Space Mono (instrument numerals)
   ========================================================= */

:root {
  --bg: #F3F6FB;
  --surface: #FFFFFF;
  --surface-2: #EAF1FB;
  --surface-3: #E1EAF7;
  --ink: #0F2540;
  --ink-soft: #46586F;
  --ink-faint: #7386A0;
  --accent: #2E6BE6;
  --accent-ink: #1E4FB8;
  --accent-2: #12B886;
  --accent-2-ink: #0C875F;
  --line: #DCE5F1;
  --line-strong: #C3D2E6;
  --sun: #FFCF6B;
  --sun-ink: #C98A16;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Space Mono", "Consolas", monospace;
  --shadow-sm: 0 6px 18px -12px rgba(15, 37, 64, .28);
  --shadow-md: 0 18px 40px -24px rgba(15, 37, 64, .40);
  --shadow-lg: 0 30px 70px -34px rgba(15, 37, 64, .48);
  --header-h: 74px;
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; }

/* Section-scale headings ride the editorial serif; sub-heads stay crisp grotesk */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.006em;
  font-optical-sizing: auto;
}
h3, h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.9rem); }
h2 { font-size: clamp(1.72rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

/* Editorial italic accent inside serif headlines */
h1 .it, h2 .it, .sec-head .it, .hero-title .it { font-style: italic; font-weight: 400; }
h1 .it, h2 .it, .sec-head h2 .it { color: var(--accent-ink); }

p { margin: 0 0 1rem; }
a { color: var(--accent-ink); text-decoration: none; transition: color .2s var(--ease-2); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.mono { font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}

.section-pad { padding: clamp(56px, 8vw, 108px) 0; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 62ch; }

.word-safe { overflow-wrap: anywhere; word-break: break-word; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 2000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease-2),
              color .2s var(--ease-2), box-shadow .2s var(--ease-2), border-color .2s;
  text-align: center;
  line-height: 1.1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-ink); color: #fff; transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent2 { background: var(--accent-2); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent2:hover, .btn-accent2:focus-visible { background: var(--accent-2-ink); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease-2), box-shadow .24s var(--ease-2),
              height .24s var(--ease-2), border-color .24s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 24px -16px rgba(15, 37, 64, .22);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 1.22rem; color: var(--ink); letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand span b { color: var(--accent-ink); font-weight: 600; }

.nav-desktop { display: none; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-desktop a {
  position: relative;
  font-family: "Space Grotesk", sans-serif; font-weight: 500;
  font-size: .97rem; color: var(--ink-soft); padding: 6px 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.nav-desktop .nav-cta:hover { background: var(--accent-ink); color: #fff; }

/* Hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px; cursor: pointer;
  /* Visible affordance: a clearly tappable button, not a bare transparent
     hit-area (keeps the mobile menu discoverable & high-contrast). */
  border: 1px solid var(--line-strong); background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 12px;
  transition: background .2s var(--ease-2), box-shadow .2s var(--ease-2), border-color .2s var(--ease-2);
}
.nav-toggle:hover { background: rgba(46,107,230,.10); border-color: var(--accent); }
.nav-toggle:focus-visible { background: rgba(46,107,230,.10); outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease-2), background .2s var(--ease-2);
}
.nav-toggle:hover span { background: var(--accent-ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1080px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  box-shadow: -20px 0 50px -30px rgba(15, 37, 64, .5);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 12px) 26px 30px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 1.12rem;
  color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-ink); }
.drawer .drawer-cta {
  margin-top: 20px; text-align: center;
  background: var(--accent); color: #fff !important; border: 0; border-radius: 999px;
  padding: 15px 20px; box-shadow: var(--shadow-sm);
}
.drawer a.drawer-cta:hover { background: var(--accent-ink); color: #fff !important; }
.drawer-note { margin-top: auto; padding-top: 24px; color: var(--ink-faint); font-size: .86rem; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(9, 22, 40, .55);
  opacity: 0; visibility: hidden; z-index: 1040;
  transition: opacity .24s var(--ease-2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   MAIN / HERO
   ========================================================= */
main { padding-top: var(--header-h); }

/* Offset anchored targets so the fixed header never covers them */
:where([id]) { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Cinematic photo hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  /* Capped so full-page capture (where vh resolves against the whole
     document height) can't inflate the hero into a giant empty band. */
  max-height: 960px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));   /* pull photo under the fixed header */
  padding: calc(var(--header-h) + clamp(48px, 12vh, 130px)) 0 clamp(52px, 9vh, 104px);
  background: #071726;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.06);
  transform-origin: 60% 50%;
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -2%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,17,30,.86) 0%, rgba(5,17,30,.62) 42%, rgba(5,17,30,.18) 78%, rgba(5,17,30,.05) 100%),
    linear-gradient(0deg, rgba(4,14,26,.82) 0%, rgba(4,14,26,.24) 34%, rgba(4,14,26,0) 62%);
}

.hero-inner {
  position: relative; z-index: 2; width: 100%;
}
.hero-copy { max-width: 760px; }
.hero-eyebrow { color: #8fd3ff; }
.hero-eyebrow::before { background: var(--sun); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.012em;
  line-height: 1.02;
  color: #fff;
  font-size: clamp(2.35rem, 6.4vw, 4.7rem);
  margin: 16px 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-title .w { display: inline-block; white-space: nowrap; }
.hero-title .it {
  font-style: italic;
  color: var(--sun);
}
.hero-sub {
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  color: rgba(233,241,250,.92);
  margin: 20px 0 28px; max-width: 54ch;
  line-height: 1.6;
  text-shadow: 0 1px 16px rgba(0,0,0,.32);
}
.hero-cta { justify-content: flex-start; flex-wrap: wrap; }

/* Light ghost CTA that stays legible over the photo */
.btn-hero-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px);
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(30px, 5vw, 44px); padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 620px;
}
.hero-stat .num {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff;
  display: block; letter-spacing: -0.02em;
}
.hero-stat .lbl { font-size: .84rem; color: rgba(226,236,247,.78); }
/* stats block placed on a LIGHT content section (e.g. hakkimizda) — dark text для контраста */
.hero-stats--on-light .num { color: var(--ink); }
.hero-stats--on-light .lbl { color: var(--ink-soft); }

/* Scroll cue */
.hero-scroll {
  position: absolute; z-index: 3; left: 50%; bottom: 20px; transform: translateX(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  color: #fff; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.06);
  animation: heroBob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; background: rgba(255,255,255,.16); }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes heroBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* Hero copy fade-up (pure CSS; no-JS safe, disabled for reduced-motion) */
.hero-copy > * { opacity: 0; animation: heroUp .9s var(--ease) forwards; }
.hero-eyebrow { animation-delay: .05s; }
.hero-title   { animation-delay: .16s; }
.hero-sub     { animation-delay: .30s; }
.hero-cta     { animation-delay: .42s; }
.hero-stats   { animation-delay: .54s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Planner section (moved below hero) */
.planner-section { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.planner-layout {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (min-width: 1000px) {
  .planner-layout { grid-template-columns: minmax(0, 1fr) minmax(370px, 470px); }
  .planner-intro { position: sticky; top: calc(var(--header-h) + 24px); }
}
.planner-intro { max-width: 620px; }
.planner-intro h2 { margin-top: 12px; }
.planner-intro .lead { margin-top: 12px; }
.planner-intro .bay-band { margin-top: clamp(24px, 4vw, 34px); }

/* Bay-name chip band (static, replaces marquee) */
.bay-band {
  position: relative; z-index: 2;
  margin-top: clamp(30px, 5vw, 46px);
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.bay-band .label {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); margin-right: 6px;
}
.bay-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); border-radius: 999px; padding: 8px 15px;
  font-size: .92rem; font-weight: 500; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s, color .2s;
}
.bay-pill svg { width: 14px; height: 14px; color: var(--accent); }
.bay-pill:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-ink); }

/* =========================================================
   PLANNER (theme-signature)
   ========================================================= */
.planner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.planner-head {
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, rgba(46,107,230,.08), rgba(18,184,134,.08));
  border-bottom: 1px solid var(--line);
}
.planner-head .eyebrow { margin-bottom: 6px; }
.planner-head h2 { font-size: 1.3rem; margin: 0; }
.planner-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 20px; }

.step-indicator { display: flex; gap: 8px; margin-bottom: 2px; }
.step-dot {
  flex: 1; height: 5px; border-radius: 4px; background: var(--line-strong);
  transition: background .3s var(--ease-2);
}
.step-dot.on { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.pfield > .plabel {
  display: flex; align-items: center; gap: 8px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .92rem;
  color: var(--ink); margin-bottom: 10px;
}
.pfield > .plabel svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.pfield .hint { color: var(--ink-faint); font-weight: 400; font-size: .82rem; margin-left: auto; }

.pselect {
  width: 100%; appearance: none; -webkit-appearance: none;
  font-family: "Manrope", sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E6BE6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 40px 13px 14px; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.pselect:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,107,230,.16); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  position: relative; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 9px 15px; font-size: .92rem; font-weight: 500;
  color: var(--ink-soft); user-select: none;
  transition: all .2s var(--ease-2);
}
.chip svg { width: 15px; height: 15px; color: var(--ink-faint); transition: color .2s; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--line-strong); color: var(--ink); }
.chip:has(input:checked) {
  background: rgba(46,107,230,.10); border-color: var(--accent); color: var(--accent-ink);
}
.chip:has(input:checked) svg { color: var(--accent); }
.chip:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(46,107,230,.18); }

/* Mode toggle */
.mode-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 5px;
}
.mode-toggle label {
  cursor: pointer; text-align: center; border-radius: 8px; padding: 10px 8px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--ink-soft); transition: all .2s var(--ease-2);
}
.mode-toggle label small { display: block; font-family: "Manrope"; font-weight: 400; font-size: .72rem; color: var(--ink-faint); }
.mode-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.mode-toggle label:has(input:checked) { background: var(--surface); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.mode-toggle label:has(input:checked) small { color: var(--accent-ink); }

/* Steppers */
.stepper {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 7px 10px;
}
.stepper button {
  width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--accent-ink); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background .18s, transform .12s, color .18s;
}
.stepper button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.stepper button:active { transform: scale(.92); }
.stepper .val {
  font-family: "Space Mono", monospace; font-weight: 700; font-size: 1.35rem; color: var(--ink);
  min-width: 60px; text-align: center;
}
.stepper .val small { display: block; font-size: .64rem; font-weight: 400; color: var(--ink-faint); font-family: "Manrope"; }

/* Chef add-on */
.addon {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-2); border: 1.5px dashed var(--line-strong);
  border-radius: 12px; padding: 12px 14px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.addon:has(input:checked) { border-style: solid; border-color: var(--accent-2); background: rgba(18,184,134,.08); }
.addon .field { display: flex; align-items: center; }
.addon .txt { flex: 1; }
.addon .txt strong { display: block; font-family: "Space Grotesk"; font-size: .96rem; }
.addon .txt span { font-size: .82rem; color: var(--ink-faint); }
.addon .price { font-family: "Space Mono", monospace; font-weight: 700; color: var(--accent-2-ink); font-size: .95rem; white-space: nowrap; }

.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 20px; height: 20px; min-width: 20px; min-height: 20px;
  padding: 0; border: 0; margin: 0;
  accent-color: var(--accent-2); cursor: pointer;
}

/* Live total ticker */
.total-card {
  background: linear-gradient(150deg, var(--ink) 0%, #16375f 100%);
  color: #fff; border-radius: 16px; padding: 20px 22px;
  position: relative; overflow: hidden;
}
.total-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,107,230,.5), transparent 70%);
}
.total-card .tc-label { position: relative; font-size: .8rem; letter-spacing: .06em; color: #b9cbe6; text-transform: uppercase; }
.total-ticker {
  position: relative;
  font-family: "Space Mono", monospace; font-weight: 700;
  font-size: clamp(2.1rem, 6vw, 3rem); line-height: 1; margin: 6px 0 2px;
  display: flex; align-items: baseline; gap: 4px;
  letter-spacing: -0.01em;
}
.total-ticker .cur { font-size: .5em; color: var(--accent-2); }
.total-ticker.pulse { animation: tickPulse .32s var(--ease); }
@keyframes tickPulse { 0% { transform: scale(1); } 40% { transform: scale(1.03); color: var(--sun); } 100% { transform: scale(1); } }
.total-card .tc-note { position: relative; font-size: .82rem; color: #9fb6d6; }
.total-card .tc-break { position: relative; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); display: grid; gap: 6px; }
.tc-break .row { display: flex; justify-content: space-between; font-size: .88rem; color: #cdddf1; }
.tc-break .row .mono { color: #fff; }
.planner-foot { padding: 0 24px 24px; }
.planner-foot .microcopy { font-size: .78rem; color: var(--ink-faint); text-align: center; margin: 12px 0 0; }

.summary-side { display: flex; flex-direction: column; gap: 16px; }

/* =========================================================
   Generic section headers
   ========================================================= */
.sec-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 58px); }
.sec-head.center { max-width: 64ch; margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin-top: 14px; }
.sec-head .lead { margin-top: 14px; }
/* Editorial rule under centered heads */
.sec-head.center h2::after {
  content: ""; display: block; width: 54px; height: 2px; border-radius: 2px;
  margin: 20px auto 0; background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.band-tint { background: var(--surface-2); }
.band-ink { background: linear-gradient(160deg, var(--ink), #16375f); color: #fff; }
.band-ink h2, .band-ink h3 { color: #fff; }
.band-ink .lead, .band-ink p { color: #c7d6ec; }
.band-ink .eyebrow { color: #7fd7bd; }
.band-ink .eyebrow::before { background: var(--accent-2); }

/* Route cards (popular ready routes) */
.route-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.route-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.route-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.route-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.route-card:hover .route-media img { transform: scale(1.05); }
.route-media .badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.94); color: var(--ink); backdrop-filter: blur(4px);
  font-family: "Space Grotesk"; font-weight: 600; font-size: .78rem;
  padding: 6px 12px; border-radius: 999px;
}
.route-media .days {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--accent); color: #fff; font-family: "Space Mono"; font-weight: 700;
  font-size: .82rem; padding: 5px 11px; border-radius: 999px;
}
.route-info { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.route-info h3 { margin-bottom: 6px; }
.route-info .stops { font-size: .88rem; color: var(--ink-faint); margin-bottom: 12px; }
.route-info .desc { font-size: .95rem; color: var(--ink-soft); margin-bottom: 16px; }
.route-price {
  margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.route-price .from { font-size: .78rem; color: var(--ink-faint); }
.route-price .amt { font-family: "Space Mono", monospace; font-weight: 700; font-size: 1.2rem; color: var(--accent-ink); }
.route-price .amt small { font-size: .64rem; color: var(--ink-faint); font-weight: 400; }

/* How it works (3-step lines) */
.steps-flow { display: flex; flex-direction: column; gap: 0; max-width: 900px; }
.step-line {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line); position: relative;
}
.step-line:last-child { border-bottom: 0; }
.step-num {
  grid-row: 1 / span 2;
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.4rem;
  color: #fff; background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-sm);
}
.step-line .st-body { min-width: 0; }
.step-line h3 { margin-bottom: 4px; }
.step-line p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.step-line .st-time {
  display: inline-block; margin-top: 8px; font-family: "Space Mono"; font-size: .76rem;
  color: var(--accent-2-ink); background: rgba(18,184,134,.10); padding: 3px 10px; border-radius: 999px;
}

/* Included grid */
.incl-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.incl-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.incl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.incl-ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); margin-bottom: 14px;
}
.incl-ico svg { width: 24px; height: 24px; }
.incl-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.incl-card p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* Pricing packages */
.price-grid {
  display: grid; gap: 22px; align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow-md); }
.price-card .tag {
  align-self: flex-start; font-family: "Space Grotesk"; font-weight: 600; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink);
  background: rgba(46,107,230,.1); padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.price-card.featured .tag { background: var(--accent); color: #fff; }
.price-card h3 { margin-bottom: 2px; }
.price-card .route-sub { font-size: .86rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amt .val { font-family: "Space Mono", monospace; font-weight: 700; font-size: 2rem; color: var(--ink); }
.price-amt .cur { font-family: "Space Mono"; font-weight: 700; font-size: 1.1rem; color: var(--accent-2-ink); }
.price-card .per { font-size: .82rem; color: var(--ink-faint); margin-bottom: 18px; }
.price-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.price-list li { display: grid; grid-template-columns: auto 1fr; gap: 9px; font-size: .92rem; color: var(--ink-soft); align-items: start; }
.price-list li svg { width: 17px; height: 17px; margin-top: 3px; flex: none; }
.price-list li.yes svg { color: var(--accent-2); }
.price-list li.no { color: var(--ink-faint); }
.price-list li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; }
.price-disclaimer { text-align: center; font-size: .82rem; color: var(--ink-faint); margin-top: 22px; }

/* Departure & payment split */
.dep-split { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .dep-split { grid-template-columns: 1.05fr .95fr; gap: 48px; } }
.dep-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/2; }
.dep-media img { width: 100%; height: 100%; object-fit: cover; }
.dep-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.dep-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.dep-list .di {
  width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--accent);
}
.dep-list .di svg { width: 21px; height: 21px; }
.dep-list h4 { margin: 2px 0 3px; font-size: 1.02rem; }
.dep-list p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* Testimonials editorial grid */
.testi-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.testi-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
/* Editorial open-quote mark */
.testi-card::before {
  content: "\201C";
  position: absolute; top: 8px; left: 20px;
  font-family: var(--font-display); font-style: italic; font-size: 3.4rem; line-height: 1;
  color: var(--accent); opacity: .18;
}
.testi-card .stars { color: var(--sun-ink); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.testi-card blockquote {
  margin: 0 0 16px; color: var(--ink); line-height: 1.62;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.08rem; letter-spacing: -0.003em;
}
.testi-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.testi-meta .who { font-family: "Space Grotesk"; font-weight: 600; font-size: .95rem; }
.testi-meta .when { font-size: .82rem; color: var(--ink-faint); }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--surface); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico {
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; color: var(--accent); position: relative;
  transition: transform .3s var(--ease), background .3s, border-color .3s, color .3s;
}
.faq-item summary .q-ico::before,
.faq-item summary .q-ico::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-item summary .q-ico::before { width: 11px; height: 2px; }
.faq-item summary .q-ico::after { width: 2px; height: 11px; transition: transform .3s var(--ease); }
.faq-item[open] summary .q-ico { background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-item[open] summary .q-ico::after { transform: scaleY(0); }
.faq-item .answer {
  height: 0; padding: 0 22px; overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] .answer { height: auto; padding-block-end: 22px; }
.faq-item .answer p { margin: 0 0 10px; color: var(--ink-soft); font-size: .96rem; }
.faq-item .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item .answer { transition: none; } }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .inner {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-2) 130%);
  color: #fff; border-radius: 24px; padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band h2 .it, .band-ink h2 .it { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 54ch; margin: 0 auto 28px; }
.cta-band .btn-primary { background: #fff; color: var(--accent-ink); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; }
.trust-strip .t {
  display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--ink-soft); font-weight: 500;
}
.trust-strip .t svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: #c7d6ec; padding: clamp(48px, 7vw, 80px) 0 28px; }
.footer-grid {
  display: grid; gap: 34px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand span { color: #fff; }
.footer-brand p { font-size: .92rem; color: #a9bdd9; max-width: 34ch; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #b9cbe6; font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-bottom: 12px; font-size: .9rem; color: #b9cbe6; align-items: start; }
.footer-contact li svg { width: 17px; height: 17px; margin-top: 3px; color: var(--accent-2); flex: none; }
.footer-contact a { color: #b9cbe6; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .84rem; color: #8ba1c1;
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a { color: #8ba1c1; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   COOKIE
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 20px 22px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-ink); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions .btn { flex: 1 1 auto; min-height: 44px; padding: 11px 16px; font-size: .92rem; }
/* Reject must carry equal visual weight to Accept (no dark pattern) */
.cookie-actions [data-consent="accept"],
.cookie-actions [data-consent="reject"] { flex: 1 1 calc(50% - 5px); }
.cookie-actions [data-consent="reject"] {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.cookie-actions [data-consent="reject"]:hover,
.cookie-actions [data-consent="reject"]:focus-visible {
  background: #0a1c33; color: #fff; border-color: #0a1c33; transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cookie-actions [data-consent="settings"] { flex: 1 1 100%; }
@media (min-width: 520px) {
  .cookie-banner { left: 24px; right: auto; max-width: 440px; }
  .cookie-actions [data-consent="accept"],
  .cookie-actions [data-consent="reject"] { flex: 1 1 auto; }
  .cookie-actions [data-consent="settings"] { flex: 1 1 auto; }
}

/* Cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; }
.cookie-modal.is-open { display: grid; place-items: center; padding: 20px; }
.cookie-modal .cm-backdrop { position: absolute; inset: 0; background: rgba(9,22,40,.6); }
.cookie-modal .cm-panel {
  position: relative; background: var(--surface); border-radius: 18px; max-width: 480px; width: 100%;
  padding: 28px; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { margin-bottom: 8px; }
.cm-row {
  display: flex; align-items: flex-start; gap: 14px; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.cm-row .cm-txt strong { display: block; font-family: "Space Grotesk"; font-size: .98rem; }
.cm-row .cm-txt span { font-size: .85rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: none; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .2s; }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s var(--ease); box-shadow: var(--shadow-sm); }
.switch input:checked + .track { background: var(--accent-2); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent); opacity: .6; }
.cm-actions { margin-top: 22px; display: flex; gap: 10px; justify-content: flex-end; }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(30px, 4vw, 48px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, #dcecfb, var(--bg));
  z-index: -1;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-top: 14px; }
.breadcrumb { font-size: .84rem; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--accent-ink); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.contact-card .cc-ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); margin-bottom: 14px;
}
.contact-card .cc-ico svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card .val { font-size: 1rem; color: var(--ink); font-weight: 500; word-break: break-word; }
.contact-card a:hover { color: var(--accent-ink); }
.contact-card .sub { font-size: .84rem; color: var(--ink-faint); margin-top: 4px; }

.hours-grid { display: grid; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  font-variant-numeric: tabular-nums;
}
.hours-row .day { font-family: "Space Grotesk"; font-weight: 500; }
.hours-row .hrs { color: var(--ink-soft); font-family: "Space Mono"; font-size: .9rem; }
.hours-row.today { border-color: var(--accent); background: rgba(46,107,230,.06); }
.hours-row.today .day { color: var(--accent-ink); }

/* Form */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: "Space Grotesk"; font-weight: 500; font-size: .9rem; color: var(--ink); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  font-family: "Manrope", sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,107,230,.15);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-family: "Manrope"; font-size: .9rem; color: var(--ink-soft); }
.field.kvkk a { color: var(--accent-ink); text-decoration: underline; }

/* Team */
.team-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-card .tphoto {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(18,184,134,.28), transparent 60%),
    linear-gradient(160deg, #16375f, var(--ink));
}
/* faint horizon line — a coastal cue */
.team-card .tphoto::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 30%; height: 1px;
  background: rgba(255,255,255,.14);
}
.team-card .tphoto svg { position: absolute; inset: 0; margin: auto; width: 38%; height: 38%; color: #fff; opacity: .5; }
.team-card .tbody { padding: 20px 22px; }
.team-card h3 { font-size: 1.12rem; margin-bottom: 2px; }
.team-card .role { font-family: "Space Grotesk"; font-size: .84rem; color: var(--accent-ink); margin-bottom: 12px; }
.team-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* Prose (legal pages) */
.prose { max-width: 820px; }
.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose .updated { font-size: .86rem; color: var(--ink-faint); margin-bottom: 30px; }

/* Tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0; border: 1px solid var(--line); border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .93rem; }
table th { font-family: "Space Grotesk"; font-weight: 600; color: var(--ink); background: var(--surface-2); }
table td { color: var(--ink-soft); }

/* Notes / activity block */
.notes-list { display: grid; gap: 14px; max-width: 620px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; align-items: start; }
.note-item .ndate { font-family: "Space Mono"; font-size: .78rem; color: var(--accent-ink); white-space: nowrap; }
.note-item .ntxt { font-size: .93rem; color: var(--ink-soft); }
.note-item .ntxt strong { color: var(--ink); font-family: "Space Grotesk"; display: block; font-size: .96rem; margin-bottom: 2px; }

/* 404 */
.notfound { min-height: min(60vh, 520px); display: grid; place-items: center; text-align: center; padding: 60px 0; }
.notfound .big { font-family: "Space Grotesk"; font-weight: 600; font-size: clamp(4rem, 16vw, 9rem); line-height: 1; color: var(--accent); letter-spacing: -0.03em; }

/* Sitemap */
.sitemap-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.sitemap-grid h3 { font-size: 1.05rem; margin-bottom: 12px; }
.sitemap-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }

/* =========================================================
   Reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 70ms); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none !important; transform: scale(1.02) !important; }
  .hero-scroll { animation: none !important; }
  .hero-copy > * { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Theme micro-hover — subtle sea/sun glow on lift
   (augments existing hover shadow; skipped for reduced-motion)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .route-card:hover,
  .price-card:hover {
    box-shadow: var(--shadow-md),
                0 22px 46px -30px rgba(18, 184, 134, .38),
                0 0 0 1px rgba(46, 107, 230, .14);
  }
  .incl-card:hover,
  .contact-card:hover,
  .testi-card:hover {
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(46, 107, 230, .14);
  }
  .team-card { transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
  .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px rgba(46, 107, 230, .14); }
  .bay-pill:hover {
    box-shadow: 0 8px 20px -12px rgba(46, 107, 230, .45);
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 84vh; align-items: flex-end; }
  .hero-photo { object-position: center 40%; }
  .hero-scroll { display: none; }
  .incl-ico, .contact-card .cc-ico { width: 42px; height: 42px; }
  .step-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 400px) {
  .bay-band .label { flex-basis: 100%; }
  .stepper .val { min-width: 48px; font-size: 1.2rem; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
