/* ============================================================
   Yükseliş XC — çok günlü XC termik turları
   Design DNA: derin orman-yeşili gökyüzü, termik yükseliş okları,
   GPS-track kesik çizgi, yatay gün-gün timeline.
   ============================================================ */

:root {
  --bg: #0F1A14;
  --surface: #16241C;
  --surface-2: #1D3025;
  --surface-3: #24402F;
  --ink: #EAF3EC;
  --ink-soft: #A9C2B2;
  --ink-mute: #7E9C88;
  --accent: #4ADE80;
  --accent-2: #FACC15;
  --line: rgba(234, 243, 236, 0.12);
  --line-strong: rgba(234, 243, 236, 0.24);
  --header-h: 74px;
  --maxw: 1240px;
  --pad: clamp(16px, 3.5vw, 44px);
  --r: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  /* Two-tier type system: editorial serif for statements, technical sans for UI/labels */
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  --glow: 0 24px 48px -30px rgba(74, 222, 128, 0.55);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -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: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Technical sans layer: card titles, labels, UI */
h3, h4, h5, .display, .eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 .5em;
}
/* Editorial serif layer: page & section statements */
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.017em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
/* italic accent word inside any statement heading */
h1 em, h2 em, .hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color .24s var(--ease2); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.tabular, time, .price, .day-num, .stat-num { font-variant-numeric: tabular-nums; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 11px);
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  font-weight: 700;
  transition: top .2s var(--ease2);
}
.skip-link:focus { top: 12px; color: var(--bg); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   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(15, 26, 20, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: height .24s var(--ease2), background .24s var(--ease2), box-shadow .24s var(--ease2);
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(13, 22, 17, 0.98);
  box-shadow: 0 8px 26px -16px rgba(0, 0, 0, 0.7);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand .brand-sub {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-top: 3px;
}
.brand b { display: block; line-height: 1; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}
.nav-desktop a {
  position: relative;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color .2s var(--ease2);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease2), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: #0C1610;
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 16px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--accent);
  color: var(--bg) !important;
  text-align: center;
  border-radius: 999px;
  padding: 15px;
  font-weight: 700;
  border: none;
}
.drawer .drawer-cta:hover { background: var(--accent-2); color: var(--bg) !important; }
.drawer-meta {
  margin-top: auto;
  color: var(--ink-mute);
  font-size: .85rem;
  border: none;
  padding-top: 20px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   MAIN / SECTIONS
   ============================================================ */
main { padding-top: var(--header-h); }

.section { padding: clamp(60px, 8.5vw, 120px) 0; position: relative; }
.section > .container { position: relative; z-index: 1; }
.section-head { max-width: 760px; margin-bottom: clamp(30px, 4.4vw, 60px); }
.section-head h2 { max-width: 18ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center h2 { max-width: none; }
.section-head p { color: var(--ink-soft); font-size: clamp(1rem, 1.25vw, 1.12rem); max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

.band { background: var(--surface); border-block: 1px solid var(--line); }
.band-accent {
  background:
    radial-gradient(1000px 400px at 80% -10%, rgba(74, 222, 128, 0.10), transparent 60%),
    var(--surface-2);
  border-block: 1px solid var(--line);
}

/* GPS dashed divider motif */
.gps-rule {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 20px);
  opacity: .5;
  border: 0;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .24s var(--ease2), color .24s var(--ease2), box-shadow .24s var(--ease2);
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(74, 222, 128, 0.6);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn .arw { transition: transform .24s var(--ease); }
.btn:hover .arw { transform: translateX(4px) translateY(-3px); }

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
}
.trust li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 600;
}
.trust svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(96px, 17vh, 168px) clamp(48px, 8vh, 96px);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0A140E;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  will-change: transform;
  animation: kenburns 22s var(--ease2) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-1.4%, -2%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9,15,11,.88) 0%, rgba(9,15,11,.60) 42%, rgba(9,15,11,.14) 78%),
    linear-gradient(180deg, rgba(9,15,11,.42) 0%, rgba(9,15,11,.20) 38%, rgba(9,15,11,.90) 100%);
}

.hero-content { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--accent); }

.hero-title {
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.06;
  font-size: clamp(2rem, 7.3vw, 4.4rem);
  margin: 0 0 .48em;
  max-width: 16ch;
  text-shadow: 0 4px 34px rgba(0, 0, 0, .55);
}
.hero-title .word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(26px);
  animation: heroWordUp .75s var(--ease) both;
  animation-delay: calc(var(--wi, 0) * 60ms + 120ms);
}
.hero-title .hero-em { font-style: italic; color: var(--accent); }
@keyframes heroWordUp { to { opacity: 1; transform: none; } }
/* belt-and-suspenders: force visible even if animation never runs */
.hero-title.is-in .word,
html.no-js .hero-title .word { opacity: 1; transform: none; animation: none; }

.hero-sub {
  max-width: 48ch;
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  color: var(--ink-soft);
  margin-bottom: 30px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 44px);
  margin: clamp(30px, 5vh, 44px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  list-style: none;
  max-width: 760px;
}
.hero-stats li { min-width: 0; }
.hero-stats .stat-num {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat-lbl { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: 7px; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: scale(1.04); }
  .hero-title .word { opacity: 1; transform: none; animation: none; }
}

/* Horizontal day timeline */
.route-preview { padding-block: clamp(44px, 6vw, 72px); }
.timeline-wrap {
  position: relative;
  z-index: 2;
}
.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.timeline-head .tl-title { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.timeline-head .tl-hint { font-size: .78rem; color: var(--ink-mute); display: inline-flex; gap: 7px; align-items: center; }
.timeline-head .tl-hint svg { width: 15px; height: 15px; }

/* thermal progress track */
.tl-track {
  position: relative;
  height: 3px;
  margin: 0 4px 16px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  border-radius: 3px;
}
.tl-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  width: 0%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transition: width .1s linear;
}
.tl-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  color: var(--bg);
  background: var(--accent-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 5px rgba(250, 204, 21, .18);
  transition: left .1s linear;
}
.tl-arrow svg { width: 16px; height: 16px; }

.timeline {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.timeline::-webkit-scrollbar { height: 8px; }
.timeline::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 8px; }
.timeline::-webkit-scrollbar-track { background: transparent; }

.day-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(230px, 74vw, 280px);
  background: rgba(22, 36, 28, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  position: relative;
  transition: transform .24s var(--ease), border-color .24s var(--ease2);
}
.day-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.day-card .day-num {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.day-card h3 { font-size: 1.18rem; margin: 6px 0 4px; }
.day-card .day-loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--ink-mute); margin-bottom: 12px;
}
.day-card .day-loc svg { width: 14px; height: 14px; color: var(--accent); }
.day-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.day-card .day-alt {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.day-card .day-alt svg { width: 15px; height: 15px; animation: riseArrow 2.4s var(--ease2) infinite; }
@keyframes riseArrow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s 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; }
  .hero-photo, .day-card .day-alt svg { animation: none !important; }
}

/* ============================================================
   ROTALAR (regions) — editorial split cards
   ============================================================ */
.rota-list { display: grid; gap: 20px; }
.rota {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.rota:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.rota:nth-child(even) .rota-media { order: 2; }
.rota-media {
  position: relative;
  align-self: stretch;
  min-height: 260px;
  overflow: hidden;
}
.rota-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.rota:hover .rota-media img { transform: scale(1.05); }
.rota-media .rota-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(15,26,20,.82);
  color: var(--accent);
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line);
}
.rota-body { padding: clamp(22px, 3vw, 40px); }
.rota-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.rota-body p { color: var(--ink-soft); }
.rota-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.rota-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 999px;
}
.rota-meta svg { width: 14px; height: 14px; color: var(--accent); }

/* ============================================================
   DAHIL (included) — icon feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  transition: transform .24s var(--ease), border-color .24s var(--ease2), box-shadow .24s var(--ease2);
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -26px rgba(74, 222, 128, 0.5);
}
.feature .ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(74,222,128,.18), rgba(250,204,21,.12));
  border: 1px solid var(--line);
  margin-bottom: 16px;
  color: var(--accent);
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* Included / excluded lists */
.incl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.incl-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
}
.incl-col h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.incl-col ul { margin: 14px 0 0; padding: 0; list-style: none; }
.incl-col li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); font-size: .93rem;
}
.incl-col li:last-child { border-bottom: 0; }
.incl-col li svg { width: 18px; height: 18px; margin-top: 3px; }
.incl-col.yes li svg { color: var(--accent); }
.incl-col.no li svg { color: var(--ink-mute); }

/* ============================================================
   PROGRAM SECONDARY — table
   ============================================================ */
.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: 12px;
}
.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: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
table th {
  background: var(--surface-2);
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
table td { color: var(--ink-soft); }
table tbody tr:hover td { background: rgba(74,222,128,.05); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  transition: transform .24s var(--ease), border-color .24s var(--ease2);
}
.plan:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(74,222,128,.08), var(--surface) 40%);
  box-shadow: 0 26px 50px -30px rgba(74,222,128,.5);
}
.plan .plan-badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--accent-2); color: var(--bg);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan .plan-name { font-family: "Trebuchet MS", sans-serif; font-weight: 700; font-size: 1.3rem; }
.plan .plan-len { color: var(--ink-mute); font-size: .88rem; margin-bottom: 16px; }
.plan .price {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--ink);
  line-height: 1;
}
.plan .price small { font-size: .9rem; font-weight: 600; color: var(--ink-mute); }
.plan .plan-note { font-size: .82rem; color: var(--accent); margin: 8px 0 18px; font-weight: 600; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan li {
  display: grid; grid-template-columns: 18px 1fr; gap: 9px;
  padding: 8px 0; font-size: .9rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.plan li:last-child { border-bottom: 0; }
.plan li svg { width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; }
.price-disclaimer { margin-top: 18px; font-size: .82rem; color: var(--ink-mute); }

/* ============================================================
   KADRO (team)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .24s var(--ease), border-color .24s var(--ease2);
}
.member:hover { transform: translateY(-5px); border-color: var(--accent); }
.member-photo { aspect-ratio: 5 / 6; overflow: hidden; background: var(--surface-2); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.member:hover .member-photo img { transform: scale(1.05); }
.member-body { padding: 22px; }
.member-body h3 { font-size: 1.22rem; margin-bottom: 2px; }
.member .role { color: var(--accent); font-size: .84rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 12px; }
.member p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.member .creds { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.member .creds span {
  font-size: .74rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 999px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.tst {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  transition: transform .26s var(--ease), border-color .24s var(--ease2), box-shadow .24s var(--ease2);
}
.tst:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 22px 44px -28px rgba(74, 222, 128, 0.45);
}
.tst .quote-mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0; color: var(--accent); opacity: .5; transition: opacity .26s var(--ease2), transform .26s var(--ease); }
.tst:hover .quote-mark { opacity: .8; transform: translateY(-2px); }
.tst p { color: var(--ink); font-size: .96rem; }
.tst .tst-crit { color: var(--ink-mute); font-size: .86rem; font-style: italic; }
.tst .tst-meta { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.tst .tst-name { font-weight: 700; font-family: "Trebuchet MS", sans-serif; }
.tst .tst-when { color: var(--ink-mute); font-size: .82rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery a { display: block; border-radius: 12px; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 1/1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .24s var(--ease2);
}
.faq-item:hover, .faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  transition: color .2s var(--ease2);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:hover .plus { border-color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: transform .3s var(--ease), border-color .24s var(--ease2);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 11px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 11px; transition: transform .3s var(--ease); }
.faq-item[open] summary .plus { transform: rotate(180deg); border-color: var(--accent); }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height .36s var(--ease2), padding-block-end .36s var(--ease2);
}
.faq-item > .answer p { color: var(--ink-soft); margin: 0 0 12px; }
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 10%, rgba(74,222,128,.16), transparent 60%),
    radial-gradient(600px 300px at 85% 90%, rgba(250,204,21,.12), transparent 60%),
    var(--surface-2);
  text-align: center;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 60px);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field > span, .field > label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: inherit;
  font-size: .96rem;
  transition: border-color .2s var(--ease2), box-shadow .2s var(--ease2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,222,128,.18);
}
.field.kvkk, .kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.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-card .btn { margin-top: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform .24s var(--ease), border-color .24s var(--ease2), box-shadow .24s var(--ease2);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 18px 36px -26px rgba(74,222,128,.5); }
.contact-card .cc-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(74,222,128,.18), rgba(250,204,21,.1));
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card .cc-ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 4px; }
.contact-card a, .contact-card .cc-val { color: var(--ink); font-weight: 600; word-break: break-word; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--accent); }
.contact-card .cc-sub { color: var(--ink-mute); font-size: .84rem; margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hours-grid .day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-variant-numeric: tabular-nums;
}
.hours-grid .day.today { border-color: var(--accent); background: rgba(74,222,128,.07); }
.hours-grid .day .d { font-weight: 700; font-size: .84rem; color: var(--ink); }
.hours-grid .day .h { color: var(--ink-soft); font-size: .88rem; margin-top: 3px; }

/* ============================================================
   DOC PAGES
   ============================================================ */
.doc { max-width: 860px; margin-inline: auto; }
.doc h2 { margin-top: 40px; }
.doc h3 { margin-top: 26px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.page-hero {
  background:
    radial-gradient(800px 300px at 80% -20%, rgba(74,222,128,.12), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 8vw, 96px) 0 clamp(34px, 5vw, 56px);
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; font-size: 1.06rem; }

/* thank-you */
.thanks {
  min-height: min(60vh, 520px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--pad);
}
.thanks .thanks-ico {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(74,222,128,.2), rgba(250,204,21,.12));
  border: 1px solid var(--accent);
  color: var(--accent);
}
.thanks .thanks-ico svg { width: 42px; height: 42px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0B140F;
  border-top: 1px solid var(--line);
  padding: clamp(46px, 6vw, 72px) 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 50px);
}
.footer-col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); font-size: .93rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: var(--ink-soft); font-size: .92rem; max-width: 34ch; margin: 14px 0; }
.footer-brand .brand { color: var(--ink); }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-soft); font-size: .9rem; margin-bottom: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-contact a { word-break: break-word; overflow-wrap: anywhere; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-mute); font-size: .82rem;
}
.footer-bottom .legal { color: var(--ink-mute); }
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: #0C1610;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 26px 60px -20px rgba(0,0,0,.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
/* keep the consent banner from floating over the open mobile drawer */
html.drawer-open .cookie-banner {
  transform: translateY(160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner h3 { font-size: 1.06rem; margin-bottom: 6px; }
.cookie-banner p { color: var(--ink-soft); font-size: .88rem; margin: 0 0 16px; }
.cookie-banner p a { color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid var(--line-strong);
  transition: background .2s var(--ease2), color .2s var(--ease2), transform .18s var(--ease);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-2); color: var(--bg); transform: translateY(-1px); }
/* reject given equal visual weight to accept — solid, not a faint ghost */
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); transform: translateY(-1px); }
@media (min-width: 768px) {
  .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; }
.cookie-modal .cm-box {
  background: #0C1610;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  max-width: 480px; width: 100%;
  padding: 28px;
  max-height: 88vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.3rem; }
.cm-toggle {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.cm-toggle .cm-txt strong { display: block; }
.cm-toggle .cm-txt span { color: var(--ink-mute); font-size: .84rem; }
.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(--surface-3); border-radius: 999px; transition: background .2s var(--ease2); }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--ink); border-radius: 50%; transition: transform .2s var(--ease); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--bg); }
.switch input:disabled + .track { opacity: .55; }
.cm-actions { margin-top: 22px; display: flex; gap: 10px; }
.cm-actions .btn { flex: 1; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .rota, .rota:nth-child(even) { grid-template-columns: 1fr; }
  .rota:nth-child(even) .rota-media { order: 0; }
  .rota-media { min-height: 220px; }
  .incl-split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .gallery a:nth-child(1) img { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: min(88vh, 760px); }
  .hero-stats { gap: 20px 30px; }
  .feature { padding: 22px 20px; }
  .feature .ico { width: 46px; height: 46px; }
  .cta-band .hero-cta { flex-direction: column; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery a:nth-child(1) { grid-column: auto; }
  .cookie-actions button { flex: 1 1 100%; }
}

/* long text guard */
.brand, .footer-contact a, .contact-card a, code, .doc a { overflow-wrap: anywhere; }

.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;
}

/* ============================================================
   PREMIUM ELEVATION LAYER
   Thermal-XC art direction: flowing wind streamlines as texture,
   editorial serif accents, accent-lit motion. Additive only.
   ============================================================ */

/* — Thematic streamline texture on banded sections (thermal/wind isolines) — */
.band, .band-accent, .page-hero, .cta-band { position: relative; isolation: isolate; }
.band::before, .band-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='680' height='520'%3E%3Cg fill='none' stroke='%234ADE80' stroke-width='1.1' opacity='0.06'%3E%3Cpath d='M-40 90 C 150 30 290 150 460 90 S 700 30 720 110'/%3E%3Cpath d='M-40 190 C 170 130 300 250 480 190 S 700 130 720 210'/%3E%3Cpath d='M-40 290 C 150 230 320 350 500 290 S 700 230 720 310'/%3E%3Cpath d='M-40 390 C 190 330 300 450 500 390 S 700 330 720 410'/%3E%3Cpath d='M-40 490 C 160 430 340 550 520 490 S 700 430 720 510'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 680px 520px;
  -webkit-mask-image: radial-gradient(120% 130% at 85% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 130% at 85% 0%, #000 0%, transparent 72%);
}
/* keep the day-timeline band clean (already has its own motif) */
.route-preview::before { display: none; }

/* — Eyebrow: add an altitude-tick terminator for editorial rhythm — */
.section-head .eyebrow::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, .16);
}

/* — Feature cards: warmer lift, accent-lit icon on hover — */
.feature { position: relative; overflow: hidden; }
.feature::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature:hover::after { transform: scaleX(1); }
.feature:hover .ico {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .1);
}
.feature .ico { transition: border-color .3s var(--ease2), box-shadow .3s var(--ease2), transform .3s var(--ease); }
.feature:hover .ico { transform: translateY(-2px); }

/* — Rota editorial cards: accent glow + tag lift on hover — */
.rota { transition: transform .3s var(--ease), border-color .3s var(--ease2), box-shadow .3s var(--ease2); }
.rota:hover { border-color: var(--accent); box-shadow: var(--glow); }
.rota-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(9,15,11,.5));
  opacity: .7; transition: opacity .4s var(--ease2);
  pointer-events: none;
}
.rota:hover .rota-media::after { opacity: .35; }
.rota-body h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }

/* — Featured plan: quiet scale so it leads the row — */
@media (min-width: 981px) {
  .plan.featured { transform: translateY(-10px); }
  .plan.featured:hover { transform: translateY(-15px); }
}
.plan .plan-name, .plan .price { font-family: var(--sans); }

/* — Team member names editorial — */
.member-body h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; }

/* — Gallery: view affordance + accent ring on hover — */
.gallery a { border: 1px solid var(--line); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(9,15,11,.55));
  opacity: 0;
  transition: opacity .35s var(--ease2), border-color .35s var(--ease2);
  pointer-events: none;
}
.gallery a::before {
  content: "";
  position: absolute; z-index: 2;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230F1A14' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3M16 3h3a2 2 0 0 1 2 2v3M21 16v3a2 2 0 0 1-2 2h-3M3 16v3a2 2 0 0 0 2 2h3'/%3E%3C/svg%3E") center / 18px no-repeat;
  transform: scale(.4) translateY(8px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease2);
}
.gallery a:hover::after, .gallery a:focus-visible::after { opacity: 1; border-color: var(--accent); }
.gallery a:hover::before, .gallery a:focus-visible::before { transform: scale(1) translateY(0); opacity: 1; }

/* — Testimonials: serif quote body for editorial voice — */
.tst > p:not(.tst-crit) { font-family: var(--serif); font-size: 1.04rem; line-height: 1.6; }
.tst .quote-mark { font-family: var(--serif); }

/* — FAQ answers keep readable sans; summary already sans — */
.faq-item[open] { box-shadow: 0 20px 40px -32px rgba(74, 222, 128, .5); }

/* — Hairline rhythm dividers between stacked doc blocks — */
.gps-rule { opacity: .45; }

/* — Reveal: allow grid children to stagger via nth-child when parent lacks --i — */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* — Buttons: subtle sheen on primary — */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%); }

/* — Page-hero: editorial lift, quiet horizon rule — */
.page-hero h1 { max-width: 20ch; }
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 20px);
  opacity: .28;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before,
  .feature::after,
  .gallery a::before,
  .rota-media::after { transition: none !important; }
}

@media (max-width: 980px) {
  .band::before, .band-accent::before { background-size: 560px 430px; opacity: .4; }
}
