/* =====================================================================
   Dilek Cesur — Kişisel Web Sitesi
   Tasarım dili: Modern & Canlı — beyaz zemin, mercan/turkuaz vurgu,
   yuvarlak formlar. Saf CSS, framework yok, build yok.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #1C1E3A;
  --ink-soft: #4A4D6B;
  --muted: #8688A3;
  --line: #ECE9F1;

  --ground: #FFFFFF;
  --ground-peach: #FFF5F0;
  --ground-mint: #EEFAF8;
  --ground-sun: #FFF8E6;

  --coral: #F5525B;
  --coral-deep: #D63A45;
  --coral-soft: #FFE1E2;
  --teal: #16B3A5;
  --teal-deep: #0F8C82;
  --teal-soft: #D5F4F0;
  --sun: #FFC542;
  --sun-soft: #FFEFC2;
  --lilac: #8C7BFF;
  --lilac-soft: #E7E2FF;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(28, 30, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(28, 30, 58, 0.10);
  --shadow-coral: 0 12px 28px rgba(245, 82, 91, 0.30);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5625rem;
  --step-3: clamp(1.75rem, 1.4rem + 1.6vw, 2.35rem);
  --step-4: clamp(2.2rem, 1.6rem + 2.8vw, 3.4rem);
  --step-5: clamp(2.6rem, 1.6rem + 4.6vw, 4.6rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
p + p { margin-top: 1em; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tint-peach { background: var(--ground-peach); }
.section--tint-mint { background: var(--ground-mint); }
.section--tint-sun { background: var(--ground-sun); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px 32px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head > div { max-width: 640px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.eyebrow--teal { color: var(--teal-deep); }
.eyebrow--lilac { color: var(--lilac); }

.h-display { font-size: var(--step-5); font-weight: 800; }
.h-1 { font-size: var(--step-4); font-weight: 800; }
.h-2 { font-size: var(--step-3); font-weight: 800; }
.h-3 { font-size: var(--step-2); font-weight: 700; }
.h-4 { font-size: var(--step-1); font-weight: 700; }
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.6; max-width: 62ch; }
.mark { position: relative; white-space: nowrap; }
.mark::after {
  content: ""; position: absolute; left: -0.06em; right: -0.06em; bottom: 0.06em; height: 0.34em;
  background: var(--sun); border-radius: 6px; z-index: -1; opacity: 0.9; transform: rotate(-1.2deg);
}
.mark--teal::after { background: var(--teal-soft); }
.mark--coral::after { background: var(--coral-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-deep); }
.btn--secondary { background: var(--ink); color: #fff; }
.btn--secondary:hover { background: #2C2F55; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-deep); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); }
.btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Tags / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
  background: var(--ground-peach); color: var(--coral-deep);
}
.chip--teal { background: var(--teal-soft); color: var(--teal-deep); }
.chip--sun { background: var(--sun-soft); color: #9A6B00; }
.chip--lilac { background: var(--lilac-soft); color: #5E4DD6; }
.chip--ink { background: var(--ink); color: #fff; }
.chip--outline { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; flex: none; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.03em; }
.brand__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1; margin-top: 3px; }

.nav { display: none; }
.nav ul { display: flex; gap: 4px; }
.nav a { display: inline-block; padding: 9px 12px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; white-space: nowrap; color: var(--ink-soft); transition: background .2s, color .2s; }
.nav a:hover { background: var(--ground-peach); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--ink); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn--primary { display: none; }
.burger { width: 46px; height: 46px; border-radius: 50%; background: var(--ground-peach); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 76px 0 0 0; z-index: 49;
  background: var(--ground); padding: 24px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav ul { display: grid; gap: 4px; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-radius: var(--r-md); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.mobile-nav a[aria-current="page"] { background: var(--ground-peach); color: var(--coral-deep); }
.mobile-nav a svg { width: 20px; height: 20px; color: var(--muted); }
.mobile-nav__foot { margin-top: 28px; display: grid; gap: 12px; }
.mobile-nav__social { display: flex; gap: 10px; }

@media (min-width: 1100px) {
  .nav { display: block; }
  .burger, .mobile-nav { display: none; }
}
@media (min-width: 1280px) {
  .header-actions .btn--primary { display: inline-flex; }
}

/* ---------- Social icon buttons ---------- */
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--ground-peach); color: var(--ink); transition: background .2s, color .2s, transform .2s; }
.social a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }

/* ---------- Hero (ana sayfa) ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(32px, 6vw, 72px) clamp(48px, 7vw, 96px); }
.hero__grid { display: grid; gap: 40px; align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__copy .h-display { margin-bottom: 20px; }
.hero__copy .lead { margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.proof { display: flex; align-items: center; gap: 12px; }
.proof strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.proof span { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.proof__icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; }
.proof__icon svg { width: 22px; height: 22px; }

.hero__visual { position: relative; justify-self: center; width: min(100%, 520px); }
.portrait {
  position: relative; aspect-ratio: 4 / 5; width: 100%;
  border-radius: 48% 52% 46% 54% / 56% 44% 56% 44%;
  background: linear-gradient(160deg, var(--coral-soft), var(--teal-soft) 60%, var(--sun-soft));
  overflow: hidden; box-shadow: var(--shadow-md);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-soft); text-align: center; padding: 24px; font-weight: 700; }
.portrait__placeholder svg { width: 45%; height: auto; opacity: 0.55; margin-bottom: 12px; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 0; pointer-events: none; }
.blob--coral { width: 180px; height: 180px; background: var(--coral); opacity: .18; top: -30px; right: -30px; }
.blob--teal { width: 240px; height: 240px; background: var(--teal); opacity: .16; bottom: -60px; left: -70px; }
.blob--sun { width: 120px; height: 120px; background: var(--sun); opacity: .35; bottom: 40px; right: -20px; }

.float-card {
  position: absolute; z-index: 3; background: #fff; border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; max-width: 240px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-display); font-size: .95rem; line-height: 1.15; }
.float-card span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.float-card--1 { left: -10px; top: 12%; }
.float-card--2 { right: -10px; bottom: 14%; animation-delay: -3s; }
.float-card .cover-mini { width: 40px; height: 54px; border-radius: 6px; flex: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .hero__visual { justify-self: end; }
}
@media (max-width: 480px) {
  .float-card { display: none; }
}

/* ---------- Marquee (konu şeridi) ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 14px; background: #fff; }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink-soft); white-space: nowrap; }
.marquee__item::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.marquee__item:nth-child(3n)::before { background: var(--teal); }
.marquee__item:nth-child(3n+1)::before { background: var(--sun); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__body { padding: 22px 24px 26px; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.card__title { font-size: var(--step-1); font-weight: 700; margin-bottom: 8px; }
.card__title a:hover { color: var(--coral-deep); }
.card__text { color: var(--ink-soft); font-size: 0.97rem; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* ---------- Kitap kapakları ---------- */
.cover {
  position: relative; aspect-ratio: 2 / 3; border-radius: 10px 16px 16px 10px; overflow: hidden;
  box-shadow: 0 14px 28px rgba(28,30,58,.16), inset 6px 0 10px -6px rgba(0,0,0,.25);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; color: #fff;
  transition: transform .3s;
}
.cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 2.2vw, 1.35rem); line-height: 1.05; letter-spacing: -0.02em; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.cover__author { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; margin-bottom: auto; font-weight: 700; }
.cover__shape { position: absolute; width: 120%; height: 60%; border-radius: 50%; right: -40%; top: -25%; opacity: .35; background: #fff; }
.cover--coral { background: linear-gradient(160deg, #FF7A7F, #D63A45); }
.cover--teal { background: linear-gradient(160deg, #35D0C1, #0F8C82); }
.cover--sun { background: linear-gradient(160deg, #FFD36B, #F5A623); color: var(--ink); }
.cover--sun .cover__title { text-shadow: none; }
.cover--lilac { background: linear-gradient(160deg, #A99BFF, #6A57E6); }
.cover--ink { background: linear-gradient(160deg, #3A3D66, #1C1E3A); }
.cover--mint { background: linear-gradient(160deg, #8EE3C8, #2FAF86); }
.cover--rose { background: linear-gradient(160deg, #FFA3C2, #E8548A); }
.cover--sky { background: linear-gradient(160deg, #7FC4FF, #2F7FDB); }
.cover-mini { border-radius: 6px; background: linear-gradient(160deg, #FF7A7F, #D63A45); }

.book { display: grid; gap: 16px; }
.book .cover { margin-inline: 10px; }
.book:hover .cover { transform: translateY(-6px) rotate(-1.5deg); }
.book__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
.book__cat { font-size: .82rem; color: var(--muted); font-weight: 700; margin-top: 4px; }
.book__price { font-family: var(--font-display); font-weight: 800; margin-top: 6px; display: flex; gap: 8px; align-items: baseline; }
.book__price s { color: var(--muted); font-weight: 600; font-size: .85rem; }
.book__links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }

/* Yatay kaydırmalı raf */
.shelf { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px var(--gutter) 24px; margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none; }
.shelf::-webkit-scrollbar { display: none; }
.shelf > * { flex: 0 0 min(72vw, 220px); scroll-snap-align: start; }
@media (min-width: 720px) { .shelf > * { flex-basis: 220px; } }
.shelf-nav { display: flex; gap: 8px; }

/* ---------- Kitap filtreleri ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filters button { padding: 10px 18px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; font-size: .92rem; background: var(--ground-peach); color: var(--ink-soft); transition: background .2s, color .2s; }
.filters button:hover { background: var(--coral-soft); color: var(--coral-deep); }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr)); gap: 32px 20px; }
@media (min-width: 720px) { .book-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 40px 28px; } }
.book.is-hidden { display: none; }

/* ---------- Etkinlik listesi ---------- */
.event { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 22px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; align-items: start; }
.event:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event__date { text-align: center; background: var(--ground-peach); border-radius: var(--r-md); padding: 10px 4px; font-family: var(--font-display); }
.event__date strong { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; color: var(--coral-deep); }
.event__date span { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }
.event__date em { display: block; font-style: normal; font-size: .72rem; color: var(--muted); font-weight: 700; }
.event--teal .event__date { background: var(--teal-soft); } .event--teal .event__date strong { color: var(--teal-deep); }
.event--sun .event__date { background: var(--sun-soft); } .event--sun .event__date strong { color: #9A6B00; }
.event--lilac .event__date { background: var(--lilac-soft); } .event--lilac .event__date strong { color: #5E4DD6; }
.event__title { font-size: 1.15rem; font-weight: 700; margin: 6px 0 6px; }
.event__info { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.event__info span { display: inline-flex; align-items: center; gap: 6px; }
.event__info svg { width: 16px; height: 16px; color: var(--muted); }
.event__actions { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.event--past { opacity: .72; }
.event--past .event__date { background: var(--line); } .event--past .event__date strong { color: var(--muted); }
@media (min-width: 720px) {
  .event { grid-template-columns: 88px 1fr auto; align-items: center; }
  .event__actions { margin-top: 0; }
}

/* Takvim ay grubu */
.month-group { margin-bottom: 40px; }
.month-group__title { display: flex; align-items: center; gap: 14px; font-size: var(--step-2); font-weight: 800; margin-bottom: 18px; }
.month-group__title::after { content: ""; flex: 1; height: 2px; background: var(--line); border-radius: 2px; }
.month-group .event + .event { margin-top: 14px; }

/* ---------- Video ---------- */
.video { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; background: var(--ink); }
.video__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: linear-gradient(140deg, #3A3D66, #1C1E3A); }
.video__thumb--a { background: linear-gradient(140deg, #F5525B, #8C3B8C); }
.video__thumb--b { background: linear-gradient(140deg, #16B3A5, #1C4B6B); }
.video__thumb--c { background: linear-gradient(140deg, #FFC542, #F5525B); }
.video__thumb--d { background: linear-gradient(140deg, #8C7BFF, #16B3A5); }
.video__thumb--e { background: linear-gradient(140deg, #1C1E3A, #16B3A5); }
.video__thumb--f { background: linear-gradient(140deg, #FF8C6B, #FFC542); }
.video__play { position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .25s; }
.video__play svg { width: 26px; height: 26px; margin-left: 4px; color: var(--coral); }
.video:hover .video__play { transform: scale(1.08); }
.video__dur { position: absolute; right: 12px; bottom: 12px; background: rgba(0,0,0,.6); color: #fff; font-size: .78rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; }
.video__label { position: absolute; left: 14px; top: 14px; }
.video-item .h-4 { margin-top: 14px; }
.video-item .h-4 a:hover { color: var(--coral-deep); }
.video-item p { color: var(--muted); font-size: .88rem; font-weight: 600; margin-top: 4px; }
.video--featured { aspect-ratio: 16 / 9; }
@media (min-width: 900px) { .video-featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: center; } }

/* ---------- Yazılar (blog) ---------- */
.post { display: grid; gap: 16px; }
.post__thumb { aspect-ratio: 16 / 10; border-radius: var(--r-lg); background: var(--ground-peach); position: relative; overflow: hidden; }
.post__thumb--mint { background: var(--ground-mint); }
.post__thumb--sun { background: var(--ground-sun); }
.post__thumb--lilac { background: var(--lilac-soft); }
.post__thumb .deco { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; right: -15%; bottom: -25%; background: var(--coral); opacity: .25; }
.post__thumb--mint .deco { background: var(--teal); }
.post__thumb--sun .deco { background: var(--sun); opacity: .5; }
.post__thumb--lilac .deco { background: var(--lilac); }
.post__thumb .chip { position: absolute; left: 14px; top: 14px; }
.post__meta { display: flex; gap: 10px; font-size: .85rem; color: var(--muted); font-weight: 700; }
.post__meta span + span::before { content: "•"; margin-right: 10px; }
.post .h-4 a:hover { color: var(--coral-deep); }
.post p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Stat şeridi ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.stat strong { display: block; font-family: var(--font-display); font-size: var(--step-4); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--coral); }
.stat:nth-child(2) strong { color: var(--teal); }
.stat:nth-child(3) strong { color: #E0A200; }
.stat:nth-child(4) strong { color: var(--lilac); }
.stat span { display: block; margin-top: 8px; color: var(--ink-soft); font-weight: 700; font-size: .95rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Basın logoları / alıntılar ---------- */
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; align-items: center; }
.press-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--muted); letter-spacing: -0.02em; opacity: .8; }
.quote { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); position: relative; }
.quote::before { content: "“"; position: absolute; top: 8px; left: 22px; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--coral-soft); }
.quote blockquote { margin: 0; position: relative; font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: .88rem; color: var(--muted); font-weight: 700; }

.award { display: flex; gap: 18px; padding: 24px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); align-items: flex-start; }
.award__icon { width: 56px; height: 56px; border-radius: 18px; background: var(--sun-soft); display: grid; place-items: center; flex: none; color: #B07A00; }
.award__icon svg { width: 28px; height: 28px; }
.award__year { font-family: var(--font-display); font-weight: 800; color: var(--muted); font-size: .85rem; letter-spacing: .08em; }
.award h3 { font-size: 1.1rem; margin: 4px 0 6px; }
.award p { color: var(--ink-soft); font-size: .95rem; }

.press-item { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.press-item__src { font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--coral-deep); }
.press-item h3 { font-size: 1.15rem; }
.press-item h3 a:hover { color: var(--coral-deep); }
.press-item time { color: var(--muted); font-size: .85rem; font-weight: 700; }
@media (min-width: 720px) { .press-item { grid-template-columns: 160px 1fr auto; align-items: center; } }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 6px; padding: 6px; background: var(--ground-peach); border-radius: var(--r-pill); width: fit-content; max-width: 100%; overflow-x: auto; margin-bottom: 36px; }
.tabs button { padding: 10px 20px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; white-space: nowrap; color: var(--ink-soft); }
.tabs button[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
[role="tabpanel"][hidden] { display: none; }

/* ---------- Hakkında ---------- */
.about-hero { display: grid; gap: 40px; align-items: center; }
.about-hero .portrait { max-width: 420px; margin-inline: auto; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
@media (min-width: 900px) { .about-hero { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }
.prose { max-width: 68ch; color: var(--ink-soft); }
.prose h2, .prose h3 { color: var(--ink); margin: 1.6em 0 .6em; }
.prose h2 { font-size: var(--step-3); }
.prose h3 { font-size: var(--step-2); }
.prose p + p { margin-top: 1.1em; }
.prose ul { list-style: none; display: grid; gap: 10px; margin: 1em 0; }
.prose ul li { padding-left: 28px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 14px; border-radius: 50%; background: var(--teal-soft); box-shadow: inset 0 0 0 4px var(--teal); }
.prose strong { color: var(--ink); }
.prose a { color: var(--teal-deep); font-weight: 700; text-decoration: underline; text-decoration-color: var(--teal-soft); text-underline-offset: 3px; }

.timeline { position: relative; display: grid; gap: 22px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); border-radius: 2px; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -28px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
.timeline li:nth-child(even)::before { background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.timeline strong { display: block; font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.timeline h3 { font-size: 1.1rem; margin-bottom: 4px; }
.timeline p { color: var(--ink-soft); font-size: .95rem; }

.expertise { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.expertise li { background: #fff; padding: 22px; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); display: grid; gap: 10px; }
.expertise .ico { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; }
.expertise .ico svg { width: 24px; height: 24px; }
.expertise strong { font-family: var(--font-display); font-size: 1.05rem; }
.expertise p { font-size: .92rem; color: var(--ink-soft); }
.ico--coral { background: var(--coral-soft); color: var(--coral-deep); }
.ico--teal { background: var(--teal-soft); color: var(--teal-deep); }
.ico--sun { background: var(--sun-soft); color: #9A6B00; }
.ico--lilac { background: var(--lilac-soft); color: #5E4DD6; }

/* ---------- Konuşma konuları (söyleşi) ---------- */
.topic { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display: grid; gap: 14px; transition: transform .25s, box-shadow .25s; }
.topic:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.topic__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.04em; line-height: 1; color: var(--coral-soft); }
.topic h3 { font-size: 1.2rem; }
.topic p { color: var(--ink-soft); font-size: .95rem; }
.topic__aud { display: flex; flex-wrap: wrap; gap: 6px; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery div { aspect-ratio: 4/3; border-radius: var(--r-md); background: linear-gradient(140deg, var(--coral-soft), var(--teal-soft)); }
.gallery div:nth-child(2) { background: linear-gradient(140deg, var(--sun-soft), var(--coral-soft)); }
.gallery div:nth-child(3) { background: linear-gradient(140deg, var(--lilac-soft), var(--teal-soft)); }
.gallery div:nth-child(4) { background: linear-gradient(140deg, var(--teal-soft), var(--sun-soft)); }
.gallery div:nth-child(5) { background: linear-gradient(140deg, var(--coral-soft), var(--lilac-soft)); }
.gallery div:nth-child(6) { background: linear-gradient(140deg, var(--ground-mint), var(--coral-soft)); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } .gallery div:first-child { grid-column: span 2; grid-row: span 2; } }

.step-list { counter-reset: s; display: grid; gap: 16px; }
.step-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.step-list li::before { counter-increment: s; content: counter(s); width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.step-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 2px; }
.step-list p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(36px, 6vw, 72px); text-align: center; isolation: isolate; }
.cta-band .blob { filter: blur(40px); z-index: -1; }
.cta-band .blob--coral { width: 380px; height: 380px; opacity: .55; top: -140px; left: -80px; right: auto; }
.cta-band .blob--teal { width: 340px; height: 340px; opacity: .45; bottom: -160px; right: -60px; left: auto; }
.cta-band .h-1 { margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 auto 28px; font-size: var(--step-1); }
.cta-band .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.cta-band .btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- Newsletter ---------- */
.newsletter { display: grid; gap: 24px; align-items: center; background: var(--ground-sun); border-radius: var(--r-lg); padding: clamp(28px, 5vw, 56px); }
.newsletter form { display: flex; flex-wrap: wrap; gap: 10px; }
.newsletter input { flex: 1 1 220px; padding: 15px 20px; border-radius: var(--r-pill); border: 2px solid transparent; background: #fff; box-shadow: var(--shadow-sm); }
.newsletter input:focus { border-color: var(--sun); outline: none; }
.newsletter small { display: block; color: var(--muted); font-weight: 600; margin-top: 10px; font-size: .82rem; }
@media (min-width: 900px) { .newsletter { grid-template-columns: 1fr 1fr; } }

/* ---------- Form ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 18px; border-radius: var(--r-md); border: 2px solid var(--line); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.field textarea { min-height: 150px; resize: vertical; }
.field small { color: var(--muted); font-size: .82rem; font-weight: 600; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.checkbox input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--coral); flex: none; }
.form-note { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--r-md); background: var(--ground-mint); color: var(--teal-deep); font-weight: 700; font-size: .92rem; }
.form-note svg { width: 20px; height: 20px; flex: none; }

.contact-card { background: #fff; border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); display: grid; gap: 10px; }
.contact-card .ico { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; }
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card strong { font-family: var(--font-display); font-size: 1.05rem; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: .95rem; }
.contact-card a:hover { color: var(--coral-deep); }
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 64px; } }

/* ---------- FAQ ---------- */
.faq details { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 6px 22px; }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 32px; height: 32px; border-radius: 50%; background: var(--ground-peach); display: grid; place-items: center; color: var(--coral-deep); font-weight: 800; flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-head { position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 56px); }
.page-head .h-1 { margin-bottom: 14px; }
.page-head .lead { margin-bottom: 0; }
.page-head .blob--teal { left: auto; right: -80px; top: -60px; bottom: auto; }
.page-head .blob--sun { right: 180px; top: 20px; bottom: auto; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--coral-deep); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumb [aria-current] { color: var(--ink-soft); }

/* ---------- Instagram şeridi ---------- */
.insta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.insta a { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative; background: linear-gradient(140deg, var(--coral-soft), var(--sun-soft)); display: grid; place-items: center; color: var(--coral-deep); transition: transform .25s; }
.insta a:nth-child(2) { background: linear-gradient(140deg, var(--teal-soft), var(--lilac-soft)); color: var(--teal-deep); }
.insta a:nth-child(3) { background: linear-gradient(140deg, var(--sun-soft), var(--teal-soft)); color: #9A6B00; }
.insta a:nth-child(4) { background: linear-gradient(140deg, var(--lilac-soft), var(--coral-soft)); color: #5E4DD6; }
.insta a:nth-child(5) { background: linear-gradient(140deg, var(--ground-mint), var(--sun-soft)); color: var(--teal-deep); }
.insta a:nth-child(6) { background: linear-gradient(140deg, var(--coral-soft), var(--lilac-soft)); color: var(--coral-deep); }
.insta a:hover { transform: scale(1.03); }
.insta svg { width: 30px; height: 30px; opacity: .6; }
@media (min-width: 720px) { .insta { grid-template-columns: repeat(6, 1fr); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); margin-top: clamp(56px, 8vw, 104px); padding-block: clamp(48px, 6vw, 80px) 28px; position: relative; overflow: hidden; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255,255,255,.5); }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer-grid h4 { font-family: var(--font-display); color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { font-size: .95rem; max-width: 36ch; }
.site-footer .social { margin-top: 20px; }
.site-footer .social a { background: rgba(255,255,255,.08); color: #fff; }
.site-footer .social a:hover { background: var(--coral); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Yardımcılar ---------- */
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Görünme animasyonu: dinlenme hâli görünür, JS sadece hafif kaydırma ekler */
.reveal { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.js .reveal:not(.is-visible) { transform: translateY(18px); }
@media (prefers-reduced-motion: reduce) { .js .reveal:not(.is-visible) { transform: none; opacity: 1; } }

/* Yukarı çık */
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, transform .25s, visibility .25s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Geliştirici imzası ---------- */
.dev-credit a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.45); font-size: .8rem; letter-spacing: .02em; transition: color .2s; }
.dev-credit a:hover { color: #fff; }
.dev-credit strong { font-family: var(--font-display); font-weight: 800; color: rgba(255,255,255,.7); }
.dev-credit a:hover strong { color: var(--sun); }

/* ---------- Detay sayfaları ---------- */
.detail-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1fr 340px; gap: 56px; align-items: start; } .detail-grid--book { grid-template-columns: 360px 1fr; } }
.sticky { position: sticky; top: 96px; }
.prose img { border-radius: var(--r-md); margin: 1.4em 0; }
.prose blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--coral); background: var(--ground-peach); border-radius: 0 var(--r-md) var(--r-md) 0; font-weight: 600; color: var(--ink); }
.prose ol { padding-left: 1.4em; display: grid; gap: 8px; margin: 1em 0; }
.prose ol li { list-style: decimal; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--ground-peach); }
.share { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.share span { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--muted); margin-right: 4px; }
.post-hero { max-width: 820px; }
.post-cover { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; margin: 32px 0; background: var(--ground-peach); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.author-box { display: flex; gap: 16px; align-items: center; padding: 22px; background: var(--ground-peach); border-radius: var(--r-lg); margin-top: 40px; }
.author-box .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--coral-soft); flex: none; overflow: hidden; }
.author-box .avatar img { width: 100%; height: 100%; object-fit: cover; }
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; background: var(--ground-peach); }
.pagination [aria-current] { background: var(--ink); color: #fff; }
.cover img + .cover__shape, .cover img ~ .cover__author, .cover img ~ .cover__title { display: none; }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery img, .insta img, .post__thumb img, .portrait img { width: 100%; height: 100%; object-fit: cover; }
.gallery div { overflow: hidden; }
.post__thumb img { position: absolute; inset: 0; }
.field.is-error input, .field.is-error textarea, .field.is-error select { border-color: var(--coral); }
.form-note.is-error { background: var(--coral-soft); color: var(--coral-deep); }
.btn[disabled] { opacity: .6; pointer-events: none; }
.event-detail__meta { display: grid; gap: 14px; }
.event-detail__meta div { display: flex; gap: 12px; align-items: flex-start; }
.event-detail__meta svg { width: 20px; height: 20px; color: var(--coral); flex: none; margin-top: 3px; }
.event-detail__meta strong { display: block; font-family: var(--font-display); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.video-modal { position: fixed; inset: 0; z-index: 90; background: rgba(28,30,58,.9); display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.is-open { display: flex; }
.video-modal__box { width: min(100%, 1000px); aspect-ratio: 16/9; background: #000; border-radius: var(--r-md); overflow: hidden; }
.video-modal__box iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: 18px; right: 18px; }
.search-box { display: flex; gap: 10px; max-width: 640px; }
.search-box input { flex: 1; padding: 15px 20px; border-radius: var(--r-pill); border: 2px solid var(--line); }
