/* ============================================================
   SOULIVE COLLECTIVE — tasarım sistemi
   Açık & huzurlu: krem zemin, adaçayı yeşili vurgu, toprak
   tonları, altın mistik detaylar. Tek accent + tek imza gölge.
   ============================================================ */

:root {
  /* Renk */
  --bg:          #FBF8F2;   /* ana zemin — sıcak krem */
  --bg-2:        #F4EEE2;   /* derin krem bölüm zemini */
  --bg-dark:     #2A312B;   /* footer / koyu bölüm — adaçayı-kömür */
  --ink:         #2E2A24;   /* ana metin */
  --ink-2:       #4A443A;   /* ikincil metin */
  --muted:       #8B8172;   /* soluk metin */
  --border:      #E6DECE;   /* ince kenarlıklar */
  --accent:      #6E8B6B;   /* ADAÇAYI YEŞİLİ — tek vurgu */
  --accent-deep: #54704F;   /* hover */
  --accent-soft: #EAF0E7;   /* çok açık yeşil dolgu */
  --gold:        #B08A3E;   /* altın — yalnız ince mistik detaylarda */
  --gold-soft:   #EBDFC2;
  --terra:       #C4795A;   /* toprak — nadir ikincil sıcaklık */

  /* Tipografi */
  --f-serif: 'Fraunces', 'Georgia', serif;   /* karakterli editoryal serif — başlıklar */
  --f-sans:  'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Köşe — yumuşak ama disiplinli */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;

  /* Spacing (8px taban) */
  --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-6: 24px;
  --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* İmza gölge (tek tip, seyrek kullan) */
  --shadow: 0 24px 60px -24px rgba(46, 42, 36, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-deep); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-dar { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ---- Tipografi ---- */
h1, h2, h3, .serif { font-family: var(--f-serif); color: var(--ink); font-optical-sizing: auto; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.8vw, 66px); font-weight: 500; line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; margin-bottom: var(--s-4); }
h3 { font-size: 23px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
.lead { font-size: 19px; line-height: 1.7; color: var(--ink-2); text-wrap: pretty; }
.muted { color: var(--muted); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: var(--s-3); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .6; }

/* Bölüm süsü — ince altın çizgi + özel işaret (unicode değil, SVG) */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin: var(--s-8) auto;
}
.ornament svg { width: 18px; height: 18px; flex: 0 0 auto; opacity: .8; }
.ornament::before, .ornament::after {
  content: ''; height: 1px; width: min(120px, 20vw);
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: .45;
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* İngilizce marka adının Türkçe locale'de yanlış büyütülmesini engelle (Soulive → SOULİVE değil) */
.brand-word, .marka-latin { text-transform: none; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; font-family: var(--f-sans);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: #fff; border-color: var(--gold-soft); color: var(--ink); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #97742F; color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ---- Üst menü ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(251, 248, 242, 0.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; max-width: 220px; display: block; }
.site-footer .brand-logo { height: 34px; }
.brand-word { font-family: var(--f-serif); font-size: 23px; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.brand-word em { font-style: normal; font-weight: 500; color: var(--accent-deep); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.main-nav > a { font-size: 15px; font-weight: 500; color: var(--ink-2); position: relative; padding: 6px 0; }
.main-nav > a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s;
}
.main-nav > a:hover { color: var(--ink); }
.main-nav > a:hover::after { width: 100%; }
.nav-auth { display: flex; align-items: center; gap: var(--s-4); margin-left: var(--s-4); }
.nav-auth > a { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-admin { color: var(--gold) !important; font-weight: 600 !important; }
.nav-user { display: inline-flex; align-items: center; gap: 8px; font-weight: 600 !important; color: var(--ink) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---- Flash mesajlar ---- */
.flash { padding: var(--s-3) 0; font-size: 15px; font-weight: 500; }
.flash-bilgi  { background: var(--accent-soft); color: var(--accent-deep); }
.flash-uyari  { background: #FBEED8; color: #8A6215; }
.flash-hata   { background: #F7E3DC; color: #9C4A2E; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 10vw, 130px) 0 clamp(64px, 9vw, 110px);
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  animation: nefes 9s ease-in-out infinite;
}
.hero-blob.b1 { width: 520px; height: 520px; background: #DCE7D6; top: -180px; left: -120px; }
.hero-blob.b2 { width: 460px; height: 460px; background: var(--gold-soft); top: -140px; right: -100px; animation-delay: -3s; }
.hero-blob.b3 { width: 380px; height: 380px; background: #F0E4D2; bottom: -200px; left: 38%; animation-delay: -6s; }
@keyframes nefes {
  0%, 100% { transform: scale(1); opacity: .45; }
  50%      { transform: scale(1.14); opacity: .6; }
}
.hero-mandala {
  position: absolute; top: 50%; left: 50%; width: min(720px, 90vw); height: min(720px, 90vw);
  transform: translate(-50%, -50%);
  opacity: .5; animation: donus 240s linear infinite;
}
@keyframes donus { to { transform: translate(-50%, -50%) rotate(360deg); } }
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { max-width: 820px; margin: 0 auto var(--s-6); }
.hero h1 .vurgu { color: var(--accent-deep); font-style: italic; }
.hero .lead { max-width: 640px; margin: 0 auto var(--s-8); }
.hero-cta { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }
.hero-alt-not { margin-top: var(--s-6); font-size: 14px; color: var(--muted); }

/* ---- Bölüm ritmi ---- */
.section { padding: var(--s-24) 0; }
.section-tight { padding: var(--s-16) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: var(--s-12); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--ink-2); font-size: 17px; }

/* ---- Üç alan (pillar) kartları ---- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.pillar {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-8); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.pillar-ikon {
  width: 54px; height: 54px; border-radius: 14px;   /* daire değil yumuşak kare — daha az jenerik */
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-6);
}
.pillar-ikon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: var(--s-3); }
.pillar p { color: var(--ink-2); font-size: 15.5px; margin-bottom: var(--s-6); }
.pillar .pillar-link { font-weight: 600; font-size: 15px; color: var(--accent-deep); }
.pillar .pillar-link::after { content: ' →'; transition: margin-left .2s; }
.pillar:hover .pillar-link::after { margin-left: 4px; }

/* ---- Dergi kartları (tarot havası) ---- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.article-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s, border-color .35s;
}
.article-card:hover { transform: translateY(-8px) rotate(-0.4deg); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.article-cover {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.article-cover .kat-mark {
  width: 48px; height: 48px; color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 14px rgba(46,42,36,0.22));
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
}
.article-card:hover .kat-mark { transform: translateY(-3px) scale(1.06); }
.article-cover .kapak-kat {
  position: absolute; left: 18px; bottom: 14px;
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  font-size: 20px; color: rgba(255,255,255,0.95); letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(46,42,36,0.3);
}
/* kategori zemin gradyanları */
.cover-tarot             { background: linear-gradient(135deg, #3E4A5A, #6B7A8F); }
.cover-cakra-enerji      { background: linear-gradient(135deg, #7B8F6C, #B9A461); }
.cover-meditasyon-mantra { background: linear-gradient(135deg, #6E8B6B, #9DB598); }
.cover-nefes             { background: linear-gradient(135deg, #8FA8A3, #C4D5CE); }
.cover-holistik-saglik   { background: linear-gradient(135deg, #A8845C, #D3B78C); }
.cover-rituel-ay         { background: linear-gradient(135deg, #494356, #857C99); }
.cover-kristaller        { background: linear-gradient(135deg, #9B7E8E, #C9B2BE); }
.cover-wellness-spa      { background: linear-gradient(135deg, #C4795A, #E0B396); }
.article-cover::after {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(255,255,255,.35); border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.article-body { padding: var(--s-6); display: flex; flex-direction: column; flex: 1; }
.article-kat { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-3); }
.article-body h3 { font-size: 22px; margin-bottom: var(--s-3); }
.article-body h3 a { color: var(--ink); }
.article-body h3 a:hover { color: var(--accent-deep); }
.article-excerpt { font-size: 15px; color: var(--ink-2); flex: 1; }
.article-meta { margin-top: var(--s-4); font-size: 13.5px; color: var(--muted); display: flex; gap: 12px; }

/* ---- Yazı sayfası (prose) ---- */
.prose { font-size: 17.5px; line-height: 1.8; color: var(--ink-2); }
.prose p { margin-bottom: var(--s-6); }
.prose h2 { font-size: 30px; margin: var(--s-12) 0 var(--s-4); }
.prose h3 { font-size: 23px; margin: var(--s-8) 0 var(--s-3); }
.prose ul, .prose ol { margin: 0 0 var(--s-6) var(--s-6); }
.prose li { margin-bottom: var(--s-2); }
.prose blockquote {
  font-family: var(--f-serif); font-size: 24px; font-style: italic; line-height: 1.5;
  color: var(--ink); border: none; text-align: center;
  padding: var(--s-8) var(--s-6); margin: var(--s-8) 0; position: relative;
}
.prose blockquote::before, .prose blockquote::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--gold); opacity: .6;
}
.prose blockquote::before { top: 0; }
.prose blockquote::after { bottom: 0; }
.prose .not-kutusu {
  background: var(--accent-soft); border: 1px solid #D8E4D4; border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-8); margin-top: var(--s-12);
}
.prose .not-kutusu h3 { margin-top: 0; color: var(--accent-deep); font-size: 20px; }
.prose .not-kutusu p { margin-bottom: 0; font-size: 16px; }
.yazi-hero { padding: var(--s-16) 0 var(--s-12); text-align: center; }
.yazi-hero .article-kat { margin-bottom: var(--s-4); }
.yazi-hero h1 { max-width: 760px; margin: 0 auto var(--s-4); font-size: clamp(32px, 4.6vw, 52px); }
.yazi-meta { color: var(--muted); font-size: 14.5px; display: flex; gap: 14px; justify-content: center; }
.yazi-tags { margin-top: var(--s-12); display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tag {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 999px;
}

/* ---- Etkinlik kartları ---- */
.event-list { display: grid; gap: var(--s-4); }
.event-card {
  display: grid; grid-template-columns: 120px 1fr auto; gap: var(--s-6); align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.event-card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.event-date {
  text-align: center; border-right: 1px solid var(--border); padding-right: var(--s-6);
  font-family: var(--f-serif); color: var(--accent-deep);
  font-size: 17px; font-weight: 600; line-height: 1.35;
}
.event-info h3 { font-size: 21px; margin-bottom: 4px; }
.event-info h3 a { color: var(--ink); }
.event-info h3 a:hover { color: var(--accent-deep); }
.event-loc { font-size: 14px; color: var(--muted); margin-bottom: var(--s-2); }
.event-desc { font-size: 15px; color: var(--ink-2); }
.event-kat {
  display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.event-cta { white-space: nowrap; }
.etkinlik-filtre { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-8); }
.etkinlik-filtre a {
  font-size: 14px; font-weight: 500; padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--ink-2); background: #fff;
  transition: all .2s;
}
.etkinlik-filtre a:hover { border-color: var(--accent); color: var(--accent-deep); }
.etkinlik-filtre a.aktif { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---- Forum ---- */
.avatar {
  width: var(--boy, 40px); height: var(--boy, 40px); flex: 0 0 var(--boy, 40px);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: hsl(var(--hue, 120), 28%, 86%); color: hsl(var(--hue, 120), 32%, 30%);
  font-weight: 700; font-size: calc(var(--boy, 40px) * 0.42);
  font-family: var(--f-sans);
}
.forum-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.forum-cat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6); display: flex; justify-content: space-between; gap: var(--s-4); align-items: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.forum-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.forum-cat h3 { font-size: 21px; margin-bottom: 4px; }
.forum-cat h3 a { color: var(--ink); }
.forum-cat p { font-size: 14.5px; color: var(--muted); }
.forum-cat .sayi { font-family: var(--f-serif); font-size: 30px; color: var(--accent-deep); font-weight: 500; font-variant-numeric: tabular-nums; }
.forum-cat .sayi small { display: block; font-family: var(--f-sans); font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; text-align: center; }
.topic-list { display: grid; gap: var(--s-3); }
.topic-row {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6); display: flex; align-items: center; gap: var(--s-4);
  transition: border-color .2s, box-shadow .2s;
}
.topic-row:hover { border-color: var(--gold-soft); box-shadow: var(--shadow); }
.topic-row .topic-main { flex: 1; min-width: 0; }
.topic-row h3 { font-size: 18.5px; font-family: var(--f-sans); font-weight: 600; }
.topic-row h3 a { color: var(--ink); }
.topic-row h3 a:hover { color: var(--accent-deep); }
.topic-alt { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.topic-stats { text-align: right; font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.topic-stats strong { display: block; font-size: 17px; color: var(--ink-2); font-weight: 600; }
.pin-badge { color: var(--gold); font-size: 13px; font-weight: 600; margin-right: 6px; }

.post {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6); display: flex; gap: var(--s-6); margin-bottom: var(--s-4);
}
.post-side { text-align: center; width: 90px; flex: 0 0 90px; }
.post-side .avatar { margin: 0 auto 8px; }
.post-side .kullanici { font-weight: 600; font-size: 14px; word-break: break-word; }
.post-side .rol { font-size: 11.5px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.post-body { flex: 1; min-width: 0; }
.post-body .post-tarih { font-size: 13px; color: var(--muted); margin-bottom: var(--s-3); }
.post-body p { margin-bottom: var(--s-3); color: var(--ink-2); }
.post-ilk { border-color: #D8E4D4; background: linear-gradient(180deg, #FDFCF8, #fff); }

/* ---- Formlar ---- */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-8); max-width: 460px; margin: 0 auto;
}
.form-card.genis { max-width: 640px; }
.form-group { margin-bottom: var(--s-6); }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="url"], textarea, select {
  width: 100%; padding: 12px 16px; font-size: 15.5px; font-family: var(--f-sans);
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { min-height: 140px; resize: vertical; }
.form-alt { font-size: 14px; color: var(--muted); text-align: center; margin-top: var(--s-4); }
.form-hata {
  background: #F7E3DC; color: #9C4A2E; border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4); font-size: 14.5px; margin-bottom: var(--s-6);
}
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ---- Nefes widget'ı ---- */
.breath-section { text-align: center; position: relative; overflow: hidden; }
.breath-circle-wrap { position: relative; width: 240px; height: 240px; margin: var(--s-12) auto var(--s-8); }
.breath-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--gold); opacity: .3; }
.breath-ring.r2 { inset: -22px; opacity: .18; }
.breath-ring.r3 { inset: -44px; opacity: .1; }
.breath-circle {
  position: absolute; inset: 30px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #A9C0A2, var(--accent) 65%, var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--f-serif); font-size: 21px; font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 4s ease-in-out;
}
.breath-circle.grow { transform: scale(1.28); }
.breath-circle.shrink { transform: scale(1); }

/* ---- Bülten bandı ---- */
.newsletter-band {
  background: var(--bg-dark); color: #EDE9DF;
  border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden; text-align: center;
}
.newsletter-band h2 { color: #F6F3EA; }
.newsletter-band p { color: rgba(237,233,223,.75); max-width: 520px; margin: 0 auto var(--s-8); }
.newsletter-band .moon {
  position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  border-radius: 50%; border: 1px solid rgba(176,138,62,.4);
  pointer-events: none;
}
.newsletter-band .moon::after {
  content: ''; position: absolute; inset: 24px; border-radius: 50%;
  border: 1px solid rgba(176,138,62,.25);
}
.newsletter-form { display: flex; gap: var(--s-3); max-width: 440px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input[type="email"]:focus { background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(176,138,62,.25); border-color: var(--gold); }

/* ---- Sayı bandı ---- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); text-align: center; }
.stat .sayi { font-family: var(--f-serif); font-size: clamp(38px, 5vw, 56px); font-weight: 500; color: var(--accent-deep); line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat .etiket { font-size: 13.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; }

/* ---- Footer ---- */
.site-footer { background: var(--bg-dark); color: rgba(237,233,223,.72); padding: var(--s-16) 0 var(--s-6); margin-top: var(--s-24); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--s-12); margin-bottom: var(--s-12); }
.footer-col h4 { color: #F6F3EA; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: var(--s-4); font-weight: 600; }
.footer-col a { display: block; color: rgba(237,233,223,.65); font-size: 14.5px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 14.5px; line-height: 1.7; }
.footer-brand .brand-word { color: #F6F3EA; }
.footer-brand .brand-word em { color: var(--gold); }
.footer-tagline { margin: var(--s-4) 0; font-family: var(--f-serif); font-size: 17px; font-style: italic; color: rgba(237,233,223,.8) !important; }
.footer-social { font-size: 13.5px; color: rgba(237,233,223,.45); }
.footer-newsletter .newsletter-form { margin-top: var(--s-4); }
.footer-newsletter .newsletter-form input[type="email"] { padding: 10px 14px; font-size: 14px; }
.footer-newsletter .btn { padding: 10px 20px; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(237,233,223,.14); padding-top: var(--s-6);
  display: flex; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap;
  font-size: 13px; color: rgba(237,233,223,.45);
}
.footer-disclaimer { max-width: 560px; }

/* ---- Sayfa başlığı: h1 ama h2 ölçüsünde (SEO için tek h1, görsel h2) ---- */
h1.sayfa-basligi { font-size: clamp(30px, 3.6vw, 42px); font-weight: 600; line-height: 1.15; margin-bottom: var(--s-4); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.gorunur { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
/* JS yoksa reveal öğeleri gizli kalmasın (aşağıdaki <noscript> ile birlikte) */
.no-js .reveal { opacity: 1; transform: none; }

/* ---- Yardımcılar ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 18px; z-index: 100; }
.skip-link:focus { left: 0; }
.center { text-align: center; }
.mt-4 { margin-top: var(--s-4); } .mt-6 { margin-top: var(--s-6); } .mt-8 { margin-top: var(--s-8); } .mt-12 { margin-top: var(--s-12); }
.mb-6 { margin-bottom: var(--s-6); } .mb-8 { margin-bottom: var(--s-8); }
.empty-state { text-align: center; padding: var(--s-16) var(--s-6); color: var(--muted); }
.empty-state .isaret { color: var(--gold); display: block; margin: 0 auto var(--s-4); width: 34px; height: 34px; }
.empty-state .isaret svg { width: 100%; height: 100%; }
.pagination { display: flex; gap: var(--s-2); justify-content: center; margin-top: var(--s-12); }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 14.5px; font-weight: 500;
  color: var(--ink-2); background: #fff;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent-deep); }
.pagination .aktif { background: var(--accent); border-color: var(--accent); color: #fff; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: var(--s-6); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .pillars, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: var(--s-16) 0; }
  .pillars, .article-grid, .forum-cats { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: var(--s-4) clamp(20px, 4vw, 48px) var(--s-6);
  }
  .main-nav.acik { display: flex; }
  .main-nav > a { padding: 12px 0; font-size: 17px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-auth { margin: var(--s-4) 0 0; width: 100%; justify-content: flex-start; }
  .nav-toggle { display: block; }
  .nav-toggle.acik span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.acik span:nth-child(2) { opacity: 0; }
  .nav-toggle.acik span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .event-card { grid-template-columns: 1fr; gap: var(--s-3); }
  .event-date { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 var(--s-3); text-align: left; }
  .event-cta { justify-self: start; }
  .post { flex-direction: column; gap: var(--s-4); }
  .post-side { display: flex; align-items: center; gap: 10px; width: auto; text-align: left; }
  .post-side .avatar { margin: 0; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .topic-row { flex-wrap: wrap; }
  .topic-stats { text-align: left; }
}

/* ---- Hareket azaltma tercihi ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-blob, .hero-mandala { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
