@charset "UTF-8";
/* ==========================================================================
   Ekrem Ciğerli — Yazar sitesi
   Tek dosya stil sistemi. Bağımlılık yok.
   ========================================================================== */

/* --------------------------------------------------------------- tokenlar */
:root {
  --night:        #0d1a2d;
  --night-2:      #132540;
  --night-3:      #1b3455;
  --gold:         #c9a25f;
  --gold-soft:    #e3c78d;
  --gold-dim:     rgba(201, 162, 95, .28);
  --cream:        #f7f3ea;
  --cream-2:      #efe8da;
  --ink:          #23262d;
  --text:         #33373f;
  --text-mute:    #6d7280;
  --line:         #dcd3c0;

  --font-display: "Playfair Display", "Cambria", "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap:         1180px;
  --wrap-narrow:  760px;
  --radius:       4px;
  --shadow-card:  0 10px 30px rgba(13, 26, 45, .10);
  --shadow-book:  0 14px 34px rgba(13, 26, 45, .34);
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.22;
  margin: 0 0 .6em;
  color: var(--ink);
  letter-spacing: .002em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1.15em; }

::selection { background: var(--gold); color: #fff; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------- yardımcı */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.25rem); }
.narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #fff; padding: .7rem 1.1rem;
}
.skip:focus { left: .5rem; top: .5rem; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Bölüm başlığı + altın süsleme (başlığın altında duran ayraç) */
.sec-head { text-align: center; margin-bottom: 2.6rem; }
.sec-head h2 { margin-bottom: 0; }
.sec-head .orn { margin: .85rem auto; }
.sec-head .lede { max-width: 54ch; margin: 0 auto; color: var(--text-mute); }
.orn {
  display: flex; align-items: center; justify-content: center;
  gap: .55rem; margin: .85rem auto 0; width: 170px;
}
.orn::before, .orn::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.orn i {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); flex: none;
}
.on-dark .orn::before, .on-dark .orn::after {
  background: linear-gradient(90deg, transparent, rgba(227, 199, 141, .45), transparent);
}

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.4rem;
  font-family: var(--font-body); font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-pill { border-radius: 50px; }
.btn-icon { flex: none; transition: transform .2s var(--ease); }
.btn:hover .btn-icon { transform: translateX(2px); }

.btn-gold  {
  background: #c9a25f; color: #ffffff !important;
  border: 1px solid #c9a25f;
  box-shadow: 0 4px 14px rgba(201, 162, 95, .32);
}
.btn-gold:hover  {
  background: #b88f4c; color: #ffffff !important;
  border-color: #b88f4c;
  box-shadow: 0 6px 18px rgba(201, 162, 95, .45);
  transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(247, 243, 234, .45); }
.btn-ghost:hover { background: rgba(247, 243, 234, .1); border-color: var(--cream); transform: translateY(-2px); }
.btn-line  { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-line:hover  { border-color: var(--gold); color: #8f6d2c; transform: translateY(-2px); }
.btn-buy {
  background: rgba(201, 162, 95, .08); color: var(--ink);
  border: 1px solid rgba(201, 162, 95, .42);
}
.btn-buy:hover {
  background: var(--gold); color: #fff; border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 162, 95, .32); transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.1rem; font-size: .86rem; }

.tlink {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; color: var(--text-mute);
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.tlink:hover { color: #8f6d2c; border-color: var(--gold-dim); }
.on-dark .tlink { color: rgba(247, 243, 234, .72); }
.on-dark .tlink:hover { color: var(--gold-soft); border-color: rgba(227, 199, 141, .5); }

/* -------------------------------------------------------------- üst şerit */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: var(--night);
  border-bottom: 1px solid rgba(201, 162, 95, .16);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 76px;
}
.brand { display: block; line-height: 1.2; }
.brand b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 1.16rem; letter-spacing: .13em; color: var(--cream);
  text-transform: uppercase;
}
.brand span {
  display: block; font-size: .66rem; letter-spacing: .22em;
  color: var(--gold); text-transform: uppercase; margin-top: .18rem;
}

/* --------------------------------------------------------------- üst menü */
.nav-card-list { display: flex; gap: clamp(1rem, 2.4vw, 2.1rem); list-style: none; margin: 0; padding: 0; }
.nav-card-item {
  position: relative; display: flex; align-items: center; padding: .35rem 0;
  font-size: .935rem; color: rgba(247, 243, 234, .84);
  transition: color .22s var(--ease); text-decoration: none !important;
}
.nav-card-item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-card-item:hover { color: var(--cream); }
.nav-card-item:hover::after, .nav-card-item[aria-current="page"]::after { transform: scaleX(1); }
.nav-card-item[aria-current="page"] { color: var(--gold-soft); }
.nav-card-icon, .nav-card-text span, .nav-card-arr { display: none; }
.nav-card-text b { font-weight: inherit; font-size: inherit; color: inherit; font-family: inherit; }

.burger {
  display: none; width: 44px; height: 44px; margin-right: -8px;
  position: relative; border-radius: var(--radius);
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: var(--gold); transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------------------------------------- tap highlight & focus mavi halkanın temizliği */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
}
*:focus, *:focus-visible, *:focus-within, *:active {
  outline: none !important;
}
button, .btn, a, .nav-card-item {
  user-select: none;
  -webkit-user-select: none;
}

body.nav-open {
  overflow: hidden !important;
  touch-action: none;
}
.site-head .brand {
  transition: opacity .25s ease;
}
body.nav-open .site-head .brand {
  opacity: 0; pointer-events: none;
}

/* ----------------------------------- mobil lüks tam ekran koyu menü */
.m-nav-top, .m-nav-close, .m-nav-footer { display: none !important; }

@media (max-width: 860px) {
  .site-head { z-index: 10000; position: sticky; top: 0; }
  .burger { display: block; z-index: 10001; position: relative; }
  .nav {
    position: fixed; inset: 0 !important; top: 0 !important; bottom: -60px !important; left: 0 !important; right: 0 !important;
    width: 100vw; height: calc(100vh + 60px); height: calc(100dvh + 60px); min-height: 100%;
    background: #050b13 !important;
    background: radial-gradient(circle at 50% 30%, #0e1a2b 0%, #050b13 100%) !important;
    z-index: 99999;
    display: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    flex-direction: column; justify-content: center; align-items: center;
    padding: 2.2rem 1.25rem 5rem;
  }
  .nav[data-open="true"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Mobil Menü İçindeki Başlık (Ortalanmış) */
  .m-nav-top {
    display: flex !important; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; margin: 0 0 1.8rem; flex: none;
  }
  .m-nav-top b {
    display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
    color: #f7f3ea; text-transform: uppercase; letter-spacing: .15em; line-height: 1.2;
  }
  .m-nav-top span {
    display: block; font-size: .68rem; color: #c9a25f; letter-spacing: .24em;
    text-transform: uppercase; margin-top: .32rem; font-family: var(--font-sans);
  }

  /* Mobil Menü Kapat (Çarpı) Butonu */
  .m-nav-close {
    display: flex !important;
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 162, 95, .35);
    color: #e3c78d; cursor: pointer;
    align-items: center; justify-content: center;
    z-index: 100002;
    transition: all .24s var(--ease);
  }
  .m-nav-close:hover {
    background: rgba(201, 162, 95, .25);
    transform: scale(1.08);
    color: #fff;
  }
  .m-nav-close svg { width: 22px; height: 22px; stroke-width: 2.2; }

  /* Mobil Menü Alt Basılı Kitaplar Bağlantısı */
  .m-nav-footer {
    display: block !important;
    margin-top: 1.8rem; flex: none; width: 100%; max-width: 420px; text-align: center;
  }
  .m-nav-book-link {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .85rem 1.4rem; width: 100%; border-radius: 16px;
    background: rgba(201, 162, 95, .12);
    border: 1px solid rgba(201, 162, 95, .35);
    color: #e3c78d; font-size: .88rem; font-weight: 600;
    text-decoration: none !important; transition: all .25s var(--ease);
  }
  .m-nav-book-link:hover {
    background: rgba(201, 162, 95, .25); color: #fff; border-color: #e3c78d;
    transform: translateY(-2px);
  }
  .m-nav-book-link svg { width: 18px; height: 18px; color: #e3c78d; flex: none; }

  .nav-card-list {
    display: flex; flex-direction: column; gap: 1.2rem;
    margin: 0 auto; padding: 0; list-style: none;
    width: 100%; max-width: 420px; flex: none;
  }
  .nav-card-list li { width: 100%; margin: 0; }
  .nav-card-item {
    display: flex; align-items: center; gap: 1.1rem;
    padding: 1.15rem 1.4rem;
    background: rgba(16, 28, 46, .85);
    border: 1px solid rgba(201, 162, 95, .22);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    backdrop-filter: blur(10px);
    transition: all .28s var(--ease);
    text-decoration: none !important;
  }
  .nav-card-item::after { display: none; }
  .nav-card-icon {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(201, 162, 95, .15);
    border: 1px solid rgba(201, 162, 95, .32);
    color: #e3c78d; flex: none;
    transition: all .28s var(--ease);
  }
  .nav-card-icon svg { width: 22px; height: 22px; }
  .nav-card-text {
    display: flex; flex-direction: column; text-align: left; flex: 1;
  }
  .nav-card-text b {
    display: block; font-size: 1.1rem; font-weight: 700;
    color: #f7f9fc; font-family: var(--font-sans); line-height: 1.25;
  }
  .nav-card-text span {
    display: block; font-size: .84rem; color: rgba(247, 243, 234, .65);
    margin-top: .22rem; font-family: var(--font-sans); line-height: 1.3;
  }
  .nav-card-arr {
    display: block; font-size: 1.5rem; color: #c9a25f;
    font-weight: 400; opacity: .7; transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav-card-item:hover, .nav-card-item[aria-current="page"] {
    background: rgba(24, 38, 60, .95);
    border-color: #c9a25f;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(201, 162, 95, .25);
  }
  .nav-card-item:hover .nav-card-icon, .nav-card-item[aria-current="page"] .nav-card-icon {
    background: linear-gradient(135deg, #c9a25f 0%, #8f6d2c 100%);
    color: #ffffff;
    border-color: #c9a25f; transform: scale(1.06);
  }
  .nav-card-item:hover .nav-card-text b, .nav-card-item[aria-current="page"] .nav-card-text b {
    color: #ffffff;
  }
  .nav-card-item:hover .nav-card-text span, .nav-card-item[aria-current="page"] .nav-card-text span {
    color: #e3c78d;
  }
  .nav-card-item:hover .nav-card-arr, .nav-card-item[aria-current="page"] .nav-card-arr {
    transform: translateX(4px); opacity: 1; color: #e3c78d;
  }
}

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--night);
  color: var(--cream);
}
.hero-art, .hero-photo { position: absolute; top: 0; bottom: 0; pointer-events: none; }
.hero-art {
  left: 0; width: 36%;
  background: url("../img/atmosfer/bu2.jpeg") left center/cover no-repeat;
  opacity: .85;
}
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 45, .15) 0%, rgba(13, 26, 45, .75) 65%, var(--night) 100%);
}
.hero-photo {
  right: 0; width: 52%;
  background: url("../img/yazar/hero-fuar.jpg") 28% center/cover no-repeat;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--night) 0%, rgba(13, 26, 45, .82) 26%, rgba(13, 26, 45, .12) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-in {
  max-width: 30rem;
  padding: clamp(3.4rem, 9vw, 6.6rem) 0 clamp(3.4rem, 9vw, 6.6rem);
  margin-left: clamp(0rem, 13vw, 11rem);
}
.hero h1 {
  color: var(--gold-soft);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 400; line-height: 1.16; margin-bottom: 1.1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.hero .kicker {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.hero p.sub {
  color: rgba(247, 243, 234, .84); max-width: 27rem; margin-bottom: 1.9rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (max-width: 900px) {
  .hero-art { display: none; }
  .hero-photo {
    position: relative; width: 100%; height: 46vw; min-height: 230px; max-height: 340px;
    background-position: 32% 22%;
  }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(13, 26, 45, .25) 0%, rgba(13, 26, 45, .55) 62%, var(--night) 100%);
  }
  .hero-in { margin-left: 0; max-width: none; padding-top: 2.4rem; }
  .hero { display: flex; flex-direction: column; }
  .hero > .wrap { order: 2; }
}

/* --------------------------------------------------------------- bölümler */
.sec { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.sec-cream { background: var(--cream); }
.sec-cream-2 { background: var(--cream-2); }
.on-dark { background: var(--night); color: rgba(247, 243, 234, .88); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream); }
.on-dark .sec-head .lede { color: rgba(247, 243, 234, .7); }

/* Ortalı başlık + sağa yerleşen yan bağlantı */
.sec-bar { position: relative; text-align: center; margin-bottom: 2.6rem; }
.sec-bar h2 { margin: 0; }
.sec-bar .aside { display: inline-block; margin-top: 1rem; }
@media (min-width: 880px) {
  .sec-bar .aside { position: absolute; right: 0; bottom: .1rem; margin-top: 0; }
}

/* Sol hizalı kullanım (metin bloğu içinde) */
.prose > .orn { margin-inline: 0; }

/* ---------------------------------------------------------- kitap ızgarası */
.books {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.book {
  display: flex; flex-direction: column; text-align: center;
  flex: 0 0 220px; width: 220px; max-width: 100%;
}
@media (max-width: 640px) {
  .books {
    gap: 2.2rem;
  }
  .book {
    flex: 0 0 100%; width: 100%; max-width: 280px; margin: 0 auto;
  }
}
.book-cover {
  position: relative; display: block; margin: 0 auto 1.15rem;
  width: 100%; max-width: 216px;
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-book);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent !important;
}
.book-cover img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 2 / 3 !important; object-fit: cover !important;
  border-radius: 8px;
}
.book-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, 0) 42%);
  opacity: .5; pointer-events: none;
}
.book-cover:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(13, 26, 45, .42); }
.book h3 { font-size: 1.19rem; margin-bottom: .4rem; font-family: var(--font-display); }
.book h3 a:hover { color: #8f6d2c; }
.book .desc {
  font-size: .935rem; color: var(--text-mute); line-height: 1.62;
  margin: 0 auto 1.05rem; max-width: 24ch; flex: 1;
}
.book-actions {
  display: flex; flex-direction: column; gap: .55rem;
  width: 100%; max-width: 200px; margin: 0 auto .7rem;
}
.book-actions .btn { width: 100%; }
.book .lock {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .6rem; font-size: .78rem; color: var(--text-mute); letter-spacing: .01em;
}
.book .lock svg { width: 12px; height: 12px; flex: none; opacity: .7; }
.on-dark .book .desc, .on-dark .book .lock { color: rgba(247, 243, 234, .62); }

/* Yatay kitap satırı (kitaplarım sayfası ve kitap detay) */
.book-row {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(150px, 232px) 1fr;
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
}
.book-row:first-of-type { border-top: 0; padding-top: 0; }
.book-row .cover {
  display: block; width: 100%; background: transparent !important;
}
.book-row .cover img,
.book-row img.cover {
  width: 100%; height: auto; display: block;
  aspect-ratio: 2 / 3 !important;
  object-fit: cover !important;
  border-radius: 8px;
  box-shadow: var(--shadow-book);
  background: transparent !important;
}
.book-row .meta {
  display: flex; flex-wrap: wrap; gap: .45rem 1.1rem;
  font-size: .82rem; color: var(--text-mute);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: .9rem;
}
.book-row h2 { margin-bottom: .5rem; }
.book-row .actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
@media (max-width: 620px) {
  .book-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-row .meta, .book-row .actions { justify-content: center; }
  .book-row .cover { max-width: 190px; }
}

/* ---------------------------------------------------------- görsel bantlar */
.band { position: relative; overflow: hidden; background: var(--night); color: var(--cream); }
.band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 45, .55) 0%, rgba(13, 26, 45, .82) 50%, rgba(13, 26, 45, .95) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band-in {
  padding: clamp(3.6rem, 8vw, 5.8rem) 0;
  max-width: 42rem; margin-inline: auto; text-align: center;
}
.band h2 { color: var(--gold-soft); font-weight: 400; }
.band h2 em { font-style: normal; color: var(--cream); }
.band p { color: rgba(247, 243, 234, .86); margin-inline: auto; max-width: 48ch; }
.dots {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: center;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.4rem;
}
.dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dim); }
@media (max-width: 900px) {
  .band-bg::after {
    background: linear-gradient(180deg, rgba(13, 26, 45, .5) 0%, rgba(13, 26, 45, .88) 100%);
  }
  .band-in { margin-left: 0; }
}

/* Topic Pills & About section refinement */
.topic-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.1rem 0 1.6rem;
}
.topic-pill {
  font-size: .83rem; font-weight: 600; color: #73541c;
  background: rgba(201, 162, 95, .15);
  border: 1px solid rgba(201, 162, 95, .36);
  padding: .4rem 1.1rem; border-radius: 50px;
  transition: all .25s var(--ease);
  cursor: default;
}
.topic-pill:hover {
  background: var(--gold); color: #ffffff !important; border-color: var(--gold);
  transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201, 162, 95, .35);
}
.split-about {
  align-items: center;
}
.about-text p {
  font-size: 1.04rem; line-height: 1.82; color: var(--text);
}
.about-portrait img {
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(13, 26, 45, .15);
  border: 1px solid rgba(201, 162, 95, .25);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.about-portrait:hover img {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(13, 26, 45, .22);
}

/* ------------------------------------------------------- zaman tüneli (yeni) */
.timeline-container {
  max-width: 880px; margin: 0 auto;
}
.tl-nav {
  position: relative; display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2.8rem; padding: 0 .5rem;
}
.tl-nav-line {
  position: absolute; top: 38px; left: 10%; right: 10%;
  height: 2px; background: rgba(201, 162, 95, .32); z-index: 1;
}
.tl-nav-item {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center;
  background: none; border: none; cursor: pointer; padding: 0; outline: none;
  transition: transform .28s var(--ease);
}
.tl-avatar-ring {
  width: 76px; height: 76px; border-radius: 50%; padding: 4px;
  background: var(--cream-2); border: 2px solid rgba(201, 162, 95, .35);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease); box-shadow: 0 6px 16px rgba(13, 26, 45, .1);
}
.tl-avatar {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 15%;
}
.tl-nav-item:hover .tl-avatar-ring {
  border-color: var(--gold); transform: scale(1.05);
}
.tl-nav-item.active .tl-avatar-ring {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 95, .28), 0 10px 24px rgba(13, 26, 45, .18);
  transform: scale(1.1);
}
.tl-nav-title {
  margin-top: .7rem; font-size: .88rem; font-weight: 600;
  color: var(--text-mute); transition: color .25s var(--ease); text-align: center;
}
.tl-nav-item.active .tl-nav-title {
  color: var(--ink); font-weight: 700;
}

.tl-card-wrap {
  position: relative; min-height: 340px;
}
.tl-card {
  display: none; background: #ffffff; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(13, 26, 45, .08);
  border: 1px solid rgba(220, 211, 192, .65);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tl-card.active {
  display: grid; grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center;
  opacity: 1; transform: translateY(0);
  animation: tlCardFade .4s var(--ease) forwards;
}
@keyframes tlCardFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tl-card-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 26, 45, .14);
  aspect-ratio: 4 / 5; max-height: 360px; background: var(--night-2);
}
.tl-card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.tl-card-date {
  font-size: .82rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .55rem;
}
.tl-card-title {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem); font-weight: 600;
  margin-bottom: .85rem; color: var(--ink);
}
.tl-card-desc {
  font-size: .98rem; line-height: 1.72; color: var(--text);
  margin: 0; max-width: 52ch;
}

@media (max-width: 720px) {
  .tl-card.active { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .tl-card-img-wrap { max-width: 220px; width: 100%; }
  .tl-nav-title { font-size: .78rem; }
  .tl-avatar-ring { width: 58px; height: 58px; }
  .tl-nav-line { top: 29px; }
}
/* --------------------------------------------------------- rakam şeridi */
.rakamlar {
  background: var(--night-2); color: var(--cream);
  border-top: 1px solid rgba(201, 162, 95, .2);
  border-bottom: 1px solid rgba(201, 162, 95, .2);
}
.rakamlar dl {
  display: grid; gap: 1px; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.rakamlar div {
  padding: clamp(1.5rem, 3.5vw, 2.2rem) 1rem;
  text-align: center; position: relative;
}
.rakamlar div + div::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(201, 162, 95, .22);
}
.rakamlar dd {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem); line-height: 1.1;
  color: var(--gold-soft);
}
.rakamlar dt {
  margin-top: .4rem; font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(247, 243, 234, .62);
}

/* metin bloğu üstündeki küçük etiket */
.prose > .ustlik {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .55rem;
}

/* ------------------------------------------------------------ alıntı bandı */
.quote {
  background: var(--night-2); color: var(--cream);
  padding: clamp(3rem, 6vw, 4.6rem) 0; text-align: center;
}
.quote blockquote {
  margin: 0 auto; max-width: 40rem;
  font-family: var(--font-display); font-size: clamp(1.32rem, 2.7vw, 1.9rem);
  line-height: 1.5; font-style: italic; color: var(--gold-soft);
}
.quote cite {
  display: block; margin-top: 1.25rem; font-style: normal;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247, 243, 234, .6); font-family: var(--font-body);
}


/* --------------------------------------------------------- sayfa başlığı */
.page-head {
  background: var(--night); color: var(--cream);
  padding: clamp(2.8rem, 6vw, 4.4rem) 0 clamp(2.4rem, 5vw, 3.6rem);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 82% 8%, rgba(201, 162, 95, .16) 0%, transparent 58%);
}
.page-head .wrap { position: relative; }
.page-head h1 { color: var(--cream); margin-bottom: .5rem; }
.page-head p { color: rgba(247, 243, 234, .76); max-width: 56ch; margin: 0; }
.crumb {
  display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.crumb a { color: rgba(247, 243, 234, .66); }
.crumb a:hover { color: var(--gold-soft); }

/* -------------------------------------------------------------- düz metin */
.prose { max-width: 68ch; }
.prose > h2 { margin-top: 2.4rem; margin-bottom: 0; }
.prose > *:first-child { margin-top: 0 !important; }
.prose > h3 { margin-top: 1.9rem; }
.prose > .orn { margin-inline: 0; margin-top: .8rem; margin-bottom: .8rem; }
.prose .drop::first-letter {
  float: left; font-family: var(--font-display); font-size: 3.5rem;
  line-height: .82; padding: .12em .12em 0 0; color: var(--gold);
}
.prose blockquote {
  margin: 1.9rem 0; padding: .2rem 0 .2rem 1.35rem;
  border-left: 2px solid var(--gold); font-style: italic; color: #4b4f58;
}
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose a { color: #8f6d2c; border-bottom: 1px solid var(--gold-dim); }
.prose a:hover { border-color: var(--gold); }

/* iki kolon: metin + görsel */
.split {
  display: grid; gap: clamp(1.8rem, 5vw, 3.6rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.35fr .85fr; align-items: start; }
  .split.rev {
    grid-template-columns: .85fr 1.35fr;
    align-items: center;
  }
  .split.rev > *:first-child { order: 2; }
}
@media (max-width: 899px) {
  .split:not(.rev) > *:last-child {
    order: -1;
    margin-bottom: 1.5rem;
  }
  .split.rev > *:first-child { order: 0; }
  .split.rev .prose > h2 {
    text-align: center !important;
  }
  .split.rev .prose > .orn {
    margin-inline: auto !important;
    display: flex !important;
    justify-content: center !important;
  }
}

/* ---------------------------------- Image Lightbox Modal */
.img-lightbox-overlay {
  position: fixed; inset: 0; z-index: 100010;
  background: rgba(5, 11, 19, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; transition: opacity .3s ease;
  pointer-events: auto;
}
.img-lightbox-overlay.open { opacity: 1; }
.img-lightbox-container {
  position: relative; max-width: 92vw; max-height: 92vh;
  display: flex; align-items: center; justify-content: center;
}
.img-lightbox-img {
  max-width: 100%; max-height: 88vh; object-fit: contain;
  border-radius: 14px; box-shadow: 0 25px 70px rgba(0,0,0,.7);
  border: 1px solid rgba(201, 162, 95, .35);
}
.img-lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: #050b13; border: 1px solid rgba(201, 162, 95, .6);
  color: #e3c78d; font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.6);
  transition: all .24s ease; z-index: 100012; line-height: 1;
}
.img-lightbox-close:hover {
  background: #c9a25f; color: #050b13; transform: scale(1.1);
}
.figure-frame { position: relative; }
.figure-frame img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-card); }
.figure-frame::after {
  content: ""; position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-dim); border-radius: 14px; z-index: -1;
}
.figure-frame figcaption {
  margin-top: .9rem; font-size: .82rem; color: var(--text-mute); letter-spacing: .02em;
}
figure { margin: 0; }

/* Hakkımda portre fotoğrafı & açıklama etiketi */
.author-portrait-wrap {
  margin: 0; display: flex; flex-direction: column;
}
.author-portrait-frame {
  position: relative;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 45px rgba(13, 26, 45, .12);
  border: 1px solid rgba(220, 211, 192, .85);
  background: #ffffff;
}
.author-portrait-frame img {
  width: 100%; height: auto; display: block; object-fit: cover;
}
.author-portrait-cap {
  margin-top: .85rem;
  font-size: .86rem; color: var(--text-mute);
  text-align: center; font-style: italic;
  font-family: var(--font-sans);
}

/* --------------------------------------------------------- olgu kartı (bütünsel & lüks tablo kartı) */
.facts-card {
  background: #ffffff;
  border: 1px solid rgba(220, 211, 192, .85);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(13, 26, 45, .05);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0; padding: 0;
}
.fact-item {
  display: flex; flex-direction: column;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(220, 211, 192, .6);
  border-right: 1px solid rgba(220, 211, 192, .6);
  transition: background .25s var(--ease);
}
.fact-item:nth-child(2n) {
  border-right: 0;
}
.fact-item:nth-last-child(-n+2) {
  border-bottom: 0;
}
.fact-item:hover {
  background: #faf7f2;
}
.fact-item dt {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8f6d2c; font-weight: 700; font-family: var(--font-sans);
  margin-bottom: .3rem;
}
.fact-item dd {
  margin: 0; font-family: var(--font-sans); font-size: .98rem;
  font-weight: 600; color: var(--ink); line-height: 1.35;
}

/* ------------------------------------------------------- zaman tüneli ızgarası (hakkımda - sade) */
.timeline {
  display: grid; gap: clamp(1.2rem, 3vw, 2.2rem);
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media (min-width: 860px) {
  .timeline {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 859px) {
  .timeline .tl-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - (clamp(1.2rem, 3vw, 2.2rem) / 2));
  }
}
.tl-item {
  display: flex; flex-direction: column;
  text-align: center;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: transform .35s var(--ease);
}
.tl-item figure { margin: 0; display: flex; flex-direction: column; flex: 1; }
.tl-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 14px; margin-bottom: 1.1rem;
  box-shadow: 0 10px 26px rgba(13, 26, 45, .12);
  border: 1px solid rgba(220, 211, 192, .5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  background: var(--night-2);
}
.tl-item:hover img {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 26, 45, .22);
  border-color: var(--gold);
}
.tl-item figcaption { margin-top: auto; }
.tl-item b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; color: var(--ink); margin-bottom: .25rem;
}
.tl-item span {
  display: block; font-size: .84rem; color: #8f6d2c;
  font-weight: 600; letter-spacing: .02em; font-family: var(--font-sans);
}

/* ------------------------------------------------------------ yazı kartları (yeni) */
.cards {
  display: grid; gap: clamp(1.3rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}
.card {
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(220, 211, 192, .65);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 30px rgba(13, 26, 45, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(13, 26, 45, .12);
  border-color: var(--gold);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(13, 26, 45, .12);
  border-color: var(--gold);
}
.card-head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(220, 211, 192, .55);
  margin-bottom: 1.1rem;
}
.card-thumb {
  width: 44px; height: 64px; object-fit: cover;
  border-radius: 5px; box-shadow: 0 4px 12px rgba(13, 26, 45, .18);
  flex: none; background: var(--night-2);
}
.card-meta {
  display: flex; flex-direction: column; gap: .25rem;
}
.card-book-title {
  font-family: var(--font-sans);
  font-size: .84rem; font-weight: 700; letter-spacing: .12em;
  color: var(--gold); text-transform: uppercase;
}
.card-read-time {
  font-family: var(--font-sans);
  font-size: .8rem; color: var(--text-mute); font-weight: 500;
}
.card-body {
  display: flex; flex-direction: column; flex: 1;
}
.card-body h3 {
  font-size: 1.28rem; font-weight: 700; color: #0d1a2d;
  margin-bottom: .6rem; line-height: 1.35; font-family: var(--font-display);
  letter-spacing: -.01em;
}
.card-body p {
  font-family: var(--font-sans);
  font-size: .935rem; color: #4a515c; line-height: 1.68;
  margin-bottom: 1.4rem; flex: 1;
}
.card-action {
  margin-top: auto;
}
.card-action .btn {
  width: auto; align-self: flex-start;
  padding: .55rem 1.25rem; font-size: .86rem;
}
.btn-all-episodes {
  background: #ffffff;
  color: var(--ink);
  border: 1.5px solid rgba(201, 162, 95, .65);
  font-weight: 600;
  padding: .75rem 1.85rem;
  box-shadow: 0 4px 14px rgba(13, 26, 45, .06);
  transition: all .3s var(--ease);
}
.btn-all-episodes:hover {
  background: var(--night-2);
  color: var(--gold-soft);
  border-color: var(--night-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 26, 45, .18);
}

/* ------------------------------------------------------- okuma sistemi adımları */
.system-grid {
  display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .system-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .system-grid { grid-template-columns: 1fr; }
}

.system-card {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(220, 211, 192, .75);
  border-radius: 18px;
  padding: 1.8rem 1.4rem 1.6rem;
  box-shadow: 0 10px 28px rgba(13, 26, 45, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(13, 26, 45, .12);
  border-color: var(--gold);
}
.system-no {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201, 162, 95, .14);
  border: 1px solid rgba(201, 162, 95, .32);
  color: #8f6d2c;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1.1rem;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.system-card:hover .system-no {
  background: var(--gold); color: #ffffff;
  transform: scale(1.08);
}
.system-card h3 {
  font-size: 1.2rem; font-weight: 600; color: var(--ink);
  margin-bottom: .6rem; line-height: 1.35; font-family: var(--font-display);
  text-align: left;
}
.system-card p {
  font-family: var(--font-sans);
  font-size: .92rem; color: var(--text-mute); line-height: 1.62;
  margin: 0; flex: 1; text-align: left;
}

/* ------------------------------------------------------- iletişim sayfası */
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #8f6d2c; font-family: var(--font-sans); margin-bottom: .45rem;
}
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(220, 211, 192, .85);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  font-size: .96rem; color: var(--ink);
  font-family: var(--font-sans);
  box-shadow: 0 4px 14px rgba(13, 26, 45, .03);
  transition: all .25s var(--ease);
}
.field input[type="text"]:focus,
.field input[type="email"]:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 95, .16);
}
.field textarea {
  min-height: 140px; resize: vertical;
}
.field .err { display: none; margin-top: .35rem; font-size: .84rem; color: #b03636; }
.field[data-invalid] input, .field[data-invalid] textarea { border-color: #b03636; }
.field[data-invalid] .err { display: block; }
.form-note { font-size: .86rem; color: var(--text-mute); }
.alert {
  padding: .95rem 1.15rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; font-size: .94rem;
  margin-bottom: 1.4rem;
}
.alert-ok { border-color: #98b98a; background: #f2f8ee; color: #33552a; }
.alert-no { border-color: #d5a2a2; background: #fdf3f3; color: #8c2f2f; }

/* iletişim listesi */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: .9rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list svg { width: 19px; height: 19px; flex: none; margin-top: .3rem; color: var(--gold); }
.contact-list b { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.contact-list span, .contact-list a { font-size: .95rem; color: var(--text-mute); }
.contact-list a:hover { color: #8f6d2c; }

.figure-frame {
  position: relative;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 26, 45, .14);
  border: 1px solid rgba(220, 211, 192, .8);
}
.figure-frame img {
  width: 100%; height: auto; display: block; object-fit: cover;
}

/* ------------------------------------------------------- satın alma çipleri (birebir screenshot 2) */
.chips {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.chips li { margin: 0; padding: 0; list-style: none; }
.chips a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.25rem; font-size: .88rem; font-weight: 600;
  font-family: var(--font-sans);
  color: #73541c; background: #ffffff;
  border: 1px solid rgba(201, 162, 95, .45);
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(201, 162, 95, .15);
  transition: all .25s var(--ease);
  text-decoration: none !important;
}
.chips a:hover {
  background: var(--gold); color: #ffffff !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 162, 95, .35);
}
.chips a .arr {
  font-size: .82rem; opacity: .7; transition: transform .2s var(--ease);
}
.chips a:hover .arr {
  transform: translate(2px, -2px); opacity: 1;
}
@keyframes chipPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.chips.pulse a {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201, 162, 95, .45);
  animation: chipPulse .5s var(--ease) 2;
}

/* ----------------------------------------------------------------- footer */
.site-foot {
  background: var(--night); color: rgba(247, 243, 234, .7);
  padding: clamp(3.2rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(201, 162, 95, .22);
}
.foot-grid-4 {
  display: grid; gap: clamp(1.8rem, 3.2vw, 2.6rem);
  grid-template-columns: 1.25fr 0.85fr 1fr 1.35fr;
  align-items: start;
}
@media (max-width: 1024px) {
  .foot-grid-4 { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}
@media (max-width: 600px) {
  .foot-grid-4 { grid-template-columns: 1fr; gap: 2rem; }
}

.foot-col { display: flex; flex-direction: column; }
.foot-brand .brand { display: block; margin-bottom: .9rem; text-decoration: none !important; }
.foot-brand .brand b { color: var(--gold-soft); font-size: 1.35rem; font-family: var(--font-display); line-height: 1.2; }
.foot-brand .brand span { color: rgba(247, 243, 234, .65); font-size: .86rem; display: block; margin-top: .15rem; }
.foot-desc {
  font-size: .88rem; color: rgba(247, 243, 234, .64);
  line-height: 1.68; font-family: var(--font-sans);
  margin-bottom: 1.2rem;
}
.foot-head {
  font-family: var(--font-display); font-size: 1.08rem;
  color: var(--gold-soft); font-weight: 600;
  margin-bottom: 1.15rem; letter-spacing: .02em; height: 32px; display: flex; align-items: center;
}
.foot-brand .brand-spacer { height: 32px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.foot-links a {
  font-size: .9rem; color: rgba(247, 243, 234, .75);
  font-family: var(--font-sans); text-decoration: none;
  transition: color .2s var(--ease), transform .2s var(--ease);
  display: inline-block;
}
.foot-links a:hover { color: var(--gold-soft); transform: translateX(4px); }

/* Footer özel satış çipleri (2x2 simetrik eşit ızgara) */
.site-foot .chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin: 0; padding: 0; list-style: none;
  width: 100%;
}
.site-foot .chips li { width: 100%; }
.site-foot .chips a {
  width: 100%;
  height: 44px;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  color: #f7f3ea;
  border: 1px solid rgba(201, 162, 95, .38);
  border-radius: 50px;
  padding: 0 .6rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: -.01em;
  font-family: var(--font-sans); text-decoration: none;
  box-shadow: none;
  transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: .35rem;
  white-space: nowrap;
  box-sizing: border-box;
}
.site-foot .chips a:hover {
  background: rgba(201, 162, 95, .22);
  color: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 162, 95, .2);
}
.site-foot .chips a .arr {
  color: var(--gold-soft); opacity: .9; transition: transform .2s var(--ease);
}
.site-foot .chips a:hover .arr {
  transform: translate(2px, -2px); opacity: 1;
}

.social { display: flex; flex-wrap: wrap; gap: .55rem; }
.social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(201, 162, 95, .3); border-radius: 50%;
  color: rgba(247, 243, 234, .8); background: rgba(255, 255, 255, .03);
  transition: all .25s var(--ease);
}
.social a:hover {
  border-color: var(--gold); color: var(--gold-soft);
  background: rgba(201, 162, 95, .15);
  transform: translateY(-2px);
}
.social svg { width: 17px; height: 17px; }

.foot-legal {
  margin-top: 3.2rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(247, 243, 234, .1);
  display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; justify-content: space-between;
  align-items: center; font-size: .84rem; color: rgba(247, 243, 234, .52);
  font-family: var(--font-sans);
}
.foot-legal-links { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.foot-legal-links a { color: rgba(247, 243, 234, .55); text-decoration: none; transition: color .2s; }
.foot-legal-links a:hover { color: var(--gold-soft); }

/* ---------------------------------------------------------- görüş animasyonu */
@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(18px); }
  .rise.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .rise:nth-child(2).in { transition-delay: .07s; }
  .rise:nth-child(3).in { transition-delay: .14s; }
  .rise:nth-child(4).in { transition-delay: .21s; }
  .rise:nth-child(5).in { transition-delay: .28s; }
}

/* ------------------------------------------------------------------ print */
@media print {
  .site-head, .site-foot, .hero-photo, .hero-art, .burger { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ----------------------------------------------------------- mobil uyumluluk ekleri */
@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .fact-item {
    border-right: 0 !important;
  }
  .fact-item:last-child {
    border-bottom: 0 !important;
  }
  .site-foot .chips {
    grid-template-columns: 1fr;
  }
  .foot-legal {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .foot-legal-links {
    justify-content: center;
  }
}

/* ---------------------------------- Tümleşik Genişleyen Düşünceye Yolculuk Bandı */
.band-expandable {
  position: relative; overflow: hidden;
  background-color: #0d1a2d !important;
}
.band-expandable .band-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Sabit, titremesiz karartma overlay'i - Mobil flaşlanmasını %100 engeller */
.band-expandable .band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 45, .45) 0%, rgba(13, 26, 45, .65) 50%, rgba(13, 26, 45, .85) 100%) !important;
  pointer-events: none;
}

.band-expandable .band-in {
  max-width: 54rem; transition: max-width .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.band-expanded-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s ease, margin-top .45s ease;
  margin-top: 0;
}

.band-expanded-wrapper > .band-expanded-inner {
  overflow: hidden;
}

.band-expandable.is-expanded .band-expanded-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 2rem;
}

.band-note-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0;
  padding: .5rem 0 1.5rem;
  text-align: center;
  box-shadow: none !important;
}

.band-note-tag {
  display: inline-block; font-size: .76rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft) !important;
  margin-bottom: .6rem; font-family: var(--font-sans);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
}

.band-note-card h3,
.band-note-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem) !important;
  color: #f7f3ea !important;
  margin: .4rem 0 1.3rem 0 !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .98) !important;
}

.band-note-text {
  font-family: var(--font-sans);
  font-size: 1.06rem;
  line-height: 1.86;
  color: rgba(247, 243, 234, .95) !important;
  margin: 0 auto 0 auto !important;
  max-width: 50ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .95);
  font-weight: 400;
}

.band-note-text p {
  margin: 0 0 1.3rem 0 !important;
}
.band-note-text p:last-child {
  margin-bottom: 0 !important;
}

.band-note-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center;
  padding-top: 1.3rem !important; margin-top: 0 !important; border-top: none !important;
}


