/* ============================================================
   GÖK TAKVİMİ 2026 — Gözlem Etkinlikleri
   Palet: kâğıt krem + derin teal + kehribar
   ============================================================ */

:root {
  --bg: #F3EEE2;
  --surface: #FFFFFF;
  --surface-2: #ECE5D4;
  --ink: #1A2A2E;
  --ink-soft: #44565A;
  --ink-faint: #76858A;
  --accent: #0E6E6A;
  --accent-dark: #0A5450;
  --accent-2: #E0962B;
  --accent-2-dark: #C57F19;
  --line: rgba(26, 42, 46, 0.14);
  --line-strong: rgba(26, 42, 46, 0.26);
  --night: #0C1B22;
  --night-2: #112B30;

  --header-h: 76px;
  --maxw: 1240px;

  --serif: "Baskerville", "Baskerville Old Face", "Hoefler Text", "Palatino Linotype", Palatino, "Cambria", Georgia, serif;
  --body: "Tahoma", "Segoe UI", Verdana, sans-serif;
  --num: "Tahoma", "Segoe UI", sans-serif;

  interpolate-size: allow-keywords;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.tnum { font-variant-numeric: tabular-nums; font-weight: 700; font-family: var(--num); }

::selection { background: var(--accent-2); color: var(--night); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px); }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--accent-2); }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.word-wrap { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background 220ms cubic-bezier(.2,.7,.2,1), color 220ms, transform 220ms, box-shadow 220ms;
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(14,110,106,.7); }
.btn-amber { background: var(--accent-2); color: var(--night); }
.btn-amber:hover, .btn-amber:focus-visible { background: var(--accent-2-dark); color: var(--night); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(224,150,43,.7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #F3EEE2; border-color: rgba(243,238,226,.4); }
.btn-ghost.on-dark:hover { background: #F3EEE2; color: var(--night); }
.btn .arrow { transition: transform 220ms; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--header-h);
  background: rgba(243, 238, 226, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(243, 238, 226, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.22);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand small { display: block; font-family: var(--body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.24em; color: var(--accent); text-transform: uppercase; margin-top: 2px; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }

.nav-desktop { display: none; align-items: center; gap: 30px; }
.nav-desktop a:not(.nav-cta) {
  position: relative; font-family: var(--body); font-size: 0.92rem; font-weight: 700;
  color: var(--ink-soft); padding: 6px 0; transition: color 200ms;
}
.nav-desktop a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent-2); transition: right 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-cta { font-family: var(--body); font-weight: 700; font-size: 0.9rem; padding: 11px 22px; border-radius: 999px; background: var(--accent); color: #fff; transition: background 200ms, color 200ms, transform 200ms; }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  /* specificity bump: the .nav-toggle base rule is declared later in the
     sheet, so an equal-specificity hide would lose on source order and the
     hamburger would leak onto desktop next to the full nav. */
  .site-header .nav-toggle { display: none; }
}

/* hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 11px;
  background: var(--surface); cursor: pointer; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms; }
.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-backdrop {
  position: fixed; inset: 0; z-index: 1040; background: rgba(12, 27, 34, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw); background: var(--night);
  transform: translateX(100%); transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 28px 32px; display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #F3EEE2; padding: 13px 0; border-bottom: 1px solid rgba(243,238,226,.12); transition: color 200ms, padding-left 200ms; }
.drawer a:hover, .drawer a.is-active { color: var(--accent-2); padding-left: 6px; }
.drawer .drawer-cta { margin-top: 22px; }
.drawer .btn { width: 100%; justify-content: center; }
.drawer-meta { margin-top: auto; padding-top: 24px; color: var(--ink-faint); font-size: 0.82rem; }
.drawer-meta a { font-family: var(--body); font-size: 0.9rem; color: rgba(243,238,226,.7); padding: 4px 0; border: 0; }

main { padding-top: var(--header-h); }
main section[id], main [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ============================================================
   HERO — yatay timeline bandı
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--night) 0%, var(--night-2) 55%, #173d40 100%);
  color: #F3EEE2; padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 64px);
}
.starfield { position: absolute; inset: 0; pointer-events: none; }
.star-layer { position: absolute; inset: -10% 0; will-change: transform; }
.star-layer span { position: absolute; border-radius: 50%; background: #F3EEE2; opacity: .55; }
.star-layer.twinkle span { animation: twinkle var(--dur, 4s) ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes twinkle { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: .18; transform: scale(.7); } }

.hero-orbit {
  position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
  pointer-events: none; opacity: .5; animation: orbit 60s linear infinite;
}
.hero-orbit .planet { position: absolute; top: 50%; left: 0; width: 18px; height: 18px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent-2-dark)); box-shadow: 0 0 18px rgba(224,150,43,.6); }
.hero-orbit .ring { position: absolute; inset: 0; border: 1px dashed rgba(243,238,226,.22); border-radius: 50%; }
@keyframes orbit { to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow { color: var(--accent-2); }
.hero h1 { color: #FBF7EC; max-width: 14ch; }
.hero h1 .em { color: var(--accent-2); font-style: italic; }
.hero-sub { color: rgba(243,238,226,.82); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 52ch; margin-top: 0.4rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(243,238,226,.78); font-weight: 700; }
.trust-strip svg { width: 16px; height: 16px; stroke: var(--accent-2); }

/* timeline band */
.timeline-wrap { position: relative; z-index: 2; margin-top: clamp(40px, 5vw, 58px); }
.timeline-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.timeline-head h2 { color: #FBF7EC; font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 0; }
.timeline-head .hint { font-size: 0.78rem; color: rgba(243,238,226,.6); display: inline-flex; align-items: center; gap: 6px; }
.timeline-head .hint svg { width: 15px; height: 15px; stroke: var(--accent-2); }

.timeline-rail { position: relative; padding: 26px 0 8px; }
.timeline-rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 38px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243,238,226,.28) 6%, rgba(243,238,226,.28) 94%, transparent);
}
.now-marker {
  position: absolute; top: 20px; left: 4%; z-index: 3; display: flex; flex-direction: column; align-items: center;
  animation: nowDrift 9s cubic-bezier(.45,0,.25,1) infinite alternate;
}
.now-marker .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 5px rgba(224,150,43,.22), 0 0 16px rgba(224,150,43,.8); }
.now-marker .lbl { margin-top: 6px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2); background: rgba(12,27,34,.7); padding: 3px 7px; border-radius: 6px; white-space: nowrap; }
.now-marker .stem { position: absolute; top: 14px; width: 2px; height: 24px; background: linear-gradient(var(--accent-2), transparent); }
@keyframes nowDrift { from { left: 3%; } to { left: 26%; } }

.timeline-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 2px 18px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(243,238,226,.3) transparent;
}
.timeline-track::-webkit-scrollbar { height: 7px; }
.timeline-track::-webkit-scrollbar-thumb { background: rgba(243,238,226,.28); border-radius: 99px; }
.tl-card {
  scroll-snap-align: start; flex: 0 0 clamp(220px, 70vw, 270px);
  background: rgba(243,238,226,.06); border: 1px solid rgba(243,238,226,.16);
  border-radius: 16px; padding: 18px 18px 20px; color: #F3EEE2;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), background 260ms, border-color 260ms;
}
.tl-card:hover { transform: translateY(-6px); background: rgba(243,238,226,.1); border-color: rgba(224,150,43,.5); }
.tl-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 99px; margin-bottom: 14px; }
.tl-badge svg { width: 15px; height: 15px; }
.tl-badge.meteor { background: rgba(224,150,43,.16); color: var(--accent-2); }
.tl-badge.eclipse { background: rgba(14,110,106,.22); color: #6fd3cd; }
.tl-badge.planet { background: rgba(243,238,226,.12); color: #d9cfb8; }
.tl-thumb { display: block; width: 100%; height: 150px; object-fit: cover; border-radius: 12px; margin: 0 0 14px; border: 1px solid rgba(243,238,226,.14); }
.tl-date { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.tl-date .day { font-size: 2rem; font-weight: 700; font-family: var(--num); font-variant-numeric: tabular-nums; line-height: 1; color: #FBF7EC; }
.tl-date .mon { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(243,238,226,.7); }
.tl-card h3 { font-size: 1.18rem; color: #FBF7EC; margin: 0 0 6px; }
.tl-card p { font-size: 0.84rem; color: rgba(243,238,226,.74); margin: 0 0 12px; }
.tl-card .tl-link { font-size: 0.82rem; font-weight: 700; color: var(--accent-2); display: inline-flex; align-items: center; gap: 5px; }
.tl-card .tl-link svg { width: 14px; height: 14px; }
.tl-phase { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(243,238,226,.6); margin-left: auto; }
.tl-phase svg { width: 18px; height: 18px; }

/* ============================================================
   STATS band
   ============================================================ */
.stats-band { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 18px; padding: clamp(36px, 5vw, 52px) 0; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; font-size: clamp(2.1rem, 4.5vw, 3rem); color: var(--accent); line-height: 1; }
.stat .num .suf { color: var(--accent-2); }
.stat .lbl { margin-top: 8px; font-size: 0.86rem; color: var(--ink-soft); font-weight: 700; }

/* ============================================================
   TAKVİM — ay ay liste
   ============================================================ */
.cal-list { display: flex; flex-direction: column; gap: 14px; }
.cal-month { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.cal-month-head {
  display: flex; align-items: center; gap: 14px; padding: 18px clamp(18px, 3vw, 28px);
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.cal-month-head .mn { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; }
.cal-month-head .yr { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--accent); margin-left: 2px; }
.cal-month-head .cnt { margin-left: auto; font-size: 0.78rem; font-weight: 700; color: var(--ink-faint); background: var(--bg); padding: 5px 11px; border-radius: 99px; }
.cal-events { display: flex; flex-direction: column; }
.cal-event {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center;
  padding: 16px clamp(18px, 3vw, 28px); border-bottom: 1px solid var(--line);
  transition: background 200ms;
}
.cal-event:last-child { border-bottom: 0; }
.cal-event:hover { background: var(--surface-2); }
.cal-date { text-align: center; }
.cal-date .d { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 1.5rem; line-height: 1; color: var(--ink); }
.cal-date .w { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }
.cal-body { min-width: 0; }
.cal-body h4 { font-size: 1.06rem; margin: 0 0 3px; }
.cal-body p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; }
.cal-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px; white-space: nowrap; }
.cal-tag svg { width: 14px; height: 14px; }
.cal-tag.meteor { background: rgba(224,150,43,.14); color: var(--accent-2-dark); }
.cal-tag.eclipse { background: rgba(14,110,106,.13); color: var(--accent-dark); }
.cal-tag.planet { background: rgba(26,42,46,.08); color: var(--ink-soft); }
@media (max-width: 560px) {
  .cal-event { grid-template-columns: 52px 1fr; }
  .cal-tag { grid-column: 1 / -1; justify-self: start; }
}

/* ============================================================
   ETKİNLİK DETAY — featured + constellation
   ============================================================ */
.feature-split { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 960px) { .feature-split { grid-template-columns: 1.05fr 0.95fr; } }
.feature-media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--night); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.feature-media.aperture img { animation: aperture 1100ms cubic-bezier(.2,.7,.2,1) both; }
@keyframes aperture { from { clip-path: circle(0% at 60% 40%); } to { clip-path: circle(140% at 60% 40%); } }
.feature-media .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,34,.6), transparent 55%); }
.feature-media .caption { position: absolute; left: 18px; bottom: 16px; color: #F3EEE2; font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.feature-media .caption svg { width: 16px; height: 16px; stroke: var(--accent-2); }
.constellation { position: absolute; top: 14px; right: 16px; width: 120px; height: 90px; pointer-events: none; }
.constellation line, .constellation polyline { stroke: rgba(243,238,226,.7); stroke-width: 1.2; fill: none; }
.constellation circle { fill: var(--accent-2); }

.feature-detail h2 { margin-bottom: 0.4em; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.feature-list .ic { grid-row: span 2; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: inline-flex; align-items: center; justify-content: center; }
.feature-list .ic svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.feature-list strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.feature-list span { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   SÜREÇ — vertical timeline
   ============================================================ */
.process-band { background: var(--night); color: #F3EEE2; }
.process-band h2, .process-band .section-head p { color: #F3EEE2; }
.process-band .section-head p { color: rgba(243,238,226,.78); }
.steps { position: relative; margin-top: 20px; padding-left: 34px; }
.steps::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(rgba(224,150,43,.7), rgba(243,238,226,.12)); }
.step { position: relative; padding: 0 0 36px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: -34px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--night); border: 2px solid var(--accent-2); box-shadow: 0 0 0 4px rgba(12,27,34,1);
}
.step .step-num { position: absolute; left: -34px; top: 2px; width: 24px; height: 24px; display: grid; place-items: center; font-family: var(--num); font-weight: 700; font-size: 0.74rem; color: var(--accent-2); z-index: 2; }
.step .when { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); }
.step h3 { color: #FBF7EC; font-size: 1.2rem; margin: 4px 0 6px; }
.step p { color: rgba(243,238,226,.78); font-size: 0.92rem; margin: 0; max-width: 60ch; }

/* ============================================================
   AİLE PAKETİ / fiyat — pricing
   ============================================================ */
.price-grid { display: grid; gap: 22px; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms, border-color 260ms;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -28px rgba(14,110,106,.5); border-color: var(--accent); }
.price-card.featured { background: linear-gradient(170deg, var(--night), var(--night-2)); color: #F3EEE2; border-color: var(--accent-2); }
.price-card.featured h3, .price-card.featured .price .amt { color: #FBF7EC; }
.price-card.featured .price .cur, .price-card.featured .feat-list li { color: rgba(243,238,226,.85); }
.price-tag { align-self: flex-start; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: 99px; background: var(--accent-2); color: var(--night); margin-bottom: 14px; }
.price-card h3 { font-size: 1.3rem; margin: 0 0 4px; }
.price-sub { font-size: 0.82rem; color: var(--ink-faint); margin: 0 0 16px; }
.price-card.featured .price-sub { color: rgba(243,238,226,.65); }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.price .amt { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 2.3rem; line-height: 1; color: var(--ink); }
.price .cur { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); }
.feat-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.feat-list li { display: flex; gap: 9px; font-size: 0.88rem; color: var(--ink-soft); align-items: flex-start; }
.feat-list li svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; stroke: var(--accent); }
.feat-list li.no svg { stroke: var(--ink-faint); }
.feat-list li.no { color: var(--ink-faint); }
.price-card.featured .feat-list li svg { stroke: var(--accent-2); }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.price-note { text-align: center; margin-top: 22px; font-size: 0.82rem; color: var(--ink-faint); }

/* family package highlight */
.family-band { background: var(--surface-2); }
.family-inner { display: grid; gap: clamp(28px, 5vw, 48px); align-items: center; }
@media (min-width: 900px) { .family-inner { grid-template-columns: 1fr 1fr; } }
.family-card {
  background: linear-gradient(165deg, var(--accent), var(--accent-dark)); color: #F3EEE2;
  border-radius: 22px; padding: clamp(28px, 4vw, 44px); position: relative; overflow: hidden;
}
.family-card .moon-deco { position: absolute; top: -40px; right: -30px; width: 160px; height: 160px; opacity: .25; }
.family-card h3 { color: #FBF7EC; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.family-card .fp { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.family-card .fp .amt { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; color: #FBF7EC; }
.family-card .fp .cur { font-weight: 700; color: rgba(243,238,226,.85); }
.family-card .small { font-size: 0.8rem; color: rgba(243,238,226,.7); }
.family-card ul { list-style: none; padding: 0; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.family-card ul li { display: flex; gap: 9px; font-size: 0.92rem; }
.family-card ul li svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; stroke: var(--accent-2); }
.family-text h2 { margin-bottom: 0.5em; }
.family-text p { color: var(--ink-soft); }

/* ============================================================
   TESTIMONIALS — editorial grid
   ============================================================ */
.test-grid { display: grid; gap: 20px; }
@media (min-width: 720px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 24px; display: flex; flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.test-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -28px rgba(14,110,106,.5); border-color: var(--accent); }
@media (hover: none) { .test-card:hover { transform: none; box-shadow: none; border-color: var(--line); } }
.test-card .stars { display: inline-flex; gap: 2px; margin-bottom: 12px; }
.test-card .stars svg { width: 16px; height: 16px; fill: var(--accent-2); stroke: none; }
.test-card blockquote { margin: 0 0 18px; font-size: 0.96rem; color: var(--ink); line-height: 1.6; }
.test-card .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.test-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: var(--accent); flex: 0 0 42px; }
.test-card .who .meta strong { display: block; font-size: 0.9rem; }
.test-card .who .meta span { font-size: 0.78rem; color: var(--ink-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 20px clamp(18px, 3vw, 26px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-weight: 600; font-size: 1.06rem; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .chev { flex: 0 0 22px; width: 22px; height: 22px; transition: transform 320ms cubic-bezier(.2,.7,.2,1); stroke: var(--accent); }
.faq-item[open] > summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0; overflow: hidden; padding: 0 clamp(18px, 3vw, 26px);
  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; color: var(--ink-soft); font-size: 0.94rem; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA / kayit
   ============================================================ */
.cta-band { background: linear-gradient(165deg, var(--night), var(--night-2)); color: #F3EEE2; position: relative; overflow: hidden; }
.cta-band .starfield { opacity: .7; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 660px; margin: 0 auto; }
.cta-inner h2 { color: #FBF7EC; }
.cta-inner p { color: rgba(243,238,226,.82); font-size: 1.05rem; }
.cta-inner .hero-cta-row { justify-content: center; }

/* form */
.form-band { background: var(--surface-2); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(26px, 4vw, 44px); max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field.full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span.lbl { font-size: 0.84rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; transition: border-color 200ms, box-shadow 200ms; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14,110,106,.14); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent); flex: 0 0 18px;
}
.form-card .btn { margin-top: 4px; }
@media (min-width: 640px) { .form-card .submit-wrap { grid-column: 1 / -1; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--night); color: rgba(243,238,226,.8); padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand .brand { color: #F3EEE2; }
.footer-brand .brand small { color: var(--accent-2); }
.footer-brand p { color: rgba(243,238,226,.62); font-size: 0.9rem; max-width: 38ch; margin-top: 14px; }
.footer-col h4 { color: #F3EEE2; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--body); font-weight: 700; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(243,238,226,.66); font-size: 0.9rem; padding: 5px 0; }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact a { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 3px; stroke: var(--accent-2); fill: none; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(243,238,226,.12); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(243,238,226,.5); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom .legal a { font-size: 0.8rem; color: rgba(243,238,226,.5); }
.footer-bottom .legal a:hover { color: var(--accent-2); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background: linear-gradient(165deg, var(--night), var(--night-2)); color: #F3EEE2; padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 60px); position: relative; overflow: hidden; }
.page-hero .starfield { opacity: .6; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #FBF7EC; }
.page-hero p { color: rgba(243,238,226,.82); font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.8rem; color: rgba(243,238,226,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(243,238,226,.7); }
.breadcrumb a:hover { color: var(--accent-2); }

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; transition: transform 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms, border-color 240ms; }
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -22px rgba(14,110,106,.5); border-color: var(--accent); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; margin-bottom: 14px; }
.contact-card .ic svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
.contact-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.contact-card a, .contact-card .val { font-size: 0.95rem; color: var(--ink); font-weight: 700; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.82rem; color: var(--ink-faint); margin-top: 4px; }

.hours-grid { display: grid; gap: 8px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; font-size: 0.9rem; }
.hours-row.today { border-color: var(--accent); background: rgba(14,110,106,.05); }
.hours-row .day { font-weight: 700; color: var(--ink-soft); }
.hours-row .time { font-variant-numeric: tabular-nums; color: var(--ink); }

/* ============================================================
   LEGAL / longform
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.4em; }
.prose .updated { font-size: 0.84rem; color: var(--ink-faint); margin-bottom: 2em; }

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
table th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
table td { color: var(--ink-soft); }

/* ============================================================
   404 / thank-you
   ============================================================ */
.center-screen { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.center-screen .big { font-family: var(--num); font-variant-numeric: tabular-nums; font-weight: 700; font-size: clamp(4rem, 14vw, 9rem); color: var(--accent); line-height: 1; }
.center-screen p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 22px; }
.center-screen .moon-ic { width: 64px; height: 64px; margin: 0 auto 20px; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms 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; } }
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .star-layer.twinkle span { animation: none; }
html.no-js .hero-orbit, html.no-js .now-marker { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .star-layer.twinkle span, .hero-orbit, .now-marker, .feature-media.aperture img { animation: none !important; }
  .feature-media img { transition: none; }
}

/* tilt */
.tilt { transition: transform 260ms cubic-bezier(.2,.7,.2,1); transform-style: preserve-3d; }
@media (hover: none) { .tilt { transform: none !important; } }

/* ============================================================
   Cookie banner — symmetric accept / reject
   "Reddet" must carry the same visual weight as "Kabul et"
   so the choice reads as a genuine, non-dark-pattern decision.
   ============================================================ */
.cookie-banner [data-consent="reject"] {
  background: var(--ink); color: #F3EEE2; border-color: var(--ink);
}
.cookie-banner [data-consent="reject"]:hover,
.cookie-banner [data-consent="reject"]:focus-visible {
  background: #0d1f24; color: #fff; border-color: #0d1f24;
  transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(12,27,34,.7);
}
/* "Ayarlar" stays the quieter, secondary choice on its own row */
.cookie-banner [data-consent="settings"] { flex-basis: 100%; }

/* ============================================================
   Hero shooting star — occasional diagonal streak across the
   night sky. Pure CSS, no markup; honours reduced-motion.
   ============================================================ */
.hero .starfield::after {
  content: ""; position: absolute; top: 9%; left: 78%;
  width: 150px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(243,238,226,0), rgba(255,247,236,.95));
  box-shadow: 0 0 7px rgba(243,238,226,.8);
  transform: rotate(26deg) scaleX(.15); opacity: 0;
  pointer-events: none; will-change: transform, opacity;
  animation: shootingStar 12s cubic-bezier(.3,.1,.2,1) infinite; animation-delay: 5s;
}
@keyframes shootingStar {
  0%   { opacity: 0; transform: rotate(26deg) translate3d(0,0,0) scaleX(.15); }
  4%   { opacity: 1; }
  11%  { opacity: 1; }
  16%  { opacity: 0; transform: rotate(26deg) translate3d(-440px,215px,0) scaleX(1); }
  100% { opacity: 0; transform: rotate(26deg) translate3d(-440px,215px,0) scaleX(1); }
}
html.no-js .hero .starfield::after { animation: none; opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero .starfield::after { animation: none !important; opacity: 0; }
}

/* ============================================================
   Team avatars (Hakkımızda) — the initials chips sit directly on
   the card, not inside .who, so the circular .who .av rule never
   reaches them and they fell back to plain square boxes with
   corner-aligned text. Mirror the testimonial avatar treatment.
   ============================================================ */
.test-card > .av {
  display: grid; place-items: center; border-radius: 50%;
  font-family: var(--serif); font-weight: 600; color: var(--accent);
  line-height: 1; letter-spacing: 0.02em; overflow: hidden;
}

/* ============================================================
   Hamburger — interaction affordance. The toggle had no hover or
   focus feedback and could read flat against the header; give it a
   subtle resting shadow plus clear hover / focus / press states.
   ============================================================ */
.nav-toggle {
  box-shadow: 0 4px 14px -9px rgba(12, 27, 34, 0.45);
  transition: border-color 200ms ease, box-shadow 200ms ease,
              transform 200ms cubic-bezier(.2,.7,.2,1), background 200ms ease;
}
.nav-toggle:hover { border-color: var(--accent); box-shadow: 0 9px 22px -11px rgba(14, 110, 106, 0.55); transform: translateY(-1px); }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.nav-toggle:active { transform: translateY(0) scale(0.95); }
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .nav-toggle, .nav-toggle:hover, .nav-toggle:active { transform: none !important; }
}

.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: #fff !important;
}
