/* =========================================================
   Yıldız Defteri — gözlem geceleri
   Palet: gece + altın · Editorial dergi tipografisi
   ========================================================= */

:root {
  --bg: #0B0F1A;
  --surface: #151B2C;
  --surface-2: #1C2438;
  --ink: #ECEEF5;
  --ink-soft: #AEB6C9;
  --ink-faint: #6E7790;
  --accent: #C9A24B;
  --accent-soft: #E2C77E;
  --accent-2: #6E7BA6;
  --line: rgba(201, 162, 75, 0.18);
  --line-soft: rgba(236, 238, 245, 0.10);
  --line-strong: rgba(201, 162, 75, 0.42);
  --header-h: 74px;
  --maxw: 1080px;
  --pad: clamp(16px, 5vw, 64px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .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: "Palatino Linotype", "Iowan Old Style", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Sabit yıldız dokusu — çok hafif gece arkaplanı */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 18% 22%, rgba(236,238,245,.45), transparent),
    radial-gradient(1px 1px at 67% 14%, rgba(236,238,245,.30), transparent),
    radial-gradient(1px 1px at 41% 58%, rgba(236,238,245,.25), transparent),
    radial-gradient(1.4px 1.4px at 82% 71%, rgba(201,162,75,.35), transparent),
    radial-gradient(1px 1px at 9% 84%, rgba(236,238,245,.22), transparent),
    radial-gradient(1px 1px at 54% 88%, rgba(236,238,245,.20), transparent),
    radial-gradient(1.2px 1.2px at 92% 38%, rgba(110,123,166,.40), transparent);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, rgba(110,123,166,.16), transparent 55%),
              radial-gradient(80% 60% at 90% 110%, rgba(201,162,75,.07), transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-family: Arial, sans-serif;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----- Tipografi ----- */
.eyebrow {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--line-strong);
}

h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}

h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }

p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(11, 15, 26, 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, 15, 26, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.9);
  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: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand .brand-mark { color: var(--accent); flex: none; }
.brand small {
  display: block;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1;
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .26s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 700;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-soft);
  color: var(--bg) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--line-strong);
  background: var(--surface);
}
.nav-toggle .bar {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--ink);
  transition: transform .26s var(--ease), opacity .2s var(--ease), top .26s var(--ease);
}
.nav-toggle .bar:nth-child(1) { top: 15px; }
.nav-toggle .bar:nth-child(2) { top: 21px; }
.nav-toggle .bar:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1050;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 18px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-soft);
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 6px; }
.drawer .nav-cta {
  margin-top: 18px;
  text-align: center;
  font-style: normal;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-bottom: 0;
}
.drawer .nav-cta:hover { padding-left: 0; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(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; }

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

main { padding-top: var(--header-h); }
section[id], [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: clamp(48px, 12vh, 120px) 0 clamp(40px, 9vh, 90px);
  overflow: hidden;
}
.hero-starfield {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
  pointer-events: none;
}
.hero-star-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-constellation {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: min(760px, 96%);
  height: auto;
  z-index: 0;
  opacity: .9;
  pointer-events: none;
}
.hero-constellation .c-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  opacity: .55;
}
.hero-constellation.is-drawn .c-line {
  animation: drawline 2.2s var(--ease) forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }
.hero-constellation .c-star {
  fill: var(--accent-soft);
  opacity: 0;
}
.hero-constellation.is-drawn .c-star {
  animation: starpop .6s var(--ease) forwards;
  animation-delay: calc(1.1s + var(--i, 0) * .12s);
}
@keyframes starpop {
  0% { opacity: 0; transform: scale(.2); }
  60% { opacity: 1; }
  100% { opacity: .9; transform: scale(1); }
}

.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.9rem, 10vw, 4.5rem);
  max-width: 14ch;
  margin: 0 0 28px;
  letter-spacing: -.03em;
}
.hero h1 .word { display: inline-block; }
.hero h1 .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(4deg);
}
.no-js .hero h1 .ltr,
.is-lit .hero h1 .ltr { opacity: 1; transform: none; }
.hero h1 .ltr {
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 38ms);
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--ink-soft);
}
.trust-strip svg { color: var(--accent); flex: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.btn-primary .arr { transition: transform .26s var(--ease); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-soft);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-primary:hover .arr { transform: translateX(4px); }
/* shooting star on CTA hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -40%; left: -30%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-160%) rotate(18deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: sweep .7s var(--ease) forwards; }
@keyframes sweep { to { transform: translateX(260%) rotate(18deg); } }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ===================== SECTIONS ===================== */
section { position: relative; }
.section { padding: clamp(56px, 11vh, 120px) 0; }
.section-head { max-width: 56ch; margin-bottom: clamp(30px, 6vw, 56px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }

.divider-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
  margin: 0;
}

/* manifesto */
.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 56px);
}
@media (min-width: 880px) {
  .manifesto { grid-template-columns: 5fr 7fr; align-items: start; }
}
.manifesto-body p:first-of-type::first-letter {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  float: left;
  font-size: 4.4em;
  line-height: .76;
  padding: 8px 14px 0 0;
  color: var(--accent);
}
.manifesto-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 34px);
}
.manifesto-aside .quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 18px;
}
.manifesto-aside cite {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* stats band */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 5vw, 40px);
  padding: clamp(40px, 8vh, 72px) 0;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat .lbl {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* takımyıldız notları */
.notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 26px);
}
@media (min-width: 760px) { .notes-grid { grid-template-columns: repeat(3, 1fr); } }
.note-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.note-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -28px rgba(201,162,75,.5);
}
.note-card .note-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 20px;
}
.note-card .season {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 8px;
}
.note-card h3 { margin-bottom: 12px; }
.note-card p { font-size: .98rem; color: var(--ink-soft); margin: 0; }
.note-card .obj {
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-faint);
}

/* geceler — vertical timeline */
.timeline { position: relative; max-width: 760px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--accent-2), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 clamp(30px, 5vw, 48px) clamp(44px, 7vw, 64px);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
  position: absolute;
  left: 6px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(201,162,75,.12);
}
.tl-item .time {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.tl-item h3 { margin-bottom: 8px; font-size: clamp(1.15rem, 2.4vw, 1.45rem); }
.tl-item p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

/* rehber */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 720px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
.guide-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  min-width: 0;
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.guide-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -28px rgba(201,162,75,.45);
}
.guide-card .avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.guide-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.guide-card .role {
  font-family: Arial, sans-serif;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
  display: block;
}
.guide-card p { font-size: .96rem; color: var(--ink-soft); margin: 0; }

/* fiyat */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 24px);
}
@media (min-width: 820px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 34px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.price-card.featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -30px rgba(201,162,75,.45);
}
.price-card .tier {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.price-card.featured .tier { color: var(--accent); }
.price-card .badge {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.price-card .amount {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.7rem);
  color: var(--ink);
  margin: 14px 0 4px;
  letter-spacing: -.02em;
}
.price-card .amount span {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .04em;
}
.price-card .feat {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-card .feat li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  font-size: .95rem;
  color: var(--ink-soft);
  align-items: start;
}
.price-card .feat li svg { color: var(--accent); margin-top: 5px; }
.price-card .feat li.no { color: var(--ink-faint); }
.price-card .feat li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 22px;
  letter-spacing: .02em;
}

/* CTA katıl band */
.cta-band {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-band .container { position: relative; z-index: 2; text-align: center; padding-top: clamp(56px,10vh,100px); padding-bottom: clamp(56px,10vh,100px); }
.cta-band h2 { font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 18px; }
.cta-band p { max-width: 46ch; margin: 0 auto 30px; color: var(--ink-soft); }

/* testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 26px);
}
@media (min-width: 760px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }
.tst-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 28px);
  min-width: 0;
}
.tst-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; margin-bottom: 14px; }
.tst-card blockquote {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--ink);
}
.tst-card .who {
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.tst-card .who b { color: var(--accent); font-weight: 700; }

/* FAQ */
.faq { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px clamp(18px, 3vw, 28px) 22px 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 20px;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px) 0 0;
  overflow: hidden;
  transition: height 360ms var(--ease2), padding-block-end 360ms var(--ease2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ===================== FORM ===================== */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
}
form .grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 620px) { form .grid2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label, .field > span {
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-bottom: 2px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--surface-2);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; }
.field.kvkk label { font-size: 13.5px; 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: 3px 0 0;
  accent-color: var(--accent);
}
form .btn-primary { width: 100%; justify-content: center; }
@media (min-width: 620px) { form .btn-primary { width: auto; } }

/* ===================== CONTACT ===================== */
.contact-hero {
  padding: clamp(50px, 9vh, 96px) 0 clamp(30px, 5vh, 50px);
  min-height: 240px;
}
.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px;
  min-width: 0;
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.channel:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -28px rgba(201,162,75,.45);
}
.channel .ch-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 16px;
}
.channel .ch-name {
  font-family: Arial, sans-serif;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 7px;
}
.channel .ch-val {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel a.ch-val:hover { color: var(--accent); }
.channel .ch-sub { font-size: .88rem; color: var(--ink-faint); margin: 6px 0 0; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.hours-row .d { color: var(--ink-soft); }
.hours-row .t { color: var(--ink); letter-spacing: .02em; }
.hours-row.today { border-color: var(--line-strong); }
.hours-row.today .d { color: var(--accent); }

/* ===================== TECH PAGE ===================== */
.doc { max-width: 800px; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 38px 0 14px; }
.doc h3 { margin: 26px 0 10px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); }

/* sitemap page */
.sitemap-list { list-style: none; padding: 0; columns: 2; column-gap: 40px; }
@media (max-width: 560px) { .sitemap-list { columns: 1; } }
.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }
.sitemap-list a {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.sitemap-list a:hover { color: var(--accent); }

/* 404 */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.err-wrap .big {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5rem, 22vw, 12rem);
  color: var(--accent);
  line-height: .9;
  letter-spacing: -.04em;
}

/* ===================== TABLE ===================== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.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-scroll th, .table-scroll td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.table-scroll th {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.table-scroll td { color: var(--ink-soft); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vh, 80px) 0 28px;
  margin-top: clamp(40px, 8vh, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand .brand { font-size: 1.4rem; margin-bottom: 14px; }
.footer-col h4 {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .94rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(32px, 6vw, 50px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }

/* ===================== COOKIE ===================== */
.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: 14px;
  padding: 22px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  cursor: pointer;
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-soft); color: var(--bg); }
.cookie-actions [data-consent="reject"] { background: transparent; color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface); color: var(--ink); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-color: transparent; flex: 1 1 100%; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }

/* ===================== REVEAL / MOTION ===================== */
.reveal {
  opacity: 0;
  /* Use the independent `translate` property (not `transform`) so card
     :hover transforms are never overridden once `.is-in` is applied. */
  translate: 0 28px;
  transition: opacity 600ms var(--ease), translate 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; translate: 0 0; }
html.no-js .reveal { opacity: 1; translate: none; }

/* twinkle field */
.twinkle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: .5;
  pointer-events: none;
  animation: twinkle 4s var(--ease) infinite;
  animation-delay: calc(var(--i, 0) * -0.5s);
}
@keyframes twinkle {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .12; transform: scale(.6); }
}

/* constellation self-draw blocks (section decor) */
.con-decor {
  position: absolute;
  pointer-events: none;
  opacity: .5;
}
.con-decor .c-line {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
}
.con-decor.is-in .c-line { animation: drawline 1.6s var(--ease) forwards; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero h1 .ltr { opacity: 1 !important; transform: none !important; translate: none !important; transition: none !important; }
  .twinkle, .hero-constellation .c-line, .hero-constellation .c-star,
  .con-decor .c-line, .btn-primary::after { animation: none !important; }
  .hero-constellation .c-line { stroke-dashoffset: 0; }
  .hero-constellation .c-star { opacity: .9; }
  .con-decor .c-line { stroke-dashoffset: 0; }
  .hero-star-layer { transform: none !important; }
}

/* misc */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-l { margin-top: clamp(28px, 5vw, 44px); }
.maxw-prose { max-width: 60ch; }

.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(--bg) !important;
}
