/* ============================================================
   Sükût Balon — Kapadokya Şafak Balon Uçuşları
   Editorial gece-şafak; type-forward. Fraunces italic + IBM Plex Sans
   ============================================================ */
:root {
  --bg: #0E1420;
  --surface: #17202E;
  --surface-2: #1E2A3B;
  --ink: #E8ECF2;
  --ink-soft: #A7B2C2;
  --ink-faint: #6C7A8E;
  --accent: #E8A13A;
  --accent-2: #5B7FB0;
  --accent-glow: rgba(232, 161, 58, 0.5);
  --line: rgba(232, 236, 242, 0.12);
  --line-strong: rgba(232, 236, 242, 0.24);
  --header-h: 74px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --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 {
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.68;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

/* background aurora — night sky glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 60% at 78% 12%, rgba(232, 161, 58, 0.10), transparent 55%),
    radial-gradient(90% 50% at 20% 0%, rgba(91, 127, 176, 0.12), transparent 60%),
    linear-gradient(180deg, #0B1019 0%, var(--bg) 40%, #0C121D 100%);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 34, 'WONK' 0;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--accent); color: #12100A; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--accent);
  color: #12100A;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section { padding: clamp(64px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(44px, 7vw, 88px) 0; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* section number label */
.sec-no {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
  border: 0;
  margin: 0;
}

/* Vertical flowing edge section numbers */
.edge-no {
  position: absolute;
  right: clamp(6px, 2vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  color: var(--ink-faint);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) { .edge-no { display: none; } }

/* ============================================================
   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(14, 20, 32, 0.92);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), height .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 16, 25, 0.97);
  height: 64px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 560px) {
  .header-inner { padding-left: 16px; padding-right: 16px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand svg { width: 26px; height: 30px; flex: none; color: var(--accent); }
.brand small {
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
  padding: 4px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .26s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  font-size: 0.86rem !important;
  color: #12100A !important;
  background: var(--accent);
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  color: #12100A !important;
  background: #F1B457;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px var(--accent-glow);
}

@media (max-width: 1023px) { .nav-desktop { display: none; } }

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(23, 32, 46, 0.6);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1023px) { .nav-toggle { display: block; } }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: #0C121D;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 22px) 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  margin-top: 20px;
  font-style: normal;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  background: var(--accent);
  color: #12100A !important;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
}
.drawer a.drawer-cta:hover { color: #12100A !important; background: #F1B457; padding-left: 0; }
.drawer-meta {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.7;
}
.drawer-meta a { font-family: inherit; font-style: normal; font-size: inherit; border: 0; padding: 0; color: var(--ink-soft); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  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;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #12100A; }
.btn-primary:hover, .btn-primary:focus-visible {
  background: #F1B457; color: #12100A;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--accent); }

/* ember glow flash on active */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 60%);
  opacity: 0;
  pointer-events: none;
}
.btn-primary:active::after { animation: ember .5s var(--ease); }
@keyframes ember { 0% { opacity: .8; transform: scale(.6); } 100% { opacity: 0; transform: scale(1.5); } }

/* ============================================================
   Hero — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  /* px cap so a full-page capture (viewport = full doc height) can't
     stretch the hero into an oversized band (vh gotcha) */
  max-height: 1040px;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(96px, 16vh, 168px);
  padding-bottom: clamp(48px, 8vh, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  transform-origin: 60% 45%;
  will-change: transform;
  animation: heroKen 20s ease-in-out infinite alternate;
}
@keyframes heroKen {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.15) translate3d(-1.6%, -2.2%, 0); }
}
/* dark cinematic overlay for text legibility (≥4.5:1 on lower-left copy) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,13,21,0.58) 0%, rgba(9,13,21,0.22) 32%, rgba(9,13,21,0.68) 74%, rgba(9,13,21,0.93) 100%),
    linear-gradient(90deg, rgba(9,13,21,0.72) 0%, rgba(9,13,21,0.30) 46%, rgba(9,13,21,0) 78%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-topline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(22px, 4vh, 44px);
  flex-wrap: wrap;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 24, 'WONK' 0;
  font-size: clamp(2.35rem, 8.6vw, 5.2rem);
  line-height: 1.0;
  margin: 0;
  max-width: 15ch;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.5);
}
.hero-title .word-span { white-space: nowrap; }
.hero-title .accent {
  font-style: italic;
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.32rem);
  color: var(--ink);
  max-width: 42ch;
  margin: clamp(24px, 4vh, 40px) 0 clamp(28px, 4vh, 40px);
  font-weight: 300;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-scroll {
  margin-top: clamp(28px, 5vh, 52px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-scroll .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: .3; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }

/* thin stat strip over photo */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  margin-top: clamp(26px, 4vh, 42px);
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}
.hero-stats span {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 0.82rem; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero-stats b {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 700;
  font-size: 1.16rem; color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 420px) {
  .hero-stats { gap: 10px 22px; }
  .hero-stats b { font-size: 1.05rem; }
}

/* ============================================================
   Stats
   ============================================================ */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 32, 46, 0.4);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  background: var(--bg);
  padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 32px);
  text-align: center;
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Manifesto — Gökyüzüne Dair (drop cap)
   ============================================================ */
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .manifesto-grid { grid-template-columns: 1fr; gap: 32px; } }

.manifesto h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}
.manifesto-body { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-soft); }
.manifesto-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  float: left;
  font-size: 4.6rem;
  line-height: 0.72;
  padding: 8px 14px 0 0;
  color: var(--accent);
}
.manifesto-body strong { color: var(--ink); font-weight: 500; }

.mani-marks { margin-top: 34px; display: grid; gap: 2px; }
.mani-marks .mk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.mani-marks .mk .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.mani-marks .mk .t { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.24rem; color: var(--ink); }
.mani-marks .mk .d { grid-column: 2; font-size: 0.92rem; color: var(--ink-faint); margin-top: 3px; }

/* ============================================================
   Big quote / narrative
   ============================================================ */
.quote-block {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 20, 32, 0.72), rgba(14, 20, 32, 0.86)),
    url('../images/vadi-manzara.jpg') center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-block .container { max-width: 980px; text-align: center; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 6rem;
  line-height: 0.4;
  color: var(--accent);
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}
.quote-block blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quote-block cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   Season notes — sezon-notlari (editorial timeline)
   ============================================================ */
.notes-list { display: grid; gap: 0; margin-top: clamp(30px, 5vw, 56px); }
.note-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(18px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
  transition: padding-left .3s var(--ease);
}
.note-row:last-child { border-bottom: 1px solid var(--line); }
.note-row:hover { padding-left: 10px; }
.note-season {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.note-body h3 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin-bottom: 0.4em; }
.note-body p { color: var(--ink-soft); margin: 0; max-width: 58ch; }
.note-temp {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-faint);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .note-row { grid-template-columns: 1fr; gap: 8px; }
  .note-temp { font-size: 1.2rem; }
}

/* ============================================================
   Price line list — fiyat satır listesi
   ============================================================ */
.price-band { background: rgba(23, 32, 46, 0.35); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-list { margin-top: clamp(28px, 4vw, 50px); }
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 3vw, 34px);
  align-items: end;
  padding: clamp(22px, 3.2vw, 34px) 0;
  border-top: 1px solid var(--line);
}
.price-row:last-of-type { border-bottom: 1px solid var(--line); }
.price-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink);
  white-space: nowrap;
}
.price-name .tag {
  display: inline-block;
  margin-left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #12100A;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  vertical-align: middle;
}
.price-dots {
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-6px);
  min-width: 20px;
}
.price-desc { grid-column: 1 / -1; color: var(--ink-faint); font-size: 0.92rem; margin-top: 6px; max-width: 62ch; }
.price-val {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.price-note {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--ink-faint);
  font-style: italic;
}
@media (max-width: 620px) {
  .price-row { grid-template-columns: 1fr auto; }
  .price-dots { display: none; }
  .price-name { white-space: normal; }
}

/* ============================================================
   Included / what-you-get cards (feature grid) — niche icons
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: clamp(30px, 5vw, 52px);
}
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.feat:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 161, 58, 0.4);
  box-shadow: 0 24px 44px -28px rgba(232, 161, 58, 0.35);
}
.feat-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(232, 161, 58, 0.12);
  border: 1px solid rgba(232, 161, 58, 0.24);
  margin-bottom: 18px;
}
.feat-icon svg { width: 26px; height: 26px; color: var(--accent); }
.feat h3 { font-size: 1.24rem; margin-bottom: 0.4em; }
.feat p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ============================================================
   Process — steps (vertical timeline)
   ============================================================ */
.steps { margin-top: clamp(32px, 5vw, 56px); position: relative; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(22px, 3vw, 36px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-no {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(232, 161, 58, 0.35);
  line-height: 1;
}
.step h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-bottom: 0.35em; }
.step .when {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); margin: 0; max-width: 62ch; }
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step-no { font-size: 1.6rem; }
}

/* ============================================================
   Split / narrative image section
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.split.reverse .split-media { order: -1; }
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
}
.split-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 22px 16px;
  background: linear-gradient(0deg, rgba(10, 14, 23, 0.9), transparent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.split h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.split p { color: var(--ink-soft); }

/* ============================================================
   Testimonials — editorial grid
   ============================================================ */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: clamp(30px, 5vw, 52px);
}
.tst {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.tst-stars { color: var(--accent); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 14px; }
.tst blockquote {
  margin: 0 0 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}
.tst blockquote .crit { color: var(--ink-faint); font-size: 0.95em; }
.tst .who { margin-top: auto; }
.tst .who b { font-style: normal; font-weight: 600; color: var(--ink); font-family: 'IBM Plex Sans'; }
.tst .who span {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ============================================================
   Notes / son eklenenler
   ============================================================ */
.log-list { margin-top: 28px; display: grid; gap: 0; }
.log-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.log-row:last-child { border-bottom: 1px solid var(--line); }
.log-row time { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--accent); letter-spacing: 0.06em; }
.log-row p { margin: 0; color: var(--ink-soft); }
@media (max-width: 560px) { .log-row { grid-template-columns: 1fr; gap: 4px; } }

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq { margin-top: clamp(28px, 4vw, 48px); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 3vw, 28px) 44px clamp(20px, 3vw, 28px) 0;
  position: relative;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.12rem, 2.2vw, 1.4rem);
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/2px 14px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/14px 2px no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(4px, 2vw, 20px) 0 0;
  overflow: hidden;
  transition: height .36s cubic-bezier(.4, 0, .2, 1), padding-block-end .36s cubic-bezier(.4, 0, .2, 1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 26px;
}
.faq-item .answer p { color: var(--ink-soft); margin: 0 0 0.8em; }
.faq-item .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 20, 32, 0.78), rgba(14, 20, 32, 0.92)),
    url('../images/ufuk-cizgisi.jpg') center/cover no-repeat;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta-band .container { max-width: 760px; position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 4rem); }
.cta-band p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(30px, 5vw, 56px); }
.contact-hero h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); }
.contact-hero p { color: var(--ink-soft); max-width: 52ch; font-size: 1.1rem; }

.chan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(20px, 3vw, 36px);
}
.chan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.chan:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 161, 58, 0.4);
  box-shadow: 0 22px 40px -26px rgba(232, 161, 58, 0.35);
}
.chan-ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(232, 161, 58, 0.12);
  border: 1px solid rgba(232, 161, 58, 0.22);
  margin-bottom: 16px;
}
.chan-ic svg { width: 24px; height: 24px; color: var(--accent); }
.chan h3 { font-size: 1.1rem; margin-bottom: 6px; font-style: normal; font-family: 'IBM Plex Sans'; font-weight: 600; letter-spacing: 0; }
.chan a, .chan .val { color: var(--accent); font-weight: 500; word-break: break-word; overflow-wrap: anywhere; }
.chan .sub { display: block; margin-top: 6px; color: var(--ink-faint); font-size: 0.85rem; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 32px);
}
.hours-grid .day {
  background: var(--surface);
  padding: 16px 18px;
}
.hours-grid .day.today { background: rgba(232, 161, 58, 0.1); }
.hours-grid .day .d { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.hours-grid .day .h { display: block; margin-top: 6px; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-grid .day.today .h { color: var(--accent); }

/* ============================================================
   Forms
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
  margin-top: clamp(20px, 3vw, 32px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E8A13A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; grid-column: 1 / -1; }
.field.kvkk span { font-size: 0.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: 3px 0 0;
  accent-color: var(--accent);
  border-bottom-width: 0;
}
.form-actions { margin-top: 22px; display: flex; justify-content: flex-end; }
.form-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 620px) { .form-actions .btn { width: auto; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Prose / legal pages
   ============================================================ */
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 0.3em; }
.prose .lead { color: var(--ink-soft); font-size: 1.14rem; margin-bottom: 2em; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 1.8em 0 0.5em; }
.prose h3 { font-size: 1.2rem; margin: 1.4em 0 0.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin-bottom: 2.4em;
  display: block;
}

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
table th { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0B1019;
  padding: clamp(48px, 7vw, 84px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-faint); font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: 'IBM Plex Mono', monospace; font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; }

/* ============================================================
   Cookie banner + modal
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-size: 1.15rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { width: 100%; justify-content: center; padding: 12px 14px; font-size: 0.86rem; min-height: 44px; }
/* reject reads as an equal-weight peer to accept, not a faint outline (KVKK/GDPR parity) */
.cookie-actions .btn-ghost { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.cookie-actions .btn-ghost:hover, .cookie-actions .btn-ghost:focus-visible { background: var(--surface-2); border-color: var(--accent); color: var(--ink); }
.cookie-actions .btn-text {
  grid-column: 1 / -1;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  min-height: 44px;
}
.cookie-actions .btn-text:hover { color: var(--ink); border-color: var(--line-strong); background: var(--surface); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-inner {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal h2 { font-size: 1.4rem; margin-bottom: 6px; }
.cookie-modal > .cookie-modal-inner > p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; }
.toggle-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.toggle-row:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.toggle-row b { font-family: 'IBM Plex Sans'; font-weight: 600; font-size: 0.98rem; }
.toggle-row p { grid-column: 1 / -1; margin: 0; font-size: 0.85rem; color: var(--ink-faint); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .2s var(--ease); }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 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: #12100A; }
.switch input:disabled + .track { opacity: 0.55; }

/* ============================================================
   Reveal + niche animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo { animation: none !important; transform: scale(1.02) !important; }
  .hero-scroll .dot { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* horizon-glow on headings */
.glow-head { position: relative; display: inline-block; }
.glow-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* thumb tiles */
.thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.thumb img { transition: transform .5s var(--ease); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.thumb:hover img { transform: scale(1.05); }

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: clamp(520px, calc(100vh - var(--header-h)), 760px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--pad);
}
.error-page .big {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5rem, 20vw, 12rem);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.error-page p { color: var(--ink-soft); max-width: 44ch; margin: 12px auto 28px; }

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead-p { font-size: 1.14rem; color: var(--ink-soft); max-width: 60ch; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; }
.two-col-list { columns: 2; column-gap: 40px; }
.two-col-list li { break-inside: avoid; }
@media (max-width: 560px) { .two-col-list { columns: 1; } }
.incl { list-style: none; padding: 0; margin: 18px 0 0; }
.incl li { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 8px 0; color: var(--ink-soft); align-items: start; }
.incl li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 4px; flex: none; }
.incl li.no svg { color: var(--ink-faint); }

.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;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #12100A !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%;overflow-x:auto}
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)){min-width:0}
table{max-width:100%}

/* ============================================================
   PREMIUM UPLIFT LAYER — atmosphere, editorial polish, gallery
   Dawn-over-Kapadokya art direction; realizes the intended
   Fraunces / IBM Plex type system now that the fonts load.
   ============================================================ */

/* ---- filmic dawn grain + faint horizon vignette (static, safe) ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(140% 78% at 50% -8%, rgba(232,161,58,0.06), transparent 46%),
    radial-gradient(120% 60% at 50% 108%, rgba(10,14,23,0.55), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: auto, auto, 180px 180px;
  mix-blend-mode: soft-light;
}

/* ---- italic accent word inside headings ---- */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: 'SOFT' 62, 'WONK' 1;
  color: var(--accent);
}

/* ---- eyebrow: a touch more presence ---- */
.eyebrow { font-weight: 500; }

/* ---- section-head rhythm ---- */
.section-head h2 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.0; }
.section-head .lead-p { margin-top: 1.1em; }

/* ---- upgraded hairline rule: centered, with an ember node ---- */
hr.rule {
  height: 0;
  background: none;
  border: 0;
  position: relative;
  margin: 0 auto;
  width: min(var(--maxw), calc(100% - var(--pad) * 2));
}
hr.rule::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 22%, var(--line-strong) 78%, transparent);
}
hr.rule::after {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  transform: rotate(45deg);
  background: var(--accent);
  box-shadow: 0 0 14px 1px var(--accent-glow);
}

/* ============================================================
   Feature / info cards — layered surface, growing top accent
   ============================================================ */
.feat, .chan {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 42%),
    var(--surface);
  overflow: hidden;
  isolation: isolate;
}
.feat::before, .chan::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .5s var(--ease);
  z-index: 2;
}
.feat:hover::before, .chan:hover::before { width: 100%; }
.feat::after {
  content: "";
  position: absolute;
  right: -30%; top: -60%;
  width: 70%; height: 120%;
  background: radial-gradient(closest-side, rgba(232,161,58,0.10), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.feat:hover::after { opacity: 1; }
.feat > *, .chan > * { position: relative; z-index: 1; }

/* icon plate: soft ring + inner glow */
.feat-icon, .chan-ic {
  position: relative;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(232,161,58,0.22), rgba(232,161,58,0.08));
  box-shadow: inset 0 0 0 1px rgba(232,161,58,0.22), 0 8px 20px -14px var(--accent-glow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feat:hover .feat-icon, .chan:hover .chan-ic {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(232,161,58,0.4), 0 14px 26px -14px var(--accent-glow);
}
.feat h3 { font-variation-settings: 'SOFT' 40, 'WONK' 0; }

/* ============================================================
   Testimonials — quote plate polish
   ============================================================ */
.tst {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%),
    var(--surface);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tst::before {
  content: "\201C";
  position: absolute;
  top: -0.18em; right: 0.14em;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
}
.tst:hover {
  transform: translateY(-4px);
  border-color: rgba(232,161,58,0.34);
  box-shadow: 0 26px 48px -30px rgba(232,161,58,0.32);
}
.tst blockquote { position: relative; z-index: 1; }

/* ============================================================
   Editorial rows — hover ink accent on the season/price lists
   ============================================================ */
.note-row, .price-row { position: relative; }
.note-row::before, .price-row::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .45s var(--ease);
}
.note-row:hover::before { width: 46%; }
.note-season, .step .when, .price-val { font-weight: 500; }

/* step markers get a subtle rail */
.steps::before {
  content: "";
  position: absolute;
  left: clamp(0px, 4vw, 44px); top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
@media (max-width: 560px) { .steps::before { display: none; } }
.step-no { transition: color .4s var(--ease), text-shadow .4s var(--ease); }
.step:hover .step-no { color: var(--accent); text-shadow: 0 0 24px var(--accent-glow); }

/* ============================================================
   Gallery — Şafak defteri (asymmetric editorial grid, real imgs)
   ============================================================ */
.gallery {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  grid-template-columns: 1fr;
  margin-top: clamp(30px, 5vw, 52px);
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  display: block;
  transition: transform .8s var(--ease), filter .8s var(--ease);
  filter: saturate(0.96) contrast(1.02);
}
.g-tile.g-tall img { aspect-ratio: 3 / 4; }
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,13,21,0.82) 0%, rgba(9,13,21,0.16) 34%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.g-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(14px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.g-tile .g-co {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.g-tile .g-cap {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.g-tile:hover { border-color: rgba(232,161,58,0.4); box-shadow: 0 30px 56px -34px rgba(232,161,58,0.4); }
.g-tile:hover img { transform: scale(1.06); filter: saturate(1.04) contrast(1.03); }

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(150px, 32vw, 250px);
    grid-template-areas:
      "t w"
      "t a"
      "b c";
  }
  .gallery .g-tile img { aspect-ratio: auto; height: 100%; }
  .gallery .g-tile:nth-child(1) { grid-area: t; }
  .gallery .g-tile:nth-child(2) { grid-area: w; }
  .gallery .g-tile:nth-child(3) { grid-area: a; }
  .gallery .g-tile:nth-child(4) { grid-area: b; }
  .gallery .g-tile:nth-child(5) { grid-area: c; }
}
@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(165px, 19vw, 250px);
    grid-template-areas:
      "t w w a"
      "t b c c";
  }
}

/* ============================================================
   Reveal polish — image tiles rise + un-blur; hover-lift honesty
   ============================================================ */
.reveal.g-tile, .reveal.split-media { transform: translateY(28px) scale(0.985); }
.reveal.g-tile.is-in, .reveal.split-media.is-in { transform: none; }
.split-media { transition: transform .3s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.split-media:hover { box-shadow: 0 34px 60px -36px rgba(232,161,58,0.32); border-color: rgba(232,161,58,0.28); }

/* keep the whole document overflow-safe with the new media */
.gallery, .g-tile { max-width: 100%; min-width: 0; }

@media (prefers-reduced-motion: reduce) {
  .feat::before, .chan::before, .note-row::before, .price-row::before,
  .feat-icon, .chan-ic, .step-no, .g-tile img, .g-tile, .tst, .split-media,
  .feat, .chan, hr.rule::after { transition: none !important; }
  .g-tile:hover img, .feat:hover .feat-icon, .chan:hover .chan-ic { transform: none !important; }
  body::after { display: none; }
}

/* ============================================================
   Nav CTA — header + drawer "Uçuşunu Ayır" (scroll-spy safe)
   The scroll-spy toggles .is-active on any hash link; keep the CTA
   reading as a filled pill (not the accent-on-accent active state).
   ============================================================ */
.nav-desktop .nav-cta { margin-left: clamp(4px, 1vw, 12px); }
.nav-desktop .nav-cta.is-active { color: #12100A !important; }
.drawer a.nav-cta.is-active,
.drawer a.drawer-cta.is-active { color: #12100A !important; padding-left: 0; }
/* the drawer CTA must never inherit the plain-link bottom rule */
.drawer a.drawer-cta { border-bottom: 0; }

/* ============================================================
   Final editorial polish — quieter hairlines, richer accents
   ============================================================ */
/* section eyebrow number pairs read as a set (hero topline + edge no) */
.hero-topline .sec-no { margin-left: auto; }
@media (max-width: 560px) { .hero-topline .sec-no { margin-left: 0; } }

/* lead paragraphs get an ink-soft first-line lift for editorial cadence */
.section-head .lead-p { color: var(--ink-soft); }

/* feature/channel headings: optical sizing warms the serif at card scale */
.feat h3, .chan h3 { letter-spacing: -0.01em; }

/* price "en çok tercih" row: a whisper of accent wash to anchor the eye */
.price-row:has(.tag) { background: linear-gradient(90deg, rgba(232,161,58,0.05), transparent 60%); }

/* gallery captions sit on a touch more shade for legibility over bright dawns */
.g-tile::after { background: linear-gradient(0deg, rgba(9,13,21,0.86) 0%, rgba(9,13,21,0.20) 36%, transparent 62%); }

/* cta-band + quote-block: warm the vignette toward dawn amber */
.cta-band::after, .quote-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, rgba(232,161,58,0.10), transparent 55%);
}
.cta-band .container, .quote-block .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .cta-band::after, .quote-block::after { background: none; }
}
