/* ============================================================
   Filo Balon Kurumsal — styles.css
   Palette: bg #0E2A2E · surface #123B40 · ink #EAF3F1
            accent #F2B233 · accent-2 #38C6A0
   Heading: Sora 700 · Body: Inter 400
   ============================================================ */

:root {
  --bg: #0E2A2E;
  --bg-2: #0a2022;
  --surface: #123B40;
  --surface-2: #164a50;
  --surface-3: #0f333799;
  --ink: #EAF3F1;
  --ink-soft: #a8c4c0;
  --ink-mute: #7ea19c;
  --accent: #F2B233;
  --accent-deep: #d69516;
  --accent-2: #38C6A0;
  --accent-2-deep: #23997a;
  --line: rgba(234, 243, 241, 0.12);
  --line-strong: rgba(234, 243, 241, 0.24);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  --header-h: 72px;
  --maxw: 1180px;
  --pad: clamp(18px, 4vw, 56px);
  --radius: 16px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* Type roles — Fraunces (editorial display), Sora (instrument/UI), Inter (body) */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-ui: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Dawn art-direction accents */
  --dawn: linear-gradient(96deg, var(--accent-2), var(--accent));
  --glow-amber: 0 30px 64px -34px rgba(242, 178, 51, .5);
  --glow-jade: 0 30px 64px -34px rgba(56, 198, 160, .46);
  --on-accent: #1a1305;
  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:
    radial-gradient(115% 70% at 100% -8%, rgba(242, 178, 51, .07), transparent 58%),
    radial-gradient(85% 55% at -8% 4%, rgba(56, 198, 160, .055), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}
/* keep instrument/label headings on the UI grotesque */
.config-form h2, .footer-col h4, .cookie-banner h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -0.005em;
}
/* editorial italic keyword accents inside headings */
:where(.sec-head, .cta-band, .page-hero, .manifesto, .showcase-card) h1 em,
:where(.sec-head, .cta-band, .page-hero, .manifesto, .showcase-card) h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { position: relative; }
.section { padding: clamp(64px, 9.5vw, 128px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 2px;
}
.sec-head.center .eyebrow { justify-content: center; }

.lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #17110a;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 4000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  background: rgba(14, 42, 46, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), height .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 32, 34, 0.97);
  height: 62px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand b { color: var(--accent); font-weight: 700; }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right .26s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { right: 0; }

.nav-cta {
  background: var(--accent);
  color: #17110a !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: #ffc74d;
  color: #17110a !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(242, 178, 51, .7);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(18, 59, 64, .92);
  cursor: pointer;
  z-index: 1100;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 8px 20px -12px rgba(242, 178, 51, .6);
}
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #0c2528;
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 10px; }
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--accent);
  color: #17110a !important;
  text-align: center;
  border-radius: 12px;
  border-bottom: none;
  padding: 15px !important;
}
.drawer .drawer-cta:hover { background: #ffc74d; color: #17110a !important; padding-left: 15px; }
.drawer-meta {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink-mute);
  font-size: .85rem;
  line-height: 1.7;
}
.drawer-meta a { font-size: .85rem; font-family: 'Inter'; font-weight: 400; border: none; padding: 2px 0; color: var(--ink-soft); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* offset anchor targets so the fixed header never covers them */
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #17110a;
  box-shadow: 0 14px 32px -18px rgba(242, 178, 51, .8);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #ffc74d;
  color: #17110a;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -18px rgba(242, 178, 51, .9);
}
.btn-primary:active::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.5), transparent 60%);
  animation: burnerFlash .5s var(--ease);
}
@keyframes burnerFlash { from { opacity: .9; transform: scale(.4); } to { opacity: 0; transform: scale(1.6); } }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ============================================================
   HERO — split-asymmetric-tool
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 20vh, 220px) 0 clamp(48px, 8vh, 92px);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.07);
  will-change: transform;
  animation: heroKen 20s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.6%, -2.2%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,20,22,.58) 0%, rgba(6,20,22,.14) 30%, rgba(6,20,22,.60) 74%, rgba(6,20,22,.92) 100%),
    linear-gradient(90deg, rgba(6,20,22,.72) 0%, rgba(6,20,22,.18) 52%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-inner { max-width: 760px; }
.hero-eyebrow { color: var(--accent); margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem, 7.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .45);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.word-span { white-space: nowrap; }
.hero-sub {
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 32px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .55);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero .btn-ghost { border-color: rgba(234, 243, 241, .38); backdrop-filter: blur(2px); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 42px;
  align-items: baseline;
  max-width: 660px;
  padding-top: 26px;
  border-top: 1px solid rgba(234, 243, 241, .2);
}
.hero-stats .hs { display: flex; flex-direction: column; gap: 3px; }
.hero-stats .hs b {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1;
  color: var(--ink);
}
.hero-stats .hs span {
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

/* Fleet configurator (moved below hero) */
.config-section .config-wrap { max-width: 920px; margin: 0 auto; }

/* ============================================================
   CONFIGURATOR PANEL (live tool)
   ============================================================ */
.config-panel {
  background: linear-gradient(160deg, rgba(18, 59, 64, .95), rgba(12, 40, 43, .95));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 30px);
}
.config-form { min-width: 0; }
.config-form h2 {
  font-size: 1.16rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.config-form h2 svg { width: 20px; height: 20px; color: var(--accent); }
.config-hint { font-size: .82rem; color: var(--ink-mute); margin-bottom: 20px; }

.people-control { margin-bottom: 22px; }
.people-control label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.people-num {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-btn {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1.4rem;
  font-family: 'Sora';
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .12s var(--ease);
}
.step-btn:hover { background: var(--surface-3); border-color: var(--accent); }
.step-btn:active { transform: scale(.92); }
#peopleInput {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 8px 10px;
  -moz-appearance: textfield;
}
#peopleInput::-webkit-outer-spin-button, #peopleInput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#peopleInput:focus { border-color: var(--accent); outline: none; }

.people-range {
  width: 100%;
  margin: 18px 0 6px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 20%), var(--surface-2) var(--fill, 20%));
  cursor: pointer;
}
.people-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #0c2528;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  cursor: pointer;
}
.people-range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #0c2528;
  cursor: pointer;
}
.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--ink-mute);
}

.extra-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-3);
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.extra-toggle:hover { border-color: var(--accent-2); }
.extra-toggle input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.extra-toggle .et-body strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  color: var(--ink);
}
.extra-toggle .et-body span { font-size: .78rem; color: var(--ink-mute); }
.extra-toggle .et-price { margin-left: auto; font-family: 'Sora'; font-weight: 600; color: var(--accent-2); font-size: .84rem; white-space: nowrap; }

/* Summary side */
.config-summary {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.cs-label {
  font-family: 'Sora';
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.capacity-block { margin-bottom: 18px; }
.cap-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.cap-row .k { font-size: .84rem; color: var(--ink-soft); }
.cap-row .v { font-family: 'Sora'; font-weight: 700; color: var(--ink); }
.cap-row .v b { color: var(--accent); font-size: 1.35rem; }

.balloon-bars {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 6px 0 4px;
}
.bcap {
  position: relative;
  flex: 1 1 42px;
  min-width: 34px;
  height: 46px;
  border-radius: 8px 8px 4px 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bcap i {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  transition: height .55s var(--ease);
}
.bcap b {
  position: absolute;
  top: 4px; left: 0; right: 0;
  text-align: center;
  font-family: 'Sora';
  font-weight: 700;
  font-size: .66rem;
  color: var(--ink);
  z-index: 2;
  mix-blend-mode: difference;
}
.bcap.is-empty { opacity: .35; }
.bars-note { font-size: .72rem; color: var(--ink-mute); margin-top: 4px; }

.summary-total {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
}
.st-tier { font-size: .78rem; color: var(--ink-mute); margin-bottom: 4px; }
.st-price {
  font-family: 'Sora';
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  color: var(--ink);
  line-height: 1.05;
}
.st-price small { font-size: .8rem; font-weight: 500; color: var(--ink-soft); }
#summaryTotal { color: var(--accent); }
.st-disc { font-size: .72rem; color: var(--ink-mute); margin-top: 6px; }
.summary-total .btn { margin-top: 16px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .b-drift, .hero-fog, .float-y { animation: none !important; }
  .hero-photo img { animation: none !important; transform: scale(1.02) !important; }
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head { max-width: 60ch; margin-bottom: clamp(38px, 5.5vw, 60px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(1.85rem, 4.6vw, 3.35rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 22ch;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.sec-head.center h2 { max-width: 24ch; margin-left: auto; margin-right: auto; }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 56ch; margin-bottom: 0; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   EXTRAS (branding / catering) cards
   ============================================================ */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}
.xcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(56, 198, 160, .05), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
/* dawn hairline that ignites on hover */
.xcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dawn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.xcard:hover {
  transform: translateY(-7px);
  border-color: var(--accent-2);
  box-shadow: var(--glow-jade);
}
.xcard:hover::before { transform: scaleX(1); }
.xicon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(242, 178, 51, .13);
  border: 1px solid rgba(242, 178, 51, .22);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .32s var(--ease), background .32s var(--ease);
}
.xcard:hover .xicon { transform: translateY(-2px) rotate(-4deg); }
.xicon svg { width: 27px; height: 27px; }
.xcard h3 { font-size: 1.32rem; font-weight: 600; margin-bottom: 8px; }
.xcard p { color: var(--ink-soft); font-size: .93rem; margin: 0 0 16px; }
.xcard .x-tag {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .01em;
  color: var(--accent-2);
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(56, 198, 160, .1);
  border: 1px solid rgba(56, 198, 160, .18);
}

/* ============================================================
   GROUP FLIGHT NOTES (timeline)
   ============================================================ */
.notes-band {
  background: linear-gradient(180deg, #0b2528, #0E2A2E);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 880px;
}
/* continuous flight-path line behind the stations */
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 44px; bottom: 44px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.tl-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.tl-step:last-child { border-bottom: none; }
.tl-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 6px var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tl-step:hover .tl-num {
  border-color: var(--accent);
  transform: scale(1.06);
}
.tl-body h3 { font-size: 1.14rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tl-body .tl-when {
  font-family: 'Inter';
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--accent-2);
  background: rgba(56,198,160,.1);
  padding: 2px 10px;
  border-radius: 999px;
}
.tl-body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: clamp(44px, 6vw, 64px);
}
.stat {
  position: relative;
  text-align: center;
  padding: 30px 18px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 22%; right: 22%;
  height: 2px;
  background: var(--dawn);
  opacity: .55;
}
.stat:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.stat .num {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat .lbl { font-size: .84rem; color: var(--ink-soft); margin-top: 10px; }

/* ============================================================
   PRICING TIERS
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: var(--glow-amber); }
.pcard.featured {
  border-color: var(--accent);
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(242, 178, 51, .1), transparent 60%),
    var(--surface);
  box-shadow: 0 34px 70px -38px rgba(242, 178, 51, .55);
}
.pcard.featured::before {
  content: "En Çok Tercih";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -12px rgba(242, 178, 51, .8);
}
.pcard .p-tier {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pcard .p-range {
  font-family: var(--font-ui);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.pcard .p-amt {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pcard .p-amt small { font-size: .8rem; color: var(--ink-soft); font-weight: 500; display: block; margin-top: 6px; letter-spacing: 0; font-family: var(--font-body); }
.pcard ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 10px; }
.pcard li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-soft); align-items: flex-start; }
.pcard li svg { width: 17px; height: 17px; color: var(--accent-2); flex-shrink: 0; margin-top: 3px; }
.pcard li.no { color: var(--ink-mute); }
.pcard li.no svg { color: var(--ink-mute); }
.pcard .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--ink-mute); font-size: .84rem; margin-top: 26px; }

/* ============================================================
   MANIFESTO / quote
   ============================================================ */
.manifesto {
  background:
    radial-gradient(120% 120% at 8% -10%, rgba(255, 214, 122, .5), transparent 55%),
    var(--accent);
  color: #17110a;
  overflow: hidden;
}
.manifesto blockquote {
  position: relative;
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-optical-sizing: auto;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #16100a;
}
.manifesto blockquote::before {
  content: "\201C";
  position: absolute;
  top: -.34em; left: -.06em;
  font-size: 2.1em;
  line-height: 1;
  color: rgba(23, 17, 10, .16);
  pointer-events: none;
}
.manifesto .m-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.manifesto .m-media {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(23, 17, 10, .55);
}
.manifesto .m-grid > blockquote { grid-column: 2; grid-row: 1; align-self: end; }
.manifesto .m-grid > div { grid-column: 2; grid-row: 2; align-self: start; }
.manifesto .m-media img { width: 100%; height: 100%; object-fit: cover; }
.manifesto p { color: #33280f; font-size: 1.04rem; margin: 0; }
.manifesto .m-sig { font-family: var(--font-ui); font-weight: 700; margin-top: 18px; }
.manifesto .m-sig span { display: block; font-weight: 400; font-family: var(--font-body); font-size: .85rem; color: #4a3b19; margin-top: 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
}
.tcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tcard::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5.2rem;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  pointer-events: none;
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--glow-amber);
}
.tcard .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.tcard p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.tcard .who {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .9rem;
}
.tcard .who span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .8rem; color: var(--ink-mute); margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .24s var(--ease), background .24s var(--ease);
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--dawn);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); background: var(--surface-2); }
.faq-item[open] { border-color: var(--accent-2); }
.faq-item[open]::before { transform: scaleY(1); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(18px, 3vw, 28px);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform .32s var(--ease);
  color: var(--accent);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height .36s var(--ease), padding-block-end .36s var(--ease);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { margin: 0; font-size: .95rem; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(56, 198, 160, .12), transparent 60%),
    linear-gradient(140deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: clamp(44px, 7vw, 76px) clamp(28px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(242,178,51,.22), transparent 65%);
  pointer-events: none;
}
/* dotted flight-path arc across the band */
.cta-band::before {
  content: "";
  position: absolute;
  left: -5%; right: -5%; top: 32%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 13px);
  opacity: .5;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 500; letter-spacing: -0.02em; }
.cta-band p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 76px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-mute); font-size: .9rem; max-width: 34ch; }
.footer-col h4 {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: .9rem; margin-bottom: 10px; transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(30px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 90% at 88% 0%, rgba(242,178,51,.12), transparent 60%),
    linear-gradient(180deg, #0a2024, #0E2A2E);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.chan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.chan-card:hover { transform: translateY(-3px); border-color: var(--accent-2); box-shadow: 0 20px 40px -28px rgba(56,198,160,.5); }
.chan-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(242,178,51,.12);
  color: var(--accent);
  margin-bottom: 14px;
}
.chan-ic svg { width: 24px; height: 24px; }
.chan-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.chan-card a, .chan-card .val { color: var(--accent-2); font-weight: 600; font-size: .96rem; word-break: break-word; }
.chan-card .sub { color: var(--ink-mute); font-size: .8rem; margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hour-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.hour-cell.today { border-color: var(--accent); background: rgba(242,178,51,.08); }
.hour-cell .d { font-family: 'Sora'; font-weight: 600; font-size: .88rem; }
.hour-cell .t { font-size: .84rem; color: var(--ink-soft); }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span, .field > label > span { font-family: 'Sora'; font-weight: 500; font-size: .84rem; color: var(--ink-soft); }
.field label { display: flex; flex-direction: column; gap: 7px; }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #0b2124;
}
.field select { cursor: pointer; }
.field.kvkk, label.kvkk {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: .86rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-wrap button[type="submit"] { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.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 { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
table th { font-family: 'Sora'; font-weight: 600; color: var(--ink); background: var(--surface-2); }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: none; }

/* ============================================================
   PROSE (legal / about pages)
   ============================================================ */
.prose { max-width: 760px; overflow-wrap: anywhere; }
.prose a { word-break: break-word; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; color: var(--accent-2); }
.prose p, .prose li { color: var(--ink-soft); font-size: .98rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* about team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}
.person .avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-2), var(--accent));
  color: #0c2528;
  display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 16px;
}
.person h3 { font-size: 1.1rem; margin-bottom: 2px; }
.person .role { color: var(--accent); font-size: .84rem; font-weight: 600; margin-bottom: 12px; }
.person p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

.float-y { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* thank you */
.ty-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.ty-inner { max-width: 560px; }
.ty-inner .ty-ic { width: 82px; height: 82px; margin: 0 auto 24px; color: var(--accent-2); }
.ty-inner h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 14px; }
.ty-inner p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 28px; }

/* 404 */
.nf-wrap { min-height: 66vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.nf-wrap .code { font-family: 'Sora'; font-weight: 700; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: 1; letter-spacing: -0.04em; }

/* cookie */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: #0c2528;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.02rem; margin-bottom: 8px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  font-family: 'Sora'; font-weight: 600; font-size: .88rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: #17110a; border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { background: #ffc74d; color: #17110a; }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover { border-color: var(--accent-2); color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.6);
}
.cookie-modal.is-open { display: grid; }
.cm-inner {
  background: #0c2528;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 28px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.cm-inner h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cm-inner > p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 20px; }
.cm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.cm-row .cm-txt strong { display: block; font-family: 'Sora'; font-size: .95rem; }
.cm-row .cm-txt span { font-size: .8rem; color: var(--ink-mute); }
.switch { position: relative; width: 48px; height: 27px; flex-shrink: 0; margin-top: 3px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.switch .track::before {
  content: "";
  position: absolute;
  left: 3px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform .2s var(--ease);
}
.switch input:checked + .track { background: var(--accent-2); }
.switch input:checked + .track::before { transform: translateX(20px); background: #0c2528; }
.switch input:disabled + .track { opacity: .55; cursor: not-allowed; }
.cm-inner .btn { margin-top: 22px; width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .hero { min-height: 82vh; align-items: flex-end; }
  .config-panel { max-width: 620px; margin: 0 auto; }
  .manifesto .m-grid { grid-template-columns: 1fr; }
  .manifesto .m-media,
  .manifesto .m-grid > blockquote,
  .manifesto .m-grid > div { grid-column: 1; grid-row: auto; align-self: auto; }
  .manifesto blockquote { max-width: none; }
}
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 680px) {
  :root { --header-h: 64px; }
  .config-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tl-step { grid-template-columns: 46px 1fr; gap: 16px; }
  .tl-num { width: 46px; height: 46px; font-size: 1.05rem; }
  .timeline::before { left: 22px; }
  .xcard, .pcard { padding: 24px 22px; }
  .cookie-actions button { flex: 1 1 100%; }
  .showcase { min-height: clamp(320px, 62vh, 460px); }
}
@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.3rem); }
  .brand small { display: none; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .nav-toggle, .cookie-banner, .cookie-modal, .hero-photo, .hero-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}

.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}

/* ============================================================
   DAWN-FLEET ELEVATION LAYER
   ============================================================ */

/* Configurator panel — dawn crown + summary polish */
.config-panel { position: relative; overflow: hidden; }
.config-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--dawn);
  opacity: .85;
}
.cs-label { font-family: var(--font-ui); }
.config-summary { position: relative; }
.summary-total .st-price { letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* Section hairline rhythm — subtle horizon dividers between stacked light sections */
.section + .section:not(.notes-band):not(.manifesto)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--pad));
  max-width: var(--maxw);
  height: 1px;
  background: var(--line);
}

/* ---- Editorial showcase band (fleet at sunrise) ---- */
.showcase {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(360px, 56vh, 560px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg-2);
}
.showcase-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,20,22,.32) 0%, rgba(6,20,22,.05) 32%, rgba(6,20,22,.62) 78%, rgba(10,32,34,.94) 100%),
    linear-gradient(90deg, rgba(6,20,22,.7) 0%, transparent 60%);
}
.showcase .container { width: 100%; padding-top: clamp(40px, 8vw, 88px); padding-bottom: clamp(32px, 6vw, 64px); }
.showcase-card { max-width: 620px; }
.showcase-card .eyebrow { color: var(--accent); }
.showcase-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.showcase-quote em { font-style: italic; color: var(--accent); }
.showcase-note {
  color: var(--ink);
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
}

@media (prefers-reduced-motion: no-preference) {
  .showcase-media img { transition: transform 1.2s var(--ease); will-change: transform; }
  .showcase:hover .showcase-media img { transform: scale(1.04); }
}

/* ---- Inner pages: page-hero, prose, team, channels ---- */
.page-hero { border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 14px);
  opacity: .4;
  pointer-events: none;
}

.prose h2 {
  font-weight: 500;
  letter-spacing: -0.015em;
  padding-left: 16px;
  position: relative;
}
.prose h2::before {
  content: "";
  position: absolute;
  left: 0; top: .18em; bottom: .18em;
  width: 3px;
  border-radius: 3px;
  background: var(--dawn);
}
.prose h3 { font-family: var(--font-ui); font-weight: 600; letter-spacing: 0; }

.person {
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.person::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dawn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.person:hover { transform: translateY(-6px); border-color: var(--accent-2); box-shadow: var(--glow-jade); }
.person:hover::before { transform: scaleX(1); }
.person .avatar {
  border-radius: 18px;
  box-shadow: 0 14px 30px -18px rgba(56, 198, 160, .6);
}
.person h3 { font-weight: 600; }

.chan-card { position: relative; overflow: hidden; }
.chan-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dawn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.chan-card:hover::before { transform: scaleX(1); }
.chan-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; }

.hour-cell { transition: border-color .25s var(--ease), transform .25s var(--ease); }
.hour-cell:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.hour-cell.today { box-shadow: inset 0 0 0 1px rgba(242, 178, 51, .4); }

/* Notes-band media frame */
.notes-media {
  margin: 0 0 clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 36px 70px -44px rgba(0, 0, 0, .8);
  aspect-ratio: 16 / 8;
}
.notes-media img { width: 100%; height: 100%; object-fit: cover; }

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #17110a !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%;overflow-x:auto}
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)){min-width:0}
table{max-width:100%}

/* ============================================================
   EDITORIAL ELEVATION LAYER v2 — dawn-fleet award pass
   Additive only. Preserves hero, structure, guards, motion.
   ============================================================ */

/* ---- Section heads: horizon kicker + measured rhythm ---- */
.sec-head h2 { position: relative; }
.sec-head.center h2::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin: 22px auto 0;
  background: var(--dawn);
  border-radius: 2px;
  opacity: .8;
}
.sec-head:not(.center) p { position: relative; }

/* ---- EXTRAS: numbered editorial cards, two-up asymmetry ---- */
.extras-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) { .extras-grid { grid-template-columns: 1fr; } }

.xcard { padding-top: 32px; }
.xcard .x-idx {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: .11;
  pointer-events: none;
  transition: opacity .38s var(--ease), transform .38s var(--ease);
}
.xcard:hover .x-idx { opacity: .2; transform: translateY(-3px) scale(1.04); }
.xcard .x-kicker {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.xcard h3 { font-size: clamp(1.3rem, 2.4vw, 1.5rem); }
.xcard p { font-size: .96rem; max-width: 42ch; }

/* ---- Premium image reveal: still-frame that eases into motion ---- */
@media (prefers-reduced-motion: no-preference) {
  .notes-media, .manifesto .m-media { overflow: hidden; }
  .notes-media img, .manifesto .m-media img {
    transform: scale(1.015);
    transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
    filter: saturate(.96);
  }
  .notes-media:hover img, .manifesto .m-media:hover img {
    transform: scale(1.05);
    filter: saturate(1.04);
  }
}

/* ---- Testimonials: attributed rule with dawn tick ---- */
.tcard .who { position: relative; padding-left: 16px; }
.tcard .who::before {
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 2px;
  width: 3px;
  border-radius: 3px;
  background: var(--dawn);
}

/* ---- Pricing featured: quiet elevation on the recommended tier ---- */
.pcard.featured .p-amt { color: var(--accent); }
.pcard.featured:hover { box-shadow: 0 40px 82px -40px rgba(242, 178, 51, .62); }

/* ---- Manifesto signature: hairline flourish ---- */
.manifesto .m-sig { position: relative; padding-top: 18px; }
.manifesto .m-sig::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: rgba(23, 17, 10, .35);
  border-radius: 2px;
}

/* ---- Page-hero lead: editorial first-line emphasis ---- */
.page-hero p.reveal:first-of-type,
.page-hero > .container > p { color: var(--ink-soft); }
.page-hero h1 em { color: var(--accent); font-style: italic; }

/* ---- Timeline node: dawn ignition on the active/hovered station ---- */
.tl-step:hover .tl-num {
  background: radial-gradient(120% 120% at 50% 0%, rgba(242,178,51,.18), var(--surface));
  color: var(--accent);
}

/* ---- Channel cards (contact): numbered icon plate polish ---- */
.chan-ic { transition: transform .3s var(--ease), background .3s var(--ease); }
.chan-card:hover .chan-ic { transform: translateY(-2px) rotate(-3deg); background: rgba(242,178,51,.2); }

/* ---- Overflow re-guard for new decorative numerals ---- */
.xcard { overflow: hidden; }
