/* ============================================================
   Termik Pencere — Uçuş penceresi planlayıcı
   Art direction: "Altın Termik" — Ölüdeniz altın saat / termik pencere
   Ink: twilight #161C29 · Teal (su/etkileşim): #0C7C71
   Gold (güneş/enerji/CTA): #E1852B · Zemin: sıcak kâğıt #F4F1E9
   Type: Fraunces (display) · Hanken Grotesk (UI) · Spline Sans Mono (veri)
   ============================================================ */

:root {
  --bg: #F4F1E9;
  --surface: #FFFFFF;
  --surface-2: #FAF6EE;
  --surface-3: #ECE5D7;
  --ink: #161C29;
  --ink-soft: #4B5468;
  --ink-faint: #6B7486;

  /* teal = lagoon / interactive-text / links (kontrast güvenli) */
  --teal: #0C7C71;
  --teal-2: #0FA091;
  --teal-soft: rgba(15, 160, 145, 0.13);

  /* gold = sun / energy / CTA-bg / instrument */
  --gold: #E1852B;
  --gold-warm: #DC6B22;
  --gold-ink: #9A550F;      /* metin için koyu altın (light zeminde ≥4.5:1) */
  --gold-light: #F0B968;
  --gold-soft: rgba(225, 133, 43, 0.13);

  /* geriye dönük uyum: --accent = etkileşim (teal), --accent-2 = enerji (gold) */
  --accent: var(--teal);
  --accent-2: var(--gold);
  --accent-soft: var(--teal-soft);

  --line: rgba(22, 28, 41, 0.11);
  --line-strong: rgba(22, 28, 41, 0.20);
  --good: #2E9E6B;
  --warn: #E19A2B;
  --bad: #DB5757;
  --header-h: 76px;

  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --display: var(--serif);

  --radius: 18px;
  --radius-sm: 11px;
  --shadow-sm: 0 6px 20px -14px rgba(22, 28, 41, 0.32);
  --shadow-md: 0 22px 52px -30px rgba(22, 28, 41, 0.46);
  --shadow-gold: 0 24px 54px -30px rgba(216, 118, 40, 0.55);
  --shadow-teal: 0 24px 54px -30px rgba(12, 124, 113, 0.5);
  --ease: cubic-bezier(.2, .7, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(70% 55% at 100% -5%, rgba(225, 133, 43, 0.07), transparent 60%),
    radial-gradient(60% 50% at -10% 8%, rgba(15, 160, 145, 0.06), transparent 62%);
  background-attachment: fixed;
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold-ink); }

h1, h2, h3, h4 {
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.12;
}
h1, h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.014em;
}
h1 em, h2 em, .section-head h2 em, .hero h1 em {
  font-style: italic;
  font-weight: 500;
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-2));
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: -0.005em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Sunset-gold primary CTA — dark ink text (kontrast ~6.7:1), asla silinmez */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: #1B1206;
  box-shadow: 0 14px 30px -14px rgba(216, 118, 40, .9);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -18px rgba(22, 28, 41, .7);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover, .btn-teal:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244, 241, 233, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease), border-color .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px -18px rgba(22, 28, 41, .3);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark {
  width: 36px; height: 36px;
  flex: none;
  filter: drop-shadow(0 3px 8px rgba(216, 118, 40, .28));
}
.brand strong { font-weight: 600; }
.brand span { color: var(--gold-ink); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-desktop a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 13px;
  border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a.is-active::after { transform: scaleX(1); }

.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: #1B1206;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-desktop .nav-cta:hover { background: var(--ink); color: #fff; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Drawer ---------------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1050;
  width: min(360px, 92vw);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 22px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -20px 0 60px -34px rgba(22, 28, 41, .55);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--teal); }
.drawer a.is-active { color: var(--teal); }
.drawer .drawer-cta {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-warm)) !important;
  color: #1B1206 !important;
  text-align: center;
  border-radius: 999px;
  border-bottom: none;
  padding: 15px 20px;
  font-weight: 700;
}
.drawer .drawer-cta:hover { background: var(--ink) !important; color: #fff !important; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15, 18, 26, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------------- Main / hero ---------------- */
main { padding-top: var(--header-h); }

/* ---------------- Cinematic photo hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 88vh, 880px);
  padding: clamp(104px, 17vh, 210px) 0 clamp(48px, 8vh, 92px);
  isolation: isolate;
  background: #0b0e16;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.6%, -2.4%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,12,20,.52) 0%, rgba(9,12,20,.12) 30%, rgba(9,12,20,.40) 64%, rgba(8,10,18,.90) 100%),
    linear-gradient(90deg, rgba(8,10,18,.76) 0%, rgba(8,10,18,.30) 52%, rgba(8,10,18,0) 82%),
    radial-gradient(120% 80% at 88% 6%, rgba(225,133,43,.20), transparent 55%);
}

.hero .container { position: relative; z-index: 3; }
.hero-copy { max-width: 780px; }

.hero .eyebrow { color: #fff; opacity: .96; }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--gold-light), #fff); }

.hero h1 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 550;
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.04;
  font-size: clamp(2.3rem, 7.2vw, 4.7rem);
  margin: .3em 0 .34em;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.hero h1 .word { white-space: nowrap; }

.hero-sub {
  font-size: clamp(1.04rem, 2.1vw, 1.26rem);
  color: rgba(255, 255, 255, .92);
  max-width: 34em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, .6);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 38px;
  margin-top: 34px;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .22);
  max-width: 680px;
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-strip .ts-num {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.trust-strip .ts-label {
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

/* ---------------- Sections ---------------- */
.section { padding: clamp(64px, 10vh, 118px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(32px, 5.5vh, 54px); }
.section-head .eyebrow { margin-bottom: .9em; }
.section-head h2 {
  font-size: clamp(1.75rem, 4.4vw, 2.7rem);
  margin-top: 0;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 0; max-width: 46em; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section.band {
  position: relative;
  overflow: hidden;
  color: #eef2f6;
  background-color: #121826;
  background-image:
    radial-gradient(115% 90% at 86% 4%, rgba(225, 133, 43, 0.34), transparent 54%),
    radial-gradient(90% 80% at 8% 100%, rgba(15, 160, 145, 0.28), transparent 60%),
    linear-gradient(165deg, #151D2E 0%, #101725 60%, #0D1620 100%);
}
.section.band h2, .section.band h3 { color: #fff; }
.section.band p { color: rgba(238, 242, 246, .84); }
.section.band .eyebrow { color: var(--gold-light); }
.section.band .eyebrow::before { background: linear-gradient(90deg, var(--gold-light), var(--teal-2)); }

/* ---------------- Planner tool ---------------- */
.planner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 3vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3.4vw, 42px);
  box-shadow: var(--shadow-md);
}
.planner-controls { min-width: 0; }
.planner-control { margin-bottom: 28px; }
.planner-control:last-child { margin-bottom: 0; }
.control-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 11px;
}
.control-head label { font-weight: 700; font-size: .96rem; letter-spacing: -.01em; }
.control-value {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-2) 0%, var(--teal) var(--fill, 40%), var(--surface-3) var(--fill, 40%), var(--surface-3) 100%);
  outline-offset: 4px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 4px 12px -4px rgba(12, 124, 113, .75);
  transition: transform .15s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.14); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 4px 12px -4px rgba(12, 124, 113, .75);
}
.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--ink-faint);
  margin-top: 7px;
  font-family: var(--mono);
}

/* wind rose selector */
.rose-wrap { display: grid; place-items: center; margin-bottom: 16px; }
.wind-rose { width: 132px; height: 132px; }
.dir-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dir-picker button {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.dir-picker button:hover { border-color: var(--teal); color: var(--ink); }
.dir-picker button.is-selected {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 18px -10px rgba(12, 124, 113, .85);
}

/* gauge panel — dark "vario" instrument */
.gauge-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #eaf0f6;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(225,133,43,.16), transparent 60%),
    linear-gradient(165deg, #1A2233 0%, #131A28 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: clamp(20px, 2.8vw, 32px) clamp(16px, 2.4vw, 28px);
  min-width: 0;
}
.gauge-cap {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.gauge-wrap { position: relative; width: 100%; max-width: 300px; }
.gauge-wrap svg { width: 100%; height: auto; overflow: visible; }
.gauge-wrap circle { fill: var(--gold); }
.gauge-wrap circle:last-of-type { fill: #fff; }
.gauge-needle {
  fill: var(--gold);
  transform-box: fill-box;
  transform-origin: bottom center;
  transition: transform .9s cubic-bezier(.34, 1.3, .3, 1);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.4));
}
.gauge-readout { margin-top: -18px; }
.score-value {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(2.7rem, 8vw, 3.5rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: color .4s var(--ease);
}
.score-value.state-good { color: #4CD8A0; }
.score-value.state-warn { color: #F3B657; }
.score-value.state-bad { color: #F17E7E; }
.score-suffix { font-size: 1rem; color: rgba(234,240,246,.6); font-weight: 600; }
.verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: rgba(234,240,246,.8);
  background: rgba(255,255,255,.06);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.verdict::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
}
.verdict.state-good { background: rgba(76, 216, 160, .16); color: #6ee2b4; }
.verdict.state-warn { background: rgba(243, 182, 87, .18); color: #f5c274; }
.verdict.state-bad { background: rgba(241, 126, 126, .16); color: #f59a9a; }

.rec-session {
  width: 100%;
  margin-top: 22px;
  padding: 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .05);
  border: 1px dashed rgba(15, 160, 145, .5);
  text-align: left;
}
.rec-session .rec-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.rec-session .rec-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.12rem;
  color: #fff;
  margin: 5px 0 3px;
  transition: color .3s var(--ease);
}
.rec-session .rec-note { font-size: .87rem; color: rgba(234,240,246,.72); margin: 0; }
.rose-arrow {
  transform-box: view-box;
  transform-origin: 60px 60px;
  transition: transform .8s cubic-bezier(.34, 1.2, .3, 1);
}

/* factor bars */
.factor-list { margin-top: 24px; display: grid; gap: 13px; }
.factor {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 12px;
}
.factor .f-name { font-size: .84rem; color: var(--ink-soft); font-weight: 700; }
.factor .f-track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-3);
  overflow: hidden;
}
.factor .f-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-2), var(--gold));
  width: 0;
  transition: width .7s var(--ease);
}
.factor .f-val { font-family: var(--mono); font-size: .82rem; color: var(--ink); font-variant-numeric: tabular-nums; }

.price-note { font-size: .82rem; color: var(--ink-faint); margin-top: 18px; }

/* ---------------- Cards ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
  min-width: 0;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card .ico {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-ink);
  margin-bottom: 16px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.14rem; overflow-wrap: break-word; word-break: keep-all; }
.card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 0; }

/* factor / weight cards (nasıl skor hesaplanır) */
.factor-card { display: flex; flex-direction: column; }
.factor-card .fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.factor-card .ico { margin-bottom: 0; }
.factor-card .fc-weight {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-optical-sizing: auto;
  line-height: 1;
  color: var(--gold-ink);
}
.factor-card .fc-num { font-size: 2.5rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.factor-card .fc-pct { font-size: 1.15rem; font-weight: 600; margin-left: 1px; }
.factor-card h3 { font-size: 1.14rem; margin-bottom: 6px; }
.factor-card p { margin-bottom: 18px; }
.factor-card .fc-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--surface-3);
  overflow: hidden;
  margin-top: auto;
}
.factor-card .fc-bar > span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-2), var(--gold));
}
.factor-card .fc-cap {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-faint);
  letter-spacing: .02em;
}

/* step timeline */
.steps { display: grid; gap: 0; max-width: 780px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step .step-num {
  grid-row: span 2;
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(140deg, var(--gold), var(--gold-warm));
  box-shadow: 0 10px 22px -12px rgba(216, 118, 40, .8);
}
.step:nth-child(even) .step-num { background: linear-gradient(140deg, var(--teal-2), var(--teal)); box-shadow: 0 10px 22px -12px rgba(12,124,113,.8); }
.step h3 { font-size: 1.12rem; margin-bottom: 5px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.step .step-time {
  display: inline-block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 3px 11px;
  border-radius: 999px;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(164px, 1fr));
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 26px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
}
.section.band .stat .stat-num { color: #fff; }
.stat-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(1.95rem, 5vw, 2.7rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .84rem; color: rgba(238, 242, 246, .76); margin-top: 9px; }

/* sessions / pricing */
.sessions { display: grid; grid-template-columns: repeat(auto-fit, minmax(264px, 1fr)); gap: 24px; align-items: stretch; }
.session-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
  min-width: 0;
  overflow: hidden;
}
.session-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.session-card.featured {
  border-color: var(--gold);
  box-shadow: 0 26px 54px -30px rgba(216, 118, 40, .55);
}
.session-ribbon {
  position: absolute;
  top: 18px; right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: #1B1206;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 40px;
  box-shadow: 0 6px 14px -8px rgba(216,118,40,.9);
}
.session-tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 15px;
}
.session-card.featured .session-tag { background: var(--gold-soft); color: var(--gold-ink); }
.session-card h3 { font-size: 1.26rem; margin-bottom: 4px; }
.session-price {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.95rem;
  color: var(--ink);
  margin: 14px 0 2px;
}
.session-price small { font-size: .8rem; font-weight: 500; color: var(--ink-faint); }
.session-window { font-size: .87rem; color: var(--gold-ink); font-weight: 700; margin-bottom: 16px; }
.session-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.session-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.session-list li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--teal); }
.session-list li.no svg { color: var(--ink-faint); }
.session-card .btn { margin-top: auto; }

/* reservation / form */
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 50px); align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .89rem; margin-bottom: 7px; letter-spacing: -.01em; }
.field label .opt { font-weight: 400; color: var(--ink-faint); font-size: .82rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field.kvkk label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  font-size: .88rem;
  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: 3px 0 0;
  accent-color: var(--teal);
}
.form-card button[type="submit"] { width: 100%; margin-top: 6px; }

/* CTA card (form replaced by call-to-action) */
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--gold-soft), transparent 58%),
    var(--surface);
}
.cta-card h3 { font-size: 1.34rem; margin-bottom: 6px; }
.cta-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 8px; }
.cta-card .btn { margin-top: 10px; }
.cta-card .cta-alt { font-size: .88rem; color: var(--ink-faint); margin: 14px 0 0; }
.cta-card .cta-alt a { color: var(--teal); font-weight: 600; }

.reserve-info { display: grid; gap: 17px; align-content: start; }
.info-line { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; }
.info-line svg { width: 40px; height: 40px; padding: 9px; box-sizing: border-box; color: var(--teal); background: var(--teal-soft); border-radius: 11px; margin-top: 0; }
.info-line .il-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); font-weight: 700; display: block; margin-bottom: 2px; }
.info-line a, .info-line span { color: var(--ink); font-weight: 600; word-break: break-word; }
.info-line > div { min-width: 0; }
.info-line a:hover { color: var(--teal); }

/* ---------------- Contact cards ---------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 20px;
}
.contact-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .cc-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold-ink);
  margin-bottom: 15px;
}
.contact-card .cc-ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.04rem; margin-bottom: 5px; }
.contact-card a, .contact-card .cc-val { display: block; color: var(--ink); font-weight: 700; word-break: break-word; }
.contact-card a:hover { color: var(--teal); }
.contact-card p { font-size: .84rem; color: var(--ink-faint); margin: 7px 0 0; }

/* hours */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(164px, 1fr)); gap: 11px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 17px;
  font-size: .92rem;
}
.hour-row.today { border-color: var(--gold); background: var(--gold-soft); }
.hour-row .h-day { font-weight: 700; }
.hour-row .h-time { font-family: var(--mono); color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ---------------- Team ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 24px; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  margin-bottom: 14px;
}
.team-card h3 { font-size: 1.14rem; margin-bottom: 2px; }
.team-card .role { color: var(--gold-ink); font-weight: 700; font-size: .87rem; margin-bottom: 11px; }
.team-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------------- Testimonials ---------------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 24px; }
.testi {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-soft);
  pointer-events: none;
}
.testi .quote { font-size: 1.02rem; color: var(--ink); margin-bottom: 18px; line-height: 1.58; position: relative; }
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.testi .who { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.testi .who strong { display: block; font-weight: 700; }
.testi .who span { font-size: .83rem; color: var(--ink-faint); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 19px clamp(18px, 3vw, 26px);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  flex: none;
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms cubic-bezier(.4, 0, .2, 1),
              padding-block-end 360ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { margin: 0 0 .7em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ---------------- Tables ---------------- */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.table-scroll > table { margin: 0 !important; min-width: min(480px, 100%); 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 17px; border-bottom: 1px solid var(--line); font-size: .92rem; }
table th { background: var(--surface-2); font-weight: 700; }
table tr:last-child td { border-bottom: none; }

/* ---------------- Prose (legal pages) ---------------- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.55rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.16rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose strong { color: var(--ink); }
.page-head { padding: clamp(34px, 6vh, 66px) 0 clamp(22px, 4vh, 40px); }
.page-head .eyebrow { margin-bottom: 1em; }
.page-head h1 { font-size: clamp(2rem, 5.4vw, 3.2rem); }
.page-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 42em; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: #10151F;
  color: #c7cfda;
  padding: clamp(50px, 7vh, 76px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 38px;
}
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 15px; }
.site-footer a { color: #c7cfda; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-optical-sizing: auto; font-weight: 600; color: #fff; font-size: 1.16rem; margin-bottom: 13px; }
.footer-brand span { color: var(--gold-light); }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-col p { font-size: .9rem; color: #9aa6b4; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col ul a { font-size: .92rem; }
.footer-contact { font-size: .9rem; display: grid; gap: 9px; }
.footer-contact strong { color: #fff; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: #8794a3;
}
.footer-bottom .biz-meta { font-family: var(--mono); }
.footer-bottom a { color: #8794a3; }

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -20px rgba(22, 28, 41, .45);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.04rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 15px; }
.cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 46px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 11px;
  cursor: pointer;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  transition: all .2s var(--ease);
}
.cookie-actions button[data-consent="accept"] { background: linear-gradient(135deg, var(--gold), var(--gold-warm)); color: #1B1206; border-color: transparent; }
.cookie-actions button[data-consent="accept"]:hover { background: var(--ink); color: #fff; }
/* Reddet = eşit ağırlıklı seçim (dark pattern yok): yüksek kontrastlı çerçeveli buton */
.cookie-actions button[data-consent="reject"] { background: var(--surface); color: var(--ink); border: 1.5px solid var(--ink); }
.cookie-actions button[data-consent="reject"]:hover, .cookie-actions button[data-consent="reject"]:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions button[data-consent="settings"] { background: transparent; color: var(--ink-soft); flex: 1 1 100%; }
.cookie-actions button[data-consent="settings"]:hover { color: var(--ink); border-color: var(--ink); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 18, 26, .55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-inner {
  background: var(--surface);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  padding: 30px;
  box-shadow: var(--shadow-md);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.24rem; margin-bottom: 8px; }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cookie-toggle .ct-text strong { display: block; font-size: .96rem; }
.cookie-toggle .ct-text span { font-size: .84rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: none; margin-top: 2px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--surface-3);
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.switch .slider::before {
  content: ""; position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s var(--ease);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.switch input:checked + .slider { background: var(--teal); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: .6; }
.cookie-modal .modal-actions { margin-top: 22px; display: flex; justify-content: flex-end; gap: 10px; }

/* ---------------- Reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(.2, .7, .2, 1), transform 720ms cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cloud, .hero-glider, .sun, .rose-arrow, .gauge-needle, .hero-media img { animation: none !important; }
  .hero-media img { transform: scale(1.02) !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .planner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 46px 1fr; gap: 16px; }
  .card { padding: 24px 22px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .dir-picker { grid-template-columns: repeat(4, 1fr); }
  .cookie-actions button { flex: 1 1 100%; }
  .factor-card .fc-num { font-size: 2.1rem; }
}
@media (max-width: 400px) {
  .section { padding: 50px 0; }
  .factor { grid-template-columns: 70px 1fr auto; }
}

/* long content safety */
.break { word-break: break-word; overflow-wrap: anywhere; }

/* photos */
.hero-photo, .section-photo { margin: 38px auto 0; max-width: 980px; border-radius: 20px; overflow: hidden; box-shadow: 0 22px 56px -30px rgba(22,28,41,.4); border: 1px solid var(--line); }
.hero-photo img, .section-photo img { display: block; width: 100%; height: auto; object-fit: cover; transition: transform .7s var(--ease); }
.hero-photo:hover img, .section-photo:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) {
  .hero-photo img, .section-photo img { transition: none; }
  .hero-photo:hover img, .section-photo:hover img { transform: none; }
}
.team-photo { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--gold),var(--teal-2));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;
}
