/* ============================================================
   GÖKPERDE — Deep-Sky Baskı & Foto-Tur
   Akromatik: saf siyah + gümüş. Passe-partout estetiği.
   ============================================================ */

:root {
  --bg: #050505;
  --surface: #0E0E0E;
  --surface-2: #141416;
  --surface-3: #1A1A1D;
  --ink: #FAFAFA;
  --ink-soft: #C4C8CF;
  --accent: #D9DDE3;
  --accent-2: #8893A6;
  --line: rgba(217, 221, 227, 0.14);
  --line-strong: rgba(217, 221, 227, 0.30);
  --header-h: 76px;
  --maxw: 1400px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
  interpolate-size: allow-keywords;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  background: var(--bg);
  color: var(--ink);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, .display, .eyebrow {
  font-family: "Futura", "Century Gothic", "Trebuchet MS", "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #050505; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
main { padding-top: var(--header-h); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 140px); }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  margin: 0 0 1.4em;
  display: inline-block;
}
.lead { color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 60ch; }

/* coordinate label decoration */
.coord {
  font-family: "Courier New", "Consolas", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
}

/* corner frame marks — passe-partout */
.frame-marks { position: relative; }
.frame-marks::before, .frame-marks::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--line-strong);
  pointer-events: none;
}
.frame-marks::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.frame-marks::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; font-size: .85rem; letter-spacing: .08em;
}
.skip-link:focus { left: 16px; top: 14px; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   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(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: height 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 8px 28px -18px rgba(0,0,0,.9);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.brand-mark {
  font-family: "Futura","Century Gothic","Trebuchet MS",sans-serif;
  font-weight: 500; font-size: 1.06rem; letter-spacing: 0.30em;
  color: var(--ink);
}
.brand-sub { font-size: .56rem; letter-spacing: .26em; color: var(--accent-2); text-transform: uppercase; }

.nav-desktop { display: none; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav-desktop a {
  position: relative;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--accent);
  transition: right 240ms var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  margin-left: 8px;
  padding: 9px 18px !important;
  border: 1px solid var(--line-strong);
  color: var(--ink) !important;
  letter-spacing: .14em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: #050505 !important; border-color: var(--ink); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

/* hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  padding: 0;
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}
.nav-toggle:hover { background: rgba(5, 5, 5, 0.62); border-color: var(--accent); }
.nav-toggle[aria-expanded="true"] { background: rgba(5, 5, 5, 0.62); border-color: var(--line-strong); }
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 1px; background: var(--ink);
  box-shadow: 0 0 6px rgba(5, 5, 5, 0.55);
  transition: transform 280ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ---------- Drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
}
.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: #0A0A0B;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 12px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block; padding: 16px 0;
  font-family: "Futura","Century Gothic",sans-serif; font-weight: 500;
  font-size: .92rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 200ms var(--ease), padding-left 200ms var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--ink); padding-left: 8px; }
.drawer .coord { display: block; margin-top: auto; padding-top: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Futura","Century Gothic",sans-serif; font-weight: 500;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease),
              box-shadow 280ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform 240ms var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: #050505; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: #050505;
  box-shadow: 0 0 0 1px rgba(217,221,227,.35), 0 10px 34px -10px rgba(217,221,227,.38); }

.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(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
/* Source is ~1505px wide; cap the photo so it never upscales on wide
   desktops. Centered via margin-auto + inset:0; the edge vignette and the
   full-width starfield blend the capped sides into the black background. */
.hero-media { position: absolute; inset: 0; z-index: 0; max-width: 1500px; margin-inline: auto; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  clip-path: inset(0 0 0 0);
  animation: aperture 1000ms var(--ease) both, kenburns 26s ease-in-out 1000ms infinite alternate;
  will-change: clip-path, transform;
}
@keyframes aperture {
  from { clip-path: circle(0% at 50% 46%); }
  to   { clip-path: circle(150% at 50% 46%); }
}
@keyframes kenburns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.13) translateY(-1.5%); }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(5,5,5,.55) 78%, rgba(5,5,5,.92) 100%),
    linear-gradient(180deg, rgba(5,5,5,.40), transparent 28%, transparent 64%, rgba(5,5,5,.82));
}

/* parallax starfield layers */
.starfield { position: absolute; inset: -10% 0; z-index: 1; pointer-events: none; }
.starfield span {
  position: absolute; border-radius: 50%; background: var(--accent);
  animation: twinkle var(--tw, 4s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes twinkle { 0%,100% { opacity: var(--o,.8); transform: scale(1); } 50% { opacity: .2; transform: scale(.7); } }

.hero-inner { position: relative; z-index: 3; padding: 40px clamp(16px,4vw,40px); }
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 4.5rem);
  letter-spacing: 0.10em;
  margin: 0 0 .35em;
  text-shadow: 0 2px 40px rgba(0,0,0,.7);
}
/* Entrance is class-driven (.hero.is-ready) via transitions, so the resting
   target state stays visible even if the page is captured early or CSS
   animations are stripped — critical above-the-fold content must never get
   stuck at opacity:0. */
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(24px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.hero h1 .word:nth-child(1) { transition-delay: 120ms; }
.hero h1 .word:nth-child(2) { transition-delay: 240ms; }
.hero h1 .word:nth-child(3) { transition-delay: 360ms; }
.hero.is-ready h1 .word { opacity: 1; transform: none; }
.hero-sub {
  color: var(--ink-soft);
  max-width: 56ch; margin: 0 auto 2.2em;
  font-size: clamp(.98rem, 1.5vw, 1.18rem);
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease) 480ms, transform 720ms var(--ease) 480ms;
}
.hero-cta { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease) 620ms, transform 720ms var(--ease) 620ms; }
.hero.is-ready .hero-sub, .hero.is-ready .hero-cta { opacity: 1; transform: none; }

.hero-coord {
  position: absolute; z-index: 3; bottom: 22px; left: clamp(16px,4vw,40px);
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease) 820ms, transform 720ms var(--ease) 820ms;
}
.hero-scroll {
  position: absolute; z-index: 3; bottom: 20px; right: clamp(16px,4vw,40px);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease) 820ms, transform 720ms var(--ease) 820ms;
}
.hero.is-ready .hero-coord, .hero.is-ready .hero-scroll { opacity: 1; transform: none; }
.hero-scroll .ln { display: block; width: 1px; height: 40px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-scroll .ln::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background: var(--accent); animation: scrolldrop 2.4s var(--ease) infinite; }
@keyframes scrolldrop { to { top: 40px; } }

/* trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
  margin-top: 2em;
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease) 760ms, transform 720ms var(--ease) 760ms;
}
.hero.is-ready .trust-strip { opacity: 1; transform: none; }
.trust-strip span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2);
}
.trust-strip svg { width: 15px; height: 15px; stroke: var(--accent); }

/* ============================================================
   REVEAL
   ============================================================ */
.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-media img, .hero h1 .word, .hero-sub, .hero-cta, .hero-coord, .hero-scroll, .trust-strip { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .starfield, .orbit-wrap, .shooting { display: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero h1 .word, html.no-js .hero-sub, html.no-js .hero-cta, html.no-js .hero-coord, html.no-js .hero-scroll, html.no-js .trust-strip { opacity: 1; transform: none; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); letter-spacing: .06em; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-accent { width: 56px; height: 1px; background: var(--accent); margin: 0 0 28px; }

/* ============================================================
   COLLECTION GALLERY
   ============================================================ */
.gallery {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery > .tile:nth-child(1) { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .gallery > .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
.tile {
  position: relative; overflow: hidden; background: var(--surface);
  aspect-ratio: 4 / 3;
}
.gallery > .tile:nth-child(1) { aspect-ratio: auto; min-height: 320px; }
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease), filter 600ms var(--ease);
  filter: grayscale(8%) contrast(1.04);
}
.tile:hover img { transform: scale(1.06); }
/* twinkle shimmer overlay on hover — shader-like */
.tile .shimmer {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity 500ms var(--ease);
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(250,250,250,.9), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(250,250,250,.8), transparent 60%),
    radial-gradient(2px 2px at 40% 70%, rgba(250,250,250,.9), transparent 60%),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(250,250,250,.8), transparent 60%),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(250,250,250,.85), transparent 60%),
    radial-gradient(2px 2px at 30% 85%, rgba(250,250,250,.8), transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 35%, rgba(250,250,250,.85), transparent 60%);
  animation: shimmerTwinkle 2.6s steps(1) infinite;
}
.tile:hover .shimmer { opacity: 1; }
@keyframes shimmerTwinkle {
  0%   { filter: brightness(1); opacity: 1; }
  25%  { filter: brightness(.4); }
  50%  { filter: brightness(1); }
  75%  { filter: brightness(.5); }
  100% { filter: brightness(1); }
}
.tile .meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 22px 20px;
  background: linear-gradient(transparent, rgba(5,5,5,.82) 60%);
  transform: translateY(8px); opacity: .92;
  transition: transform 500ms var(--ease), opacity 500ms var(--ease);
}
.tile:hover .meta { transform: none; opacity: 1; }
.tile .meta h3 { font-size: 1.05rem; letter-spacing: .08em; margin: 0 0 4px; }
.tile .meta .coord { display: block; }
.tile .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); padding: 4px 9px; border: 1px solid var(--line-strong);
  background: rgba(5,5,5,.4);
}

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.cards {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); padding: clamp(26px, 3vw, 40px);
  transition: background 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.card:hover { background: var(--surface-2); transform: translateY(-6px);
  box-shadow: 0 18px 40px -22px rgba(217,221,227,.30); }
.card .ic {
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 22px;
  transition: border-color 300ms var(--ease);
}
.card:hover .ic { border-color: var(--accent); }
.card .ic svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.card h3 { font-size: 1.06rem; letter-spacing: .07em; margin: 0 0 10px; }
.card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 640px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price {
  background: var(--surface); padding: clamp(26px, 3vw, 38px) clamp(22px,2.4vw,30px);
  display: flex; flex-direction: column;
  transition: background 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.price:hover { background: var(--surface-2); transform: translateY(-6px);
  box-shadow: 0 18px 40px -22px rgba(217,221,227,.30); }
.price.is-featured { background: var(--surface-2); outline: 1px solid var(--line-strong); outline-offset: -1px; }
.price .ptag { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px; }
.price h3 { font-size: 1.1rem; letter-spacing: .07em; margin: 0 0 6px; }
.price .amt {
  font-family: "Courier New", Consolas, monospace;
  font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 400; letter-spacing: .02em;
  color: var(--ink); margin: 14px 0 4px;
}
.price .amt small { font-size: .9rem; color: var(--accent-2); }
.price .per { font-size: .72rem; color: var(--accent-2); letter-spacing: .1em; margin-bottom: 20px; }
.price ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.price li { font-size: .86rem; color: var(--ink-soft); padding: 8px 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; }
.price li svg { width: 14px; height: 14px; stroke: var(--accent); margin-top: 5px; }
.price li.no { color: var(--accent-2); }
.price li.no svg { stroke: var(--accent-2); }
.price .btn { width: 100%; justify-content: center; }
.price-note { margin-top: 20px; color: var(--accent-2); font-size: .76rem; letter-spacing: .04em; }

/* ============================================================
   SPLIT / EDITORIAL
   ============================================================ */
.split { display: grid; gap: clamp(28px, 5vw, 72px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split.rev > .split-media { order: 2; } }
.split-media { position: relative; }
.split-media img { width: 100%; border: 1px solid var(--line); }
.split-media .coord { position: absolute; bottom: 12px; right: 12px; background: rgba(5,5,5,.6); padding: 4px 8px; }
.split-body h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
.split-body p { color: var(--ink-soft); }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 36px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface); padding: 24px 20px; }
.stat .num { font-family: "Futura","Century Gothic",sans-serif; font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: .02em; }
.stat .lbl { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-top: 6px; }

/* ============================================================
   TIMELINE (process)
   ============================================================ */
.timeline { position: relative; max-width: 920px; }
.timeline::before { content:""; position:absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl-step { position: relative; padding: 0 0 clamp(30px,4vw,52px) clamp(40px, 5vw, 64px); }
.tl-step::before {
  content:""; position:absolute; left: 3px; top: 5px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--accent);
}
.tl-step::after {
  content:""; position:absolute; left: 6px; top: 8px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: 0; transition: opacity 400ms var(--ease);
}
.tl-step.is-in::after { opacity: 1; }
.tl-step .when { display: block; }
.tl-step h3 { font-size: 1.12rem; letter-spacing: .06em; margin: 8px 0 8px; }
.tl-step p { color: var(--ink-soft); margin: 0; font-size: .92rem; max-width: 60ch; }

/* ============================================================
   CONSTELLATION SVG
   ============================================================ */
.constellation { width: 100%; max-width: 560px; }
.constellation .cl-line { stroke: var(--accent-2); stroke-width: 1; fill: none;
  stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 1600ms var(--ease); }
.constellation.is-in .cl-line { stroke-dashoffset: 0; }
.constellation .cl-star { fill: var(--accent); opacity: 0; transform-box: fill-box; transform-origin: center;
  transition: opacity 500ms var(--ease); transition-delay: calc(var(--i,0) * 130ms + 500ms); }
.constellation.is-in .cl-star { opacity: 1; filter: drop-shadow(0 0 4px rgba(217,221,227,.8)); }

/* orbital ambient */
.orbit-wrap { position: absolute; pointer-events: none; z-index: 0; opacity: .4; }
.orbit { animation: orbit 48s linear infinite; transform-origin: center; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { background: var(--surface); border: 1px solid var(--line); padding: clamp(24px,3vw,34px); }
.quote.feature { grid-column: 1 / -1; background: var(--surface-2); }
.quote p { font-size: 1rem; color: var(--ink); font-style: italic; line-height: 1.7; }
.quote .who { margin-top: 16px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); font-style: normal; }
.quote .stars { display: inline-flex; gap: 3px; margin-bottom: 14px; }
.quote .stars svg { width: 14px; height: 14px; fill: var(--accent); stroke: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  font-family: "Futura","Century Gothic",sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: .04em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px;
  background:
    linear-gradient(var(--accent),var(--accent)) center/12px 1px no-repeat,
    linear-gradient(var(--accent),var(--accent)) center/1px 12px no-repeat;
  transition: transform 300ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(90deg); opacity: .6; }
.faq .body { height: 0; padding: 0 0; overflow: hidden;
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2); }
.faq details[open] .body { height: auto; padding-block-end: 24px; }
.faq .body p { color: var(--ink-soft); margin: 0; max-width: 70ch; font-size: .94rem; }
@media (prefers-reduced-motion: reduce) { .faq .body { transition: none; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4.4vw, 3.2rem); letter-spacing: .05em; }
.cta-band p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 2em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.channel { background: var(--surface); padding: 22px 22px; display: block;
  transition: background 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.channel:hover { background: var(--surface-2); transform: translateY(-6px);
  box-shadow: 0 18px 40px -22px rgba(217,221,227,.30); }
.channel .ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; margin-bottom: 14px; transition: border-color 280ms var(--ease); }
.channel:hover .ic { border-color: var(--accent); }
.channel .ic svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.channel .clab { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2); }
.channel .cval { display: block; margin-top: 5px; color: var(--ink); font-size: 1rem; word-break: break-word; }
.channel .csub { display: block; margin-top: 4px; color: var(--accent-2); font-size: .76rem; }

/* hours */
.hours { border: 1px solid var(--line); }
.hours .row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; border-bottom: 1px solid var(--line);
  font-size: .9rem; }
.hours .row:last-child { border-bottom: 0; }
.hours .row.today { background: var(--surface-2); }
.hours .row .d { color: var(--ink-soft); letter-spacing: .08em; }
.hours .row .h { font-family: "Courier New",Consolas,monospace; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ============================================================
   FORM
   ============================================================ */
.form { background: var(--surface); border: 1px solid var(--line); padding: clamp(24px, 3vw, 38px); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field > span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 0; border-bottom: 1.5px solid var(--line-strong);
  color: var(--ink); font-family: inherit; font-size: .95rem; font-weight: 300;
  padding: 12px 4px; transition: border-color 240ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--accent-2); opacity: .6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent-2) 50%), linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 18px, calc(100% - 9px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; cursor: pointer; }
.field select option { background: var(--surface); color: var(--ink); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 12px; }
.field.kvkk span { text-transform: none; letter-spacing: .02em; color: var(--ink-soft); font-size: .82rem; 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);
}
.form .btn { margin-top: 8px; }
@media (max-width: 620px) { .form .btn { width: 100%; justify-content: center; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #070707; border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-grid h4 { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 18px; }
.footer-brand .brand-mark { font-size: 1.3rem; letter-spacing: .3em; }
.footer-brand p { color: var(--ink-soft); font-size: .88rem; max-width: 40ch; margin-top: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--ink-soft); font-size: .88rem; transition: color 200ms var(--ease); }
.footer-grid a:hover { color: var(--ink); }
.footer-meta { margin-top: clamp(44px,6vw,72px); border-top: 1px solid var(--line); padding: 24px 0 40px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.footer-meta p { margin: 0; color: var(--accent-2); font-size: .74rem; letter-spacing: .04em; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center;
  transition: border-color 240ms var(--ease), background 240ms var(--ease); }
.footer-social a:hover { border-color: var(--accent); background: var(--surface); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--ink-soft); fill: none; }
.footer-social a:hover svg { stroke: var(--ink); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 9999;
  max-width: 520px; margin: 0 auto;
  background: #0C0C0E; border: 1px solid var(--line-strong);
  padding: 22px 22px 20px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
}
.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: .92rem; letter-spacing: .08em; margin: 0 0 8px; }
.cookie-banner p { font-size: .82rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 10px 16px;
  font-family: "Futura","Century Gothic",sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: #050505; border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); color: #050505; }
/* Reject carries equal visual weight to Accept (filled, not a faint ghost). */
.cookie-actions button[data-consent="reject"] { background: var(--surface-3); border-color: var(--line-strong); color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0; border: 1px solid var(--line); border-radius: 6px;
}
.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: .88rem; }
table th { font-family: "Futura","Century Gothic",sans-serif; font-weight: 500; letter-spacing: .08em; color: var(--ink); font-size: .76rem; text-transform: uppercase; }
table td { color: var(--ink-soft); }

/* ============================================================
   DOC / LEGAL PAGES
   ============================================================ */
.page-hero { padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(32px,4vw,56px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: .06em; }
.page-hero .lead { margin-top: 12px; }
.doc { max-width: 860px; }
.doc h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); letter-spacing: .05em; margin-top: 48px; }
.doc h3 { font-size: 1.05rem; letter-spacing: .05em; margin-top: 28px; color: var(--ink); }
.doc p, .doc li { color: var(--ink-soft); font-size: .94rem; }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc .updated { color: var(--accent-2); font-size: .8rem; letter-spacing: .06em; }

/* thank you */
.thanks { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; text-align: center; padding: 60px clamp(16px,4vw,40px); }
.thanks .ic { width: 76px; height: 76px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 28px; }
.thanks .ic svg { width: 34px; height: 34px; stroke: var(--accent); fill: none; }
.thanks h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: .06em; }
.thanks p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 2em; }

/* 404 */
.err { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; text-align: center; padding: 60px clamp(16px,4vw,40px); }
.err .big { font-family: "Futura","Century Gothic",sans-serif; font-weight: 500; font-size: clamp(5rem, 18vw, 12rem); letter-spacing: .04em; line-height: 1; color: var(--ink); }
.err .coord { display: block; margin: 8px 0 24px; }
.err p { color: var(--ink-soft); margin-bottom: 2em; }

/* shooting star */
.shooting { position: absolute; top: 12%; left: -10%; width: 140px; height: 1px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent)); opacity: 0;
  animation: shoot 11s var(--ease) infinite; }
@keyframes shoot {
  0%, 92% { opacity: 0; transform: translate(0,0) rotate(18deg); }
  93% { opacity: 1; }
  100% { opacity: 0; transform: translate(70vw, 30vh) rotate(18deg); }
}

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 36px; } .mt-l { margin-top: 60px; }
.note-small { font-size: .76rem; color: var(--accent-2); letter-spacing: .04em; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.badge { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 40px; }

.avail { display: inline-flex; align-items: center; gap: 9px; font-size: .74rem; letter-spacing: .1em; color: var(--ink-soft);
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 40px; }
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(217,221,227,.6); animation: pulse 2.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217,221,227,.5);} 70% { box-shadow: 0 0 0 8px rgba(217,221,227,0);} 100% { box-shadow: 0 0 0 0 rgba(217,221,227,0);} }

.notes-list { list-style: none; padding: 0; margin: 0; }
.notes-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.notes-list .nd { font-family: "Courier New",Consolas,monospace; font-size: .72rem; color: var(--accent-2); white-space: nowrap; letter-spacing: .06em; }
.notes-list .nt { color: var(--ink-soft); font-size: .9rem; }

/* person cards */
.team { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 760px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { background: var(--surface); padding: clamp(24px,3vw,32px); }
.member .ph { aspect-ratio: 1; background: var(--surface-2); border: 1px solid var(--line); margin-bottom: 18px; position: relative; overflow: hidden; }
.member .ph img { width:100%; height:100%; object-fit: cover; filter: grayscale(20%); }
.member h3 { font-size: 1.05rem; letter-spacing: .06em; margin: 0 0 4px; }
.member .role { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.member p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

/* long URLs / e-mails never force horizontal scroll */
.footer-grid a, .footer-grid li, .doc a, .doc p, .doc li, .channel .cval, .cookie-banner p a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 640px) {
  .card .ic, .channel .ic { width: 40px; height: 40px; }
  .section-pad { padding-block: clamp(52px, 12vw, 80px); }
}

.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: var(--ink) !important;
}
