/* =========================================================================
   style.css — Zine Witch tasarım sistemi · ORTAK YAPI (3 varyantta da aynı)
   Renk/font/aralık tokenları + varyant yoğunluk değişkenleri variant-*.css'te.
   Okunaklılık her şeyin önünde: bol nefes alanı, motifler vurgu (CLAUDE.md §4).
   Saf CSS — build adımı yok.
   ========================================================================= */

/* ---- Ortak DNA tokenları (renk/font sabit; tasarim-sistemi §3) ---------- */
:root {
  /* Renk paleti ("Harry Potter evreni" çağrışımı) */
  --c-bg:        #F5EFE3;  /* krem zemin — beyaz değil, eski kağıt */
  --c-heading:   #7A1D2F;  /* bordo — başlıklar, ciddiyet */
  --c-cta:       #C8243E;  /* ruj kırmızısı — CTA, davet */
  --c-cta-ink:   #fff;
  --c-text:      #1A1A1A;  /* daktilo siyahı — gövde */
  --c-highlight: #F4D03F;  /* highlighter sarı — SEYREK */
  --c-mystic:    #C8B5D9;  /* pastel lavanta — mistik dokunuş */
  --c-paper-line: rgba(122,29,47,.06);
  --c-card:      #FFFDF7;  /* polaroid/kart kağıdı */
  --c-muted:     #5b5048;  /* ikincil metin */
  --c-line:      rgba(26,26,26,.14);

  /* Tipografi — gövde OKUNABİLİR serif (Lora); daktilo yalnızca etiket/aksan */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;              /* paragraf/okuma metni */
  --font-mono:    'Special Elite', 'Courier New', ui-monospace, monospace; /* daktilo: nav/buton/etiket/sticker */
  --font-accent:  'Caveat', 'Segoe Script', cursive;                      /* el yazısı vurgu */

  /* Ritim */
  --space-section: 5rem;     /* bölümler arası bol nefes */
  --maxw-read:     68ch;     /* uzun metin okuma genişliği */
  --radius:        4px;
  --shadow-soft:   0 10px 30px rgba(26,26,26,.10);
  --shadow-card:   0 6px 18px rgba(26,26,26,.12);

  /* Varyant yoğunluk değişkenleri (variant-*.css ezer) — B varsayılanları */
  --grid-size:      26px;
  --grid-opacity:   1;       /* B: silik (paper-line zaten düşük alfa) */
  --tilt:           2deg;    /* polaroid eğim miktarı */
  --paper-tint:     transparent;
  --motif-strength: .9;
}

/* ---- Özel imleç: kara kedi (Varyant B — kuyruk/gaga tıklama noktası) ----
   Yalnızca tıklanabilir öğelerde; gövde metni normal imleçte kalır (okunaklılık). */
a, .btn, button, [role="button"], summary, label[for], .navbar-toggler {
  cursor:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M7%204l3.5%206M25%204l-3.5%206'%20stroke='%231A1A1A'%20stroke-width='2.4'%20fill='none'%20stroke-linecap='round'/%3E%3Cpath%20d='M16%208c-6%200-9.5%204-9.5%2010S10%2028%2016%2028s9.5-4%209.5-10S22%208%2016%208z'%20fill='%231A1A1A'/%3E%3Cpath%20d='M25%2022c4.5%201%206%204.5%204.5%207'%20stroke='%231A1A1A'%20stroke-width='2.4'%20fill='none'%20stroke-linecap='round'/%3E%3Ccircle%20cx='12.8'%20cy='17'%20r='1.5'%20fill='%23F4D03F'/%3E%3Ccircle%20cx='19.2'%20cy='17'%20r='1.5'%20fill='%23F4D03F'/%3E%3C/svg%3E") 6 4,
    pointer;
}

/* =========================== TABAN ====================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;          /* okunaklı gövde boyu */
  line-height: 1.75;           /* rahat satır yüksekliği (okunaklılık) */
  color: var(--c-text);
  background-color: var(--c-bg);
  /* Kareli kağıt zemini — saf CSS, görselsiz (silik) */
  background-image:
    linear-gradient(var(--c-paper-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-paper-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Hafif kağıt tonu/vinyet overlay (varyanta göre) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--paper-tint);
  z-index: 0;
}

p { margin: 0 0 1.1rem; max-width: var(--maxw-read); }

a { color: var(--c-heading); text-decoration: none; }
a:hover { color: var(--c-cta); }

strong { font-weight: 600; }
em { font-style: italic; }

/* ---- Başlıklar: italik serif (antika kitap kapağı) ---------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--c-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-style: italic; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-style: italic; }
h3 { font-size: 1.35rem; }

/* ---- Vurgu: el yazısı --------------------------------------------------- */
.accent {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--c-cta);
  line-height: 1.2;
}

/* =========================== DÜZEN ====================================== */
.container { max-width: 1140px; position: relative; z-index: 1; }

.section { padding: var(--space-section) 0; position: relative; }
.section + .section { padding-top: calc(var(--space-section) * .6); }

.section-head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
.section-title { margin-bottom: .4rem; }
.section-sub, .section-head p { color: var(--c-muted); margin: 0 auto; }
.section-cta { text-align: center; margin-top: 2.6rem; }

/* Bölüm etiketi — washi tape üstünde küçük başlık */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-heading);
  padding: .25rem .8rem;
  margin-bottom: 1rem;
}
.washi-label {
  position: relative;
  background: rgba(200,181,217,.38);     /* lavanta washi */
  box-shadow: 2px 2px 0 rgba(122,29,47,.06);
  transform: rotate(-1.4deg);
}
.washi-label::after {                     /* bant kenarı şeffaflığı */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.25) 7px 8px);
  pointer-events: none;
}

/* =========================== BUTONLAR =================================== */
.btn {
  font-family: var(--font-mono);
  font-size: .98rem;
  letter-spacing: .04em;
  border-radius: var(--radius);
  padding: .62rem 1.5rem;
  border-width: 2px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-cta {
  background: var(--c-cta);
  border-color: var(--c-cta);
  color: var(--c-cta-ink);
  box-shadow: 0 4px 0 rgba(122,29,47,.35);
}
.btn-cta:hover, .btn-cta:focus-visible {
  background: #ad1f35;
  border-color: #ad1f35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(122,29,47,.35);
}

.btn-outline-dark {
  border-color: var(--c-text);
  color: var(--c-text);
  background: transparent;
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: var(--c-heading);
  border-color: var(--c-heading);
  color: #fff;
}
.btn-lg { padding: .8rem 1.9rem; font-size: 1.05rem; }

/* =================== HOVER HIGHLIGHT (CHANI) ============================
   Tıklanabilir öğeye gelince arkasında highlighter-sarısı, hafif eğik
   (el çizimi hissi) bir marker belirir. KESİN istek (tasarim-sistemi §1). */
.hl { position: relative; z-index: 0; }
.hl::before {
  content: "";
  position: absolute;
  left: -.14em; right: -.14em; bottom: .04em;
  height: .5em;
  background: var(--c-highlight);
  border-radius: 2px;
  z-index: -1;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left center;
  transition: transform .24s cubic-bezier(.2,.8,.3,1);
}
.hl:hover::before, .hl:focus-visible::before { transform: skewX(-10deg) scaleX(1); }
/* Butonların kendi hover'ı var; marker'ı onlarda kapat */
.btn.hl::before { display: none; }

/* Erişilebilir odak halkası */
a:focus-visible, .btn:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(200,36,62,.45);
  outline-offset: 2px;
}

/* =========================== NAVBAR ===================================== */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(245,239,227,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
}
.site-nav { padding-top: .55rem; padding-bottom: .55rem; }

.brand { display: flex; align-items: baseline; gap: .45rem; line-height: 1; }
.brand-mark { color: var(--c-cta); font-size: 1.4rem; }
.brand-name {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: 1.7rem; color: var(--c-heading);
}
.brand-sub {
  font-family: var(--font-accent); color: var(--c-muted); font-size: 1.05rem;
}

.site-nav .nav-link {
  font-family: var(--font-mono);
  font-size: .96rem;
  color: var(--c-text);
  padding: .35rem .85rem;
}
.site-nav .nav-link.active { color: var(--c-heading); font-weight: 600; }
.site-nav .nav-link.active::before { transform: skewX(-10deg) scaleX(1); opacity: .55; }

.navbar-toggler { border-color: var(--c-line); }
.navbar-toggler:focus { box-shadow: none; }

/* =========================== HERO ====================================== */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; position: relative; }
.hero-stardust {
  position: absolute; inset: -10% -5% auto -5%; height: 70%;
  color: var(--c-mystic);
  opacity: .55; pointer-events: none; z-index: 0;
}
.hero-stardust .motif-stars { width: 100%; height: 100%; }
/* Varyanta özel hero katmanları — varsayılan gizli; A desk-extras, C hero-cosmos açar */
.hero-cosmos, .desk-extras { display: none; }
.hero .container { position: relative; z-index: 2; }
.hero .container { z-index: 1; }

.eyebrow { margin-bottom: .4rem; }
.hero-title { margin-bottom: 1.1rem; }
.hero-title em { color: var(--c-cta); font-style: italic; }
.hero-lead { font-size: 1.05rem; color: var(--c-text); max-width: 48ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.2rem; }
.hero-trust { display: flex; align-items: center; gap: .6rem; color: var(--c-muted); font-size: .95rem; }

/* Polaroid hero portresi */
.polaroid {
  background: var(--c-card);
  padding: .7rem .7rem 2.4rem;
  box-shadow: var(--shadow-card);
  border-radius: 2px;
  position: relative;
}
.polaroid-hero {
  width: min(360px, 80%);
  margin: 0 auto;
  transform: rotate(var(--tilt));
}
.polaroid-photo {
  aspect-ratio: 4/5;
  border-radius: 1px;
  background: linear-gradient(150deg, #efe3cf, #d9c7e0 70%, #cdbbd8);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.photo-portrait { background: linear-gradient(160deg, #e7d9c4, #c9b6da); }
.photo-initials {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: 4rem; color: rgba(122,29,47,.5);
}
.polaroid-caption { text-align: center; margin: .7rem 0 0; font-size: 1.35rem; }

/* Washi tape şeridi */
.washi {
  position: absolute; width: 120px; height: 34px;
  background: rgba(244,208,63,.55);
  box-shadow: 0 1px 4px rgba(26,26,26,.12);
}
.washi::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(255,255,255,.3) 9px 11px);
}
.washi-top { top: -16px; left: 50%; transform: translateX(-50%) rotate(-4deg); }

/* Hero motifleri */
.budgie-on-photo {
  position: absolute; right: 8px; bottom: 8px; width: 64px; height: 64px;
  color: var(--c-heading); opacity: .9;
}
.flower-hero {
  position: absolute; right: -6px; top: -10px; width: 56px; height: 84px;
  color: var(--c-mystic); opacity: var(--motif-strength);
}

/* =================== HAKKIMDA + SOY AĞACI ============================== */
.about-section p { color: var(--c-text); }
.readmore { font-weight: 600; }

.lineage {
  background: var(--c-card);
  border: 1px dashed rgba(122,29,47,.35);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.lineage-intro { margin: 0 0 .8rem; font-size: 1.45rem; }
.lineage-list { list-style: none; margin: 0; padding: 0; }
.lineage-node {
  position: relative; padding: .55rem 0 .55rem 1.4rem;
  border-left: 2px solid var(--c-mystic);
}
.lineage-node::before {
  content: "✦"; position: absolute; left: -.62em; top: .5rem;
  color: var(--c-cta); font-size: .8rem; background: var(--c-card); padding: 0 2px;
}
.lineage-node + .lineage-node { margin-top: .1rem; }
.lineage-name { display: block; font-family: var(--font-heading); font-style: italic;
  font-size: 1.3rem; color: var(--c-heading); }
.lineage-note { display: block; font-size: .92rem; color: var(--c-muted); }

/* =========================== EĞİTİM KARTLARI =========================== */
.courses-grid { margin-top: .5rem; }
.course-card {
  padding: .6rem .6rem 1.2rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tilt-l { transform: rotate(calc(var(--tilt) * -1)); }
.tilt-r { transform: rotate(var(--tilt)); }
.course-card:hover { transform: translateY(-6px) rotate(0); box-shadow: var(--shadow-soft); z-index: 2; }
.course-cover {
  aspect-ratio: 5/4;
  background: linear-gradient(150deg, #ece0cb, #cdbbd8);
  display: grid; place-items: center; position: relative;
}
.course-index {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: 3.2rem; color: rgba(122,29,47,.32);
}
.course-moon { position: absolute; right: 10px; bottom: 10px; width: 26px; height: 26px; }
.course-body { padding: .9rem .5rem 0; }
.course-title { font-size: 1.18rem; margin: .5rem 0 .5rem; line-height: 1.2; }
.course-summary { font-size: .92rem; color: var(--c-muted); margin-bottom: .6rem; }
.course-more { font-size: 1.15rem; }
.course-link { z-index: 3; }

/* Etiket / chip (sticker — daktilo) */
.chip {
  display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  background: var(--c-heading); color: #fff;
  padding: .12rem .6rem; border-radius: 999px; margin: 0 .25rem .25rem 0;
}
.chip-soft { background: rgba(200,181,217,.5); color: var(--c-heading); }

/* =========================== BLOG NOTLARI ============================== */
.note-card {
  position: relative; height: 100%;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.note-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.note-clip {
  position: absolute; top: -10px; left: 22px; width: 30px; height: 20px;
  border: 3px solid var(--c-mystic); border-bottom: none;
  border-radius: 8px 8px 0 0; background: transparent;
}
.note-date { font-family: var(--font-mono); font-size: .8rem; color: var(--c-muted); letter-spacing: .05em; }
.note-title { font-size: 1.3rem; margin: .3rem 0 .5rem; }
.note-excerpt { font-size: .92rem; color: var(--c-muted); }
.note-more { font-size: 1.1rem; }

/* =========================== YORUMLAR ================================== */
.reviews-section { background: linear-gradient(180deg, transparent, rgba(200,181,217,.12)); }
.reviews-summary, .hero-trust { font-family: var(--font-mono); }
.review-card {
  height: 100%; margin: 0;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--c-mystic);
}
.review-body { font-size: .96rem; margin: .5rem 0 .8rem; color: var(--c-text); }
.review-author { font-size: 1.25rem; }

/* Yıldız puanı */
.stars { white-space: nowrap; letter-spacing: 1px; line-height: 1; }
.stars .star { color: var(--c-highlight); font-size: 1.05rem; }
.stars .star.empty { color: rgba(26,26,26,.22); }
.stars .star.half {
  position: relative; color: rgba(26,26,26,.22);
}
.stars .star.half::before {
  content: "★"; position: absolute; left: 0; width: 50%; overflow: hidden; color: var(--c-highlight);
}

/* =========================== NEWSLETTER ================================ */
.newsletter-card {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.newsletter-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 0%, rgba(200,181,217,.25), transparent 45%);
}
.newsletter-note { color: var(--c-muted); }
.news-kvkk, .footer-kvkk { display: block; margin-top: .5rem; font-size: .78rem; color: var(--c-muted); }
.flower-news {
  position: absolute; left: -8px; bottom: -14px; width: 60px; height: 90px;
  color: var(--c-mystic); opacity: .8;
}

/* =========================== İLETİŞİM ================================== */
.contact-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.contact-list li { margin-bottom: .35rem; font-size: 1.02rem; }
.contact-aside {
  background: var(--c-card); border: 1px dashed rgba(122,29,47,.3);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow-soft);
}
.contact-moon { width: 40px; height: 40px; margin-bottom: .6rem; }
.contact-quote { font-size: 1.8rem; margin: 0 0 .3rem; color: var(--c-heading); }
.contact-sub { color: var(--c-muted); margin: 0; }

/* =========================== FOOTER =================================== */
.site-footer {
  margin-top: var(--space-section);
  background: #efe6d6;
  border-top: 1px solid var(--c-line);
  padding-bottom: 1.5rem;
}
.moon-divider {
  display: flex; justify-content: center; gap: .5rem;
  padding: 1.4rem 0; margin-top: -1px;
}
.moon { color: var(--c-mystic); }
.moon-disc { fill: var(--c-mystic); }
.moon-shadow { fill: #efe6d6; }

.footer-cols { padding-top: 1.5rem; }
.footer-brand {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: 1.6rem; color: var(--c-heading);
}
.footer-brand .brand-mark { color: var(--c-cta); }
.footer-tag { color: var(--c-muted); font-size: .92rem; margin: .6rem 0; }
.footer-handwriting { font-family: var(--font-accent); font-size: 1.4rem; color: var(--c-cta); }
.footer-h {
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-heading); margin-bottom: .8rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: var(--c-text); font-size: .94rem; }
.footer-news-note { font-size: .9rem; color: var(--c-muted); }
.footer-news .btn { white-space: nowrap; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  justify-content: space-between; align-items: center;
  margin-top: 2.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--c-line);
}
.footer-copy { margin: 0; font-size: .85rem; color: var(--c-muted); }
.footer-legal { list-style: none; display: flex; gap: 1.1rem; margin: 0; padding: 0; }
.footer-legal a { font-size: .85rem; color: var(--c-muted); }

/* form alanları */
.form-control {
  font-family: var(--font-body);
  border: 2px solid var(--c-line);
  border-radius: var(--radius);
  background: #fffdf7;
}
.form-control:focus {
  border-color: var(--c-mystic);
  box-shadow: 0 0 0 .2rem rgba(200,181,217,.4);
}

/* =================== HERO EK (gerçek içerik) =========================== */
.hero-sub {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--c-heading); margin-bottom: 1rem;
}
.hero-cta { align-items: center; }
.hero-altlink { font-size: .95rem; font-weight: 600; }
.hero-flair { margin: 1.1rem 0 0; font-size: 1.4rem; }

/* =================== GÜNCEL DUYURU (rotasyonlu) ======================= */
.announce {
  background: rgba(200,181,217,.20);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: .7rem 0;
}
.announce-inner { display: flex; align-items: center; gap: 1rem; }
.announce-badge {
  font-family: var(--font-accent); color: var(--c-cta);
  font-size: 1.3rem; white-space: nowrap; flex-shrink: 0;
}
.announce-track { flex: 1; min-width: 0; }
.announce-item { margin: 0; font-size: .98rem; color: var(--c-text); }
.announce-item:not(.is-active) { display: none; }          /* JS yoksa ilki görünür */
.announce-item.is-active { animation: announceFade .5s ease; }
@keyframes announceFade { from { opacity: 0; } to { opacity: 1; } }

/* =================== DANIŞMANLIK KARTLARI ============================= */
.consult-card {
  height: 100%; text-align: center;
  background: var(--c-card);
  border: 1px dashed rgba(122,29,47,.3);
  border-radius: var(--radius);
  padding: 1.9rem 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.consult-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.consult-moon { width: 34px; height: 34px; margin-bottom: .7rem; }
.consult-title { font-size: 1.45rem; margin-bottom: .3rem; }
.consult-note { color: var(--c-muted); margin: 0; font-size: .95rem; }

/* =================== YORUM (testimonial — yıldızsız) ================== */
.review-quote {
  font-family: var(--font-heading); font-size: 2.6rem; line-height: .1;
  color: var(--c-mystic); display: block; height: .5em;
}

/* =================== VARYANT SWITCHER (önizleme) ===================== */
.variant-switcher {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 70;
  display: flex; align-items: center; gap: .35rem;
  background: var(--c-text); color: #f3ece0;
  padding: .4rem .55rem; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono); font-size: .78rem;
}
.vs-label { opacity: .7; margin: 0 .15rem 0 .25rem; }
.vs-btn {
  display: inline-grid; place-items: center; width: 1.7rem; height: 1.7rem;
  border-radius: 50%; color: #f3ece0; text-decoration: none;
  border: 1px solid rgba(255,255,255,.28); line-height: 1;
}
.vs-btn:hover { color: #fff; border-color: var(--c-highlight); }
.vs-btn.active { background: var(--c-cta); border-color: var(--c-cta); color: #fff; }
.vs-name { margin-left: .35rem; font-size: 1.05rem; color: var(--c-highlight); }
@media (max-width: 575.98px) {
  .vs-label, .vs-name { display: none; }
  .variant-switcher { left: .5rem; bottom: .5rem; }
}

/* =================== SOON / 404 ======================================= */
.soon-section { padding-top: 4rem; }
.soon-moons { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1.4rem; }
.soon-moons .moon-phase { width: 30px; height: 30px; }
.moon-phase .moon-disc { fill: var(--c-mystic); }
.moon-phase .moon-shadow { fill: var(--c-bg); }
.soon-lead { max-width: 52ch; margin: 0 auto 1rem; color: var(--c-muted); }
.soon-accent { font-size: 1.7rem; margin-bottom: 1.4rem; }

/* =================== ÇEREZ BANDI / FLASH =============================== */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  max-width: 720px; margin: 0 auto;
  background: var(--c-text); color: #f3ece0;
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: .8rem 1rem; font-size: .9rem;
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
}
.cookie-bar a { color: var(--c-highlight); }
.flash-wrap { margin-top: 1rem; }

/* =================== DUYARLILIK / ERİŞİLEBİLİRLİK ===================== */
.skip-link {
  position: absolute; top: .5rem; left: .5rem; z-index: 100;
  background: var(--c-heading); color: #fff; padding: .5rem .9rem; border-radius: var(--radius);
}

@media (max-width: 991.98px) {
  :root { --space-section: 3.4rem; }
  .site-nav .nav-link { padding: .5rem .2rem; }
  .hero-lead { max-width: none; }
  .polaroid-hero { margin-top: 1.5rem; }
}

/* Scroll-reveal — yalnızca JS etkinleştirince (no-JS'te içerik tam görünür) */
body.js-reveal main > .section,
body.js-reveal main > .hero {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
body.js-reveal main > .section.in,
body.js-reveal main > .hero.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  body.js-reveal main > .section,
  body.js-reveal main > .hero { opacity: 1; transform: none; }
}
