/* =====================================================================
   EMO Ankara Şubesi 50. Yıl — Tasarım Sistemi
   detroit.paris esinli: minimalist, sofistike, akıcı animasyonlar.
   Renk paleti: siyah/beyaz + koyu mavi (#1a3a6b) vurgu.
===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --bg:        #f4f1ec;       /* sıcak kırık beyaz */
  --bg-deep:   #ebe6df;
  --ink:       #0a0a0a;
  --ink-soft:  #1a1a1a;
  --muted:     #6b6b6b;
  --line:      rgba(10,10,10,.12);
  --line-soft: rgba(10,10,10,.06);
  --accent:    #0086ce;       /* EMO logo mavisi */
  --accent-2:  #e8c547;
  --paper:     #ffffff;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Barlow', -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;

  --easing: cubic-bezier(0.33, 1, 0.68, 1);
  --easing-in:  cubic-bezier(0.65, 0, 0.35, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 0;
  --header-h: 84px;
  --timeline-h: 38px;

  --grid: 1.6vw;
}

@media (min-width: 1750px) {
  :root { --grid: 17.5px; }
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01','ss02','liga';
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

::selection { background: var(--ink); color: var(--paper); }

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

/* ====================== Tipografi ====================== */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.display {
  font-size: clamp(3.2rem, 9.5vw, 11rem);
  font-weight: 300;
}
.display em { font-style: italic; font-weight: 400; color: var(--accent); }

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }

p, li { font-size: clamp(1rem, 1.05vw, 1.075rem); line-height: 1.55; color: var(--ink-soft); }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.serif { font-family: var(--serif); }

/* ====================== Sayfa İlerleme Çubuğu (üst) ====================== */
.scroll-progress {
  position: fixed; left: 0; top: 0; height: 2px; width: 0%;
  background: var(--accent); z-index: 200;
  transition: width 100ms linear;
}

/* ====================== Header ====================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 3vw, 48px);
  background: rgba(244,241,236,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 400ms var(--easing), transform 600ms var(--easing);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.brand,
.brand:hover,
.brand:focus,
.brand:active,
.brand:visited { display: flex; align-items: center; gap: 14px; color: inherit; }
.brand-logo { height: 40px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.brand-mark {
  width: 40px; height: 40px; position: relative;
  border: 1px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 0.78rem; letter-spacing: -0.02em;
}

.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-text strong {
  font-family: var(--serif); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-top: 6px;
}

/* Nav */
.main-nav {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
}
.main-nav a {
  position: relative; font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ink); padding: 8px 0;
  transition: color 300ms var(--easing);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1px; background: var(--ink);
  transition: right 600ms var(--easing);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--accent); }
.main-nav a.is-active::after { background: var(--accent); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -16px;
  background: var(--bg); border: 1px solid var(--line);
  min-width: 170px; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 250ms var(--easing), transform 250ms var(--easing);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 7px 18px;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--ink); font-weight: 500;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(0,0,0,0.05);
  padding-left: 22px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1px; background: var(--ink);
  transition: transform 400ms var(--easing), opacity 200ms var(--easing);
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .main-nav {
    position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 120px 8vw; gap: 18px;
    transform: translateY(-100%); pointer-events: none;
    transition: transform 700ms var(--easing-out);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); pointer-events: auto; }
  .main-nav a { font-family: var(--serif); font-size: 2.2rem; letter-spacing: -0.02em; }
  .nav-toggle { display: block; z-index: 110; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; border: none; background: transparent;
    padding: 6px 0 0 24px; min-width: 0;
  }
  .nav-dropdown-menu a {
    font-family: var(--serif); font-size: 1.4rem; letter-spacing: -0.01em;
    padding: 3px 0; display: block;
  }
}

/* ====================== Timeline Bar (Header altı) ====================== */
.timeline-bar {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  z-index: 90;
  height: var(--timeline-h);
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.timeline-track {
  display: flex; align-items: center; gap: 64px;
  padding: 0 24px;
  white-space: nowrap;
  animation: timeline-slide 80s linear infinite;
}
.timeline-bar:hover .timeline-track { animation-play-state: paused; }
@keyframes timeline-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.timeline-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}
.timeline-item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  display: inline-block;
}
.timeline-item .yr { font-family: var(--serif); font-style: italic; color: var(--accent-2); margin-right: 8px; letter-spacing: 0.02em; text-transform: none; font-size: 1rem; }

/* Sayfa içeriği header + timeline kadar boşluk bırakır */
main.page { padding-top: var(--header-h); }

/* ====================== Page Transition Cover ====================== */
.page-cover {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink); color: var(--paper);
  pointer-events: none;
  transform: translateY(100%);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: clamp(4rem, 14vw, 14rem);
  letter-spacing: -0.04em;
  font-weight: 300;
}
.page-cover.in {
  animation: cover-in 900ms var(--easing-out) forwards;
}
.page-cover.out {
  animation: cover-out 900ms var(--easing-out) forwards;
}
@keyframes cover-in {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(0%); }
}
@keyframes cover-out {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}
.page-cover .cover-logo {
  opacity: 0; transform: translateY(40px);
  animation: cover-text 900ms var(--easing-out) 200ms forwards;
  width: clamp(90px, 13vw, 140px);
  height: clamp(90px, 13vw, 140px);
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--paper);
}
.page-cover .cover-logo.is-image {
  border: none;
  border-radius: 0;
  background: none;
  width: clamp(140px, 20vw, 220px);
  height: auto;
  padding: 0;
}
.page-cover .cover-logo.is-image img {
  width: 100%; height: auto; object-fit: contain; display: block;
}
@keyframes cover-text {
  to { opacity: 1; transform: translateY(0); }
}

/* ====================== Reveal Animations (intersection) ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--easing-out), transform 1.2s var(--easing-out); }
.reveal.is-in { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--easing-out), transform 1s var(--easing-out);
}
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: .75s; }

/* Word reveal (split type) */
.word-reveal { display: inline-block; vertical-align: top; }
.word-reveal .w {
  display: inline-block; transform: translateY(110%);
  transition: transform 1.1s var(--easing-out);
}
.w-wrap { padding-bottom: 0.18em; margin-bottom: -0.18em; }
.word-reveal.is-in .w { transform: translateY(0); }
.word-reveal .w:nth-child(2) { transition-delay: .05s; }
.word-reveal .w:nth-child(3) { transition-delay: .1s; }
.word-reveal .w:nth-child(4) { transition-delay: .15s; }
.word-reveal .w:nth-child(5) { transition-delay: .2s; }
.word-reveal .w:nth-child(6) { transition-delay: .25s; }
.word-reveal .w:nth-child(7) { transition-delay: .3s; }
.word-reveal .w:nth-child(8) { transition-delay: .35s; }

/* ====================== Hero ====================== */
.hero {
  min-height: auto;
  position: relative; padding: 0 clamp(20px, 4vw, 48px) 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}
/* Hero arka plan resmi */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 700ms ease;
  filter: saturate(0.7) brightness(0.9);
  /* Kenarlardan içe doğru sönen vignette */
  -webkit-mask-image: radial-gradient(ellipse 95% 100% at 50% 50%, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 100% at 50% 50%, black 50%, transparent 100%);
  will-change: opacity;
}

.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 24px;
  font-size: 0.8rem; color: var(--muted);
  letter-spacing: 0.08em;
}
.hero-meta .left, .hero-meta .right { display: flex; gap: 24px; align-items: center; }
.hero-meta .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,134,206,.5);
  animation: pulse 2.4s var(--easing) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,134,206,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(0,134,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,134,206,0); }
}

.hero-title { font-size: clamp(3rem, 11vw, 13rem); line-height: 1.05; font-weight: 300; color: var(--ink); }
.hero-title em { font-style: italic; color: var(--accent); }

/* ---- Çoklu başlık slide sistemi ---- */
.hero-titles {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-left:  calc(-1 * clamp(20px, 4vw, 48px));
  margin-right: calc(-1 * clamp(20px, 4vw, 48px));
  padding: clamp(12px, 2vw, 28px) clamp(20px, 4vw, 48px);
  /* Fotoğraf alanı sabit — yazı uzunluğundan bağımsız; 1.2 line-height ile ç/ğ/ş alt uzantılarına yer */
  height: calc(2 * 1.2 * clamp(3rem, 11vw, 13rem) + 2 * clamp(12px, 2vw, 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-titles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  z-index: 1;
  top: 0; left: 0; right: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
  pointer-events: none;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
}
.hero-slide.is-leaving {
  position: relative; /* akışta kalır → container yüksekliği korunur */
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

/* ---- Karakter wrapperları ---- */
.ch-word {
  display: inline-block; /* satır kırılması kelimeler arasında olur, orta kesilmez */
  white-space: nowrap;
}
.ch {
  display: inline-block; /* JS inline transform için gerekli */
}

.hero-foot {
  margin-top: 12px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: end;
}
.hero-foot p { max-width: 56ch; font-size: 1.2rem; }
.hero-foot-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

/* Big year tickers */
.year-stack {
  display: flex; gap: 24px; align-items: baseline;
  font-family: var(--serif); letter-spacing: -0.04em;
}
.year-stack .y { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; }
.year-stack .dash { width: clamp(40px, 8vw, 100px); height: 1px; background: var(--ink); align-self: center; opacity: 0.4; }
.year-stack .y.now { color: var(--accent); font-style: italic; }

/* ====================== Sections ====================== */
section.block {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.block-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}
.block-head .num {
  font-family: var(--serif); font-style: italic; color: var(--muted);
  font-size: 1.1rem; letter-spacing: -0.02em;
}
.block-head h2 { max-width: 18ch; }
.block-head--dark h2 {
  display: inline;
  background: var(--accent);
  color: var(--paper);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 6px 0 clamp(20px, 4vw, 48px);
  margin-left: calc(-1 * clamp(20px, 4vw, 48px));
}

.lede { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.18; color: var(--ink); max-width: 28ch; font-weight: 300; letter-spacing: -0.01em; }
.lede em { color: var(--accent); font-style: italic; }

/* Generic grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 56px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 56px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2vw, 40px); }
@media (max-width: 1100px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ====================== Cards ====================== */
.card {
  position: relative; overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 800ms var(--easing-out), box-shadow 600ms var(--easing-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(0,0,0,.25); }
.card .media {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-deep);
}
.card .media img,
.card .media .placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--easing-out), filter 800ms var(--easing-out);
  filter: grayscale(20%);
}
.card:hover .media img,
.card:hover .media .placeholder { transform: scale(1.04); filter: grayscale(0%); }
.card .body { padding: 22px 22px 26px; }
.card .body .meta { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.card .body h3 { font-size: 1.4rem; line-height: 1.05; margin-bottom: 10px; }
.card .body p { font-size: .95rem; color: var(--muted); }

.card .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper); color: var(--ink);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line);
}

/* Placeholder (görsel yokken) */
.placeholder {
  background:
    repeating-linear-gradient(45deg, var(--bg-deep) 0 12px, var(--bg) 12px 24px);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; color: rgba(0,0,0,.25);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

/* ====================== Marquee ====================== */
.marquee {
  display: flex; align-items: center; gap: 48px;
  border-block: 1px solid var(--line);
  padding: 28px 0; overflow: hidden; white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2rem, 5vw, 4.8rem);
  letter-spacing: -0.02em; color: var(--ink);
}
.marquee .track { display: flex; gap: 0; animation: marq 40s linear infinite; }
.marquee .track > span { display: inline-flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee .track .marq-word { font-style: italic; }
.marquee .track .star { color: var(--accent); font-style: normal; }
.marquee .marq-sep-img { height: 0.65em; width: auto; object-fit: contain; flex-shrink: 0; }
@keyframes marq {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================== Footer ====================== */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 48px) 30px;
  position: relative;
  border-top: 3px solid var(--accent-2);
}
.site-footer .footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 40px;
}
@media (max-width: 900px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--sans); font-weight: 500; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: var(--paper); opacity: .85; transition: opacity 300ms var(--easing); }
.site-footer a:hover { opacity: 1; color: var(--accent-2); }

.footer-display {
  font-family: var(--serif); font-weight: 300; letter-spacing: -.04em;
  font-size: clamp(2.4rem, 7vw, 6rem); line-height: 0.95;
  margin-bottom: 28px;
}
.footer-display em { color: var(--accent); font-style: italic; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: .78rem; color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase;
}

/* ====================== Buttons & Links ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  border: 1px solid var(--ink);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: color 400ms var(--easing), background 400ms var(--easing), border-color 400ms var(--easing);
}
.btn:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.btn .arrow { transition: transform 600ms var(--easing); }
.btn:hover .arrow { transform: translateX(6px); }

.btn--ghost { border-color: var(--line); }
.btn--accent { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn--accent::before { background: var(--ink); }

.dot-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  position: relative;
}
.dot-link::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  transform: scale(0); transition: transform 600ms var(--easing);
}
.dot-link:hover::before { transform: scale(1); }
.dot-link.is-active {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  padding: 4px 10px;
  border-radius: 2px;
  outline: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.dot-link.is-active::before { transform: scale(1); }

/* ====================== Forms ====================== */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .form .row { grid-template-columns: 1fr; } }
.form label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; font-weight: 500; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 0; border-bottom: 1px solid var(--ink);
  padding: 14px 0; background: transparent;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  transition: border-color 300ms var(--easing), padding 300ms var(--easing);
}
.form textarea { min-height: 160px; resize: vertical; padding-top: 14px; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--accent);
}
.form .actions { display: flex; gap: 16px; align-items: center; margin-top: 12px; }
.form-note { font-size: .82rem; color: var(--muted); }

.flash { padding: 14px 18px; border: 1px solid var(--line); margin-bottom: 24px; font-size: .9rem; }
.flash.success { border-color: #2c7a3e; color: #2c7a3e; background: #effaf1; }
.flash.error { border-color: var(--accent); color: var(--accent); background: #fdecef; }

/* ====================== Page Specific ====================== */

/* Almanak — yıl listesi */
.almanac-list { border-top: 1px solid var(--line); }
.almanac-row {
  display: grid; grid-template-columns: 130px 1fr 220px;
  gap: 32px; align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative; cursor: pointer;
  transition: padding 600ms var(--easing-out);
}
.almanac-row:hover { padding-left: 16px; }
.almanac-row .yr { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; letter-spacing: -.02em; }
.almanac-row:hover .yr { color: var(--accent); }
.almanac-row .ttl { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; line-height: 1.1; }
.almanac-row .cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-align: right; }
@media (max-width: 720px) {
  .almanac-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .almanac-row .cat { text-align: left; }
}

/* Almanak — ana sayfa kart grid */
.alm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: 32px;
}
.alm-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid var(--line);
  transition: transform .22s, box-shadow .22s;
}
.alm-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.alm-card .almc-visual {
  aspect-ratio: 3/2; overflow: hidden; position: relative;
  background: var(--ink); flex-shrink: 0;
}
.alm-card .almc-visual img {
  width: 100%; height: 100%; object-fit: cover; opacity: .82;
  filter: grayscale(15%); transition: opacity .3s, filter .3s;
}
.alm-card:hover .almc-visual img { opacity: 1; filter: grayscale(0%); }
.almc-date-block {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--paper); text-align: center;
}
.almc-date-block .almc-day  { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 300; line-height: 1; letter-spacing: -.03em; }
.almc-date-block .almc-mon  { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; opacity: .65; margin-top: 5px; }
.almc-date-block .almc-year { font-size: .58rem; letter-spacing: .12em; opacity: .4; margin-top: 3px; }
.almc-date-block.no-date    { background: var(--muted); opacity: .4; }
.almc-date-block .almc-yr1  { font-family: var(--serif); font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 300; line-height: 1; letter-spacing: -.03em; }
.almc-date-block .almc-yrsep{ font-size: .75rem; opacity: .45; margin: 4px 0; }
.almc-date-block .almc-yr2  { font-family: var(--serif); font-size: clamp(1.2rem,2.8vw,1.9rem); font-weight: 300; line-height: 1; opacity: .65; }
.alm-card .almc-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.almc-term { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.almc-title { font-family: var(--serif); font-size: clamp(.9rem,1.4vw,1.05rem); font-weight: 400; line-height: 1.3; flex: 1; }
.alm-card:hover .almc-title { color: var(--accent); }
.almc-type { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-top: auto; padding-top: 6px; }
@media (max-width: 860px) { .alm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .alm-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* Portreler grid */
.portrait-card { position: relative; overflow: hidden; cursor: pointer; }
.portrait-card .media { aspect-ratio: 3/4; }
.portrait-card .info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: var(--paper);
  z-index: 2;
}
.portrait-card .name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.portrait-card .role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; margin-top: 6px; }
.portrait-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
}

/* Portre detay */
.portrait-detail { padding: clamp(40px,6vw,100px) clamp(20px,4vw,48px); }

.pd-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .pd-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Polaroid fotoğraf */
.pd-polaroid {
  background: #fff;
  padding: 8px 8px 36px;
  box-shadow: 0 6px 28px rgba(0,0,0,.18);
}
.pd-polaroid img { width: 100%; display: block; }
.pd-polaroid .placeholder {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep); font-size: 5rem;
  font-family: var(--serif); color: var(--muted);
}

/* Söyleşi metası fotoğrafın altında */
.pd-photo-meta {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.pd-photo-meta .kicker { display: block; margin-bottom: 4px; }
.pd-photo-meta p { margin: 2px 0; }

/* Sağ kolon */
.pd-right h1 { font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.1; margin: 0 0 12px; }
.pd-roles { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 4px; }

/* Vurgu cümlesi (sağ kolonda) */
.pd-quote {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}
.pd-quote p { display: inline; margin: 0; }

/* Bölüm etiketi (biyografi / söyleşi / vurgu cümlesi) */
.pd-label {
  font-weight: 700;
  font-family: var(--sans);
  font-style: normal;
  margin-right: .35em;
}

/* Alt tam-genişlik bölümler */
.pd-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.75;
}

.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1em; }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }

/* Forum */
.topic { border-bottom: 1px solid var(--line); padding: 28px 0; }
.topic h3 { margin-bottom: 6px; }
.topic .meta { font-size: .78rem; color: var(--muted); display: flex; gap: 14px; margin-bottom: 12px; letter-spacing: .04em; }
.topic .meta .pin { color: var(--accent); font-weight: 600; }
.reply-list { margin-top: 30px; display: grid; gap: 18px; }
.reply { background: var(--paper); border: 1px solid var(--line); padding: 22px; }
.reply .head { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-bottom: 8px; }

/* Time Capsule */
.capsule-wall {
  column-count: 3; column-gap: 24px;
}
@media (max-width: 1100px) { .capsule-wall { column-count: 2; } }
@media (max-width: 720px) { .capsule-wall { column-count: 1; } }
.letter {
  break-inside: avoid; background: var(--paper); border: 1px solid var(--line);
  padding: 28px; margin-bottom: 24px; position: relative;
  transition: transform 600ms var(--easing-out), box-shadow 600ms var(--easing-out);
}
.letter:hover { transform: translateY(-3px) rotate(-0.4deg); box-shadow: 0 24px 60px -30px rgba(0,0,0,.25); }
.letter::before {
  content: ''; position: absolute; left: 50%; top: -10px; transform: translateX(-50%);
  width: 80px; height: 12px; background: var(--accent); opacity: .6;
}
.letter .recipient { font-family: var(--serif); font-style: italic; color: var(--accent); margin-bottom: 8px; font-size: .95rem; }
.letter .subject { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 14px; line-height: 1.2; }
.letter .body { font-size: .92rem; color: var(--ink-soft); white-space: pre-wrap; }
.letter .sig { margin-top: 14px; font-size: .78rem; color: var(--muted); letter-spacing: .04em; }

/* Etkinlik kartı geniş */
.event-row {
  display: grid; grid-template-columns: 200px 1fr 120px;
  gap: 32px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: padding 700ms var(--easing-out);
}
.event-row:hover { padding-left: 24px; }
.event-row .date { font-family: var(--serif); font-size: 1.4rem; line-height: 1.1; }
.event-row .date small { display: block; font-family: var(--sans); color: var(--muted); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; }
.event-row h3 { font-size: 1.5rem; margin-bottom: 8px; }
.event-row .arrow { text-align: right; font-size: 1.6rem; transition: transform 600ms var(--easing); }
.event-row:hover .arrow { transform: translateX(8px); }
@media (max-width: 720px) { .event-row { grid-template-columns: 1fr; } }

/* ---- Günce etkinlik kartları ---- */
.gunce-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.gunce-card .media { aspect-ratio: 3/4; background: #fff; }
.gunce-card .media img { object-fit: contain; filter: none; }
.gunce-card:hover .media img { filter: none; transform: scale(1.02); }
.gunce-card .body { padding: 14px 16px 18px; }
.gunce-card .body h3 { font-size: 1rem; margin-bottom: 6px; line-height: 1.2; }
.gunce-card .body .meta { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; display: flex; flex-wrap: wrap; gap: 2px; }
.gunce-card .body p { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.gunce-card--past { opacity: .65; filter: grayscale(30%); }
.gunce-card--past:hover { opacity: .9; filter: grayscale(0%); }
.gunce-link { display: inline-block; margin-top: 10px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); transition: letter-spacing 400ms var(--easing-out); }
.gunce-card:hover .gunce-link { letter-spacing: .18em; }
.gunce-placeholder {
  position: relative;
  background: var(--bg-deep);
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 8px,
    rgba(0,0,0,.04) 8px, rgba(0,0,0,.04) 16px
  );
  width: 100%;
  height: 100%;
}
.gunce-card .gunce-placeholder img {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 52%;
  max-height: 52%;
  object-fit: contain;
  z-index: 2;
  filter: none;
}
.gunce-card:hover .gunce-placeholder img {
  transform: translate(-50%, -50%) scale(1.02);
}

/* ---- Film şeridi (ana sayfa önizleme) ---- */
section.block--film-section {
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-left: 0; padding-right: 0;
}
section.block--film-section .block-head {
  padding: 0 clamp(20px, 4vw, 48px);
}
section.block--film-section .block-head h2 { color: var(--bg); }
section.block--film-section .block-head .dot-link { color: rgba(244,241,236,.5); }
section.block--film-section .block-head .dot-link:hover { color: var(--bg); }

.film-reel {
  overflow: hidden;
}
.film-reel:hover .film-track { animation-play-state: paused; }

.film-holes {
  height: 22px;
  background: #0a0a0a;
  background-image: radial-gradient(ellipse 7px 7px at center, rgba(244,241,236,.82) 55%, transparent 56%);
  background-size: 34px 22px;
  background-repeat: repeat-x;
  background-position: 17px center;
}

.film-track {
  display: flex;
  gap: 3px;
  padding: 3px 0;
  background: #0a0a0a;
  width: max-content;
  animation: film-scroll 40s linear infinite;
}
@keyframes film-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.film-frame {
  flex-shrink: 0;
  width: 210px;
  position: relative;
  overflow: hidden;
  display: block;
}
.film-frame img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  filter: sepia(55%) contrast(0.88) brightness(0.85);
  transition: filter 900ms var(--easing-out), transform 900ms var(--easing-out);
}
.film-frame:hover img {
  filter: sepia(0%) contrast(1) brightness(1);
  transform: scale(1.03);
}
.film-placeholder {
  width: 100%; aspect-ratio: 2/3;
  background: #161616;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: rgba(244,241,236,.2); font-size: 2.2rem;
}
.film-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 10px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: rgba(244,241,236,.88);
  font-size: .72rem; letter-spacing: .04em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 500ms var(--easing), transform 600ms var(--easing-out);
}
.film-frame:hover .film-cap { opacity: 1; transform: translateY(0); }
.film-yr {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--accent-2);
  margin-bottom: 3px;
}
@media (max-width: 720px) {
  .film-frame { width: 160px; }
}

/* Foto arşivi */
.archive-grid {
  columns: 4 220px; column-gap: 16px;
}
.archive-item {
  break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden;
  background: var(--bg-deep);
  cursor: zoom-in;
}
.archive-item img { width: 100%; display: block; transition: transform 1.5s var(--easing-out); filter: grayscale(35%); }
.archive-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.archive-item .cap {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  color: var(--paper); font-size: .8rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 500ms var(--easing), transform 600ms var(--easing-out);
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.archive-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(4,4,4,.97);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 500;
}
.lightbox.is-open { display: flex; }

.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,.55); font-size: 2rem;
  padding: 8px 12px; z-index: 10; line-height: 1;
  transition: color 200ms, transform 300ms var(--easing);
}
.lb-close:hover { color: #fff; transform: rotate(90deg); }

.lb-stage {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: calc(100vh - 130px);
}

.lb-side {
  flex-shrink: 0; width: 14vw; max-width: 190px;
  padding: 0 12px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms var(--easing);
}
.lb-side.is-visible { opacity: 1; pointer-events: auto; }
.lb-side img {
  width: 100%; max-height: 52vh; object-fit: cover; display: block;
  filter: brightness(.38) grayscale(.4);
  transition: filter 350ms var(--easing), transform 350ms var(--easing);
}
.lb-side:hover img { filter: brightness(.62) grayscale(.1); transform: scale(1.03); }

.lb-main {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; min-width: 0; padding: 0 8px;
}
.lb-img {
  max-width: 100%; max-height: 74vh;
  object-fit: contain; display: block;
  transition: opacity 250ms var(--easing), transform 300ms var(--easing-out);
}
.lb-img.is-out { opacity: 0; transform: scale(.97); }

.lb-info {
  margin-top: 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.lb-year {
  font-family: var(--serif); font-style: italic;
  font-size: 1.45rem; color: var(--accent-2); line-height: 1;
}
.lb-cap {
  font-size: .88rem; color: rgba(255,255,255,.65);
  max-width: 54ch; line-height: 1.5; margin: 0;
}

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.35); font-size: 3.2rem; line-height: 1;
  padding: 20px 18px;
  transition: color 200ms, background 200ms;
  z-index: 10; user-select: none;
}
.lb-arrow:hover { color: #fff; background: rgba(255,255,255,.06); }
.lb-arrow--prev { left: 0; }
.lb-arrow--next { right: 0; }
.lb-arrow.is-hidden { opacity: 0; pointer-events: none; }

.lb-counter {
  position: absolute; bottom: 22px;
  color: rgba(255,255,255,.28); font-size: .75rem; letter-spacing: .15em;
}

@media (max-width: 720px) {
  .lb-side { display: none; }
  .lb-arrow { font-size: 2.4rem; padding: 14px 10px; }
  .lb-img { max-height: 60vh; }
}

/* Yönetim Kurulları — Dönem seçici */
.term-selector { margin-bottom: 40px; }
.term-selector-label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.term-select-wrap { position: relative; display: inline-flex; align-items: center; }
.term-select-wrap select {
  appearance: none; -webkit-appearance: none;
  background: var(--paper); border: 1px solid var(--ink);
  padding: 12px 48px 12px 18px;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
  cursor: pointer; min-width: 260px;
}
.term-select-wrap select:focus { outline: none; border-color: var(--accent); }
.term-select-arrow { position: absolute; right: 16px; pointer-events: none; font-size: .9rem; color: var(--muted); }

/* Yönetim Kurulları */
.board {
  padding: 32px 0;
}

.board-header {
  margin-bottom: 24px;
}
.board-title {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.board-term {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 400;
  color: var(--ink); letter-spacing: -.03em; line-height: 1;
}
.board-term-label {
  font-family: var(--serif); font-size: 1.1rem; color: var(--muted);
}
.board-years {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-left: 8px;
}
.board-notes {
  font-size: .88rem; color: var(--muted); margin-top: 8px; font-style: italic;
}

.board-members {
  list-style: none;
}
.board-member {
  display: grid;
  grid-template-columns: 44px 72px 1fr;
  align-items: center;
  gap: 0 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 600px) {
  .board-member { grid-template-columns: 36px 60px 1fr; }
  .board-member .member-role { grid-column: 2 / -1; padding-bottom: 4px; }
}
.board-member .member-photo {
  width: 44px; height: 58px;
  border-radius: 3px; object-fit: cover; border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease, z-index 0s;
  position: relative; z-index: 1;
}
.board-member .member-photo:hover {
  transform: scale(3.5) translateX(30px);
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  border-radius: 4px;
}
.board-member .member-photo-empty { width: 44px; height: 58px; }
.board-member .member-sicil {
  font-size: .75rem; color: var(--muted); font-family: var(--serif);
}
.board-member .member-namerow { display: block; }
.board-member .member-name { font-size: .95rem; font-weight: 500; color: var(--ink); }
.board-member .member-sep  { color: var(--muted); margin: 0 4px; }
.board-member .member-role { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dl { display: grid; grid-template-columns: 140px 1fr; gap: 14px 24px; }
.contact-info dt { color: var(--muted); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; padding-top: 4px; }
.contact-info dd { font-family: var(--serif); font-size: 1.2rem; }

/* Cursor (custom) */
.cursor {
  position: fixed; top: 0; left: 0; width: 14px; height: 14px;
  border-radius: 50%; background: var(--accent);
  pointer-events: none; z-index: 1000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 300ms var(--easing), height 300ms var(--easing), transform 60ms linear;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor.is-hover { width: 56px; height: 56px; background: var(--paper); }

/* ====================== Utilities ====================== */
.container { max-width: 1480px; margin-inline: auto; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; } .mt-8 { margin-top: 96px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; } .mb-6 { margin-bottom: 64px; }

.divider { height: 1px; background: var(--line); border: 0; margin: 48px 0; }

/* Görsel placeholder yıllık fotoğraf havası */
.bw-tone { filter: grayscale(60%) contrast(1.05); }

/* Video Grid — 50 Yıldan İzler */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--ink);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-info h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 6px;
  line-height: 1.3;
}
.video-info p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Dönem çubuğunun hemen altındaki block'un üst boşluğunu kıs */
.decade-bar + section.block { padding-top: 16px; }

/* Dönem akış çubuğu */
.decade-bar {
  display: flex; overflow-x: auto; scrollbar-width: none;
  border-top: none; border-bottom: 1px solid var(--line);
  margin-top: -1px; /* hero border-bottom ile birleş */
}
.decade-bar::-webkit-scrollbar { display: none; }
.decade-filter-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 10px 24px; flex-shrink: 0;
  border: none; border-right: 1px solid var(--line); background: transparent;
  cursor: pointer; position: relative;
  transition: background 200ms, color 200ms;
  color: var(--ink);
}
.decade-filter-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform 300ms var(--easing);
}
.decade-filter-btn:hover { background: var(--bg-deep); }
.decade-filter-btn:hover::after,
.decade-filter-btn.is-active::after { transform: scaleX(1); }
.decade-filter-btn.is-active { color: var(--accent); }
.dfb-year {
  font-size: .68rem; letter-spacing: .1em; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.decade-filter-btn.is-active .dfb-year { color: color-mix(in srgb, var(--accent) 60%, transparent); }
.dfb-label { font-family: var(--serif); font-size: 1rem; font-weight: 400; }

/* Afiş grid */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.poster-card {
  display: flex; flex-direction: column; gap: 10px;
}
.poster-card img {
  width: 100%; display: block;
  aspect-ratio: 3/4; object-fit: cover;
  transition: transform 1.2s var(--easing-out);
  filter: grayscale(20%);
}
.poster-card:hover img { transform: scale(1.03); filter: grayscale(0%); }
.poster-card .poster-info { font-size: .85rem; }
.poster-card .poster-info strong { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.poster-card .poster-info span { color: var(--muted); font-size: .78rem; }

/* "Tümünü Göster" bölüm alt çubuğu */
.section-footer {
  margin-top: 32px; display: flex; align-items: center; gap: 20px;
}
.section-footer::before {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
