/* ============ ERENLER MADENCİLİK — Scrolltelling (aydınlık tema) ============ */
:root {
  --bg: #faf8f4;          /* sıcak fildişi */
  --bg-soft: #f2eee6;     /* açık taş */
  --ink: #241f19;         /* koyu sıcak kahve-füme */
  --ink-dim: #857b6b;     /* sıcak gri */
  --accent: #a07c3b;      /* bronz altın */
  --line: rgba(36, 31, 25, .1);
  --stone-1: #e9e3d7;
  --stone-2: #d9d0bf;
  --on-media: #f6f2ea;    /* video/görsel üstü açık metin */
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- progress bar ---- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--accent); z-index: 100;
}

/* ---- nav (difference: video üstünde açık, açık zeminde koyu görünür) ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; flex-direction: column; align-items: center; gap: .95rem;
  padding: 1.3rem 4vw 1rem;
  /* her zeminde aynı görünüm: buzlu fildişi şerit */
  background: rgba(250,248,244,.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(36,31,25,.08);
}
.nav-logo { font-weight: 600; letter-spacing: .42em; font-size: .9rem; color: var(--ink); text-indent: .42em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 3rem; }
.nav-links a {
  position: relative; color: var(--ink); text-decoration: none; font-size: .72rem;
  letter-spacing: .3em; text-transform: uppercase; text-indent: .3em;
  opacity: .62; transition: opacity .5s ease; cursor: pointer;
}
/* lüks dokunuş: hover'da ortadan iki yana açılan altın kılçık çizgi */
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: -.5rem;
  width: 0; height: 1px; background: var(--accent);
  transform: translateX(-50%); transition: width .5s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

/* hamburger düğmesi — masaüstünde gizli (nav.js ekler) */
.nav-toggle { display: none; }

/* ---- media placeholder (görseller gelene kadar açık taş dokusu) ---- */
.media-placeholder {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 10%, var(--stone-2) 0%, transparent 55%),
    radial-gradient(90% 120% at 85% 80%, #efe9dd 0%, transparent 60%),
    linear-gradient(160deg, var(--stone-1), #f5f1e8 70%);
}
.ph-label {
  position: absolute; bottom: 12px; left: 14px; z-index: 2;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-dim); border: 1px solid var(--line);
  padding: .3rem .6rem; border-radius: 3px; background: rgba(250,248,244,.7);
}
.media-placeholder img, .media-placeholder video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.media-placeholder:has(img) .ph-label,
.media-placeholder:has(video) .ph-label { display: none; }

/* ---- scroll-scrub canvas ---- */
canvas.scrub {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.media-placeholder.has-scrub .ph-label,
.media-placeholder.has-scrub::after { display: none; }

/* ---- hero (video sahnesi: yazılar açık renk kalır) ---- */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); /* kareler yüklenene dek koyu zemin, açık flaş yapmasın */
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(20,16,12,.32), transparent 28%,
    transparent 68%, rgba(20,16,12,.42));
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 6vw; pointer-events: none;
}

/* ---- sahne yazıları ---- */
.scene-caption { position: absolute; opacity: 0; will-change: opacity, transform; }
.scene-caption::before {
  content: ""; position: absolute; inset: -55% -45%; z-index: -1;
  background: radial-gradient(closest-side, rgba(15,12,9,.5), rgba(15,12,9,.22) 55%, transparent 75%);
}
.hero-eyebrow {
  font-size: .78rem; letter-spacing: .45em; text-transform: uppercase;
  color: #dcc492; margin-bottom: 1.6rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
/* marka yazıları: çevresinde ince altın ışık halkası beliren hover */
.hero-eyebrow, .scene-sign {
  display: inline-block; pointer-events: auto; cursor: default;
  padding: .55rem 1.5rem; border: 1px solid transparent; border-radius: 2px;
  transition: border-color .7s ease, box-shadow .7s ease, text-shadow .7s ease;
}
.hero-eyebrow:hover, .scene-sign:hover {
  border-color: rgba(220,196,146,.4);
  box-shadow: 0 0 26px rgba(220,196,146,.16), inset 0 0 16px rgba(220,196,146,.07);
  text-shadow: 0 0 16px rgba(220,196,146,.7), 0 1px 12px rgba(0,0,0,.6);
}
.hero-title, .scene-title {
  font-family: var(--serif); font-weight: 500; color: var(--on-media);
  font-size: clamp(2.4rem, 6.5vw, 5.2rem); line-height: 1.12;
  text-shadow: 0 1px 3px rgba(0,0,0,.45), 0 10px 44px rgba(0,0,0,.4);
}
.scene-sign {
  margin-top: 1.8rem; font-size: .82rem; letter-spacing: .45em;
  text-transform: uppercase; color: #dcc492;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(246,242,234,.75);
}
.cue-line {
  width: 1px; height: 52px; margin: .8rem auto 0;
  background: linear-gradient(#dcc492, transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ---- chapters ---- */
.chapter { position: relative; padding: 22vh 8vw; }
.chapter-dark { background: var(--bg-soft); }
.chapter-head { display: flex; align-items: baseline; gap: 1.6rem; margin-bottom: 8vh; }
.chapter-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.05rem, 4.5vw, 3.65rem); line-height: 1.1;
}
.lead { font-size: clamp(1.1rem, 2.1vw, 1.45rem); color: var(--ink); max-width: 34em; line-height: 1.75; }
.lead.centered { margin: 0 auto 7vh; text-align: center; }
p + p { margin-top: 1.2rem; color: var(--ink-dim); max-width: 34em; }

/* ---- split (bölüm 01) ---- */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5vw; align-items: center; }
.split-media {
  aspect-ratio: 4 / 5; border-radius: 4px;
  box-shadow: 0 24px 60px rgba(36,31,25,.12);
}

/* ---- fullbleed (bölüm 02) ---- */
.fullbleed {
  width: 100%; aspect-ratio: 21 / 9; border-radius: 4px; margin-bottom: 5vh;
  box-shadow: 0 30px 80px rgba(36,31,25,.14);
}
.fullbleed-caption { display: flex; justify-content: center; }
.fullbleed-caption .lead { text-align: center; }

/* ---- bölüm 02: tam ekran sahne + scroll ile açılan infografik ---- */
.blok-stage {
  padding: 0; height: 100vh; overflow: hidden;
  background: #17130f;            /* kareler yüklenene dek koyu zemin */
}
.blok-stage .fullbleed {
  width: 100%; height: 100%;
  aspect-ratio: auto;             /* 21:9 kutudan tam ekrana */
  border-radius: 0; margin-bottom: 0; box-shadow: none;
}
/* sahnenin okunurluğu için üstten/alttan çok yumuşak karartma */
.blok-stage .fullbleed::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(14,11,8,.46), transparent 32%,
    transparent 62%, rgba(14,11,8,.52));
}
.blok-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6vw; pointer-events: none;
}
/* bölüm başlığı sahnenin sol üstünde durur */
.blok-head {
  position: absolute; top: 14vh; left: 6vw; margin: 0;
}
.blok-head .chapter-title {
  color: var(--on-media);
  text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 10px 40px rgba(0,0,0,.42);
}

/* infografik aşama: başlık + açıklama (scrub.js kare aralığına göre belirir) */
.info-step { max-width: 34rem; text-align: center; }
.step-title {
  font-family: var(--serif); font-weight: 500; color: var(--on-media);
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.14;
  text-shadow: 0 1px 3px rgba(0,0,0,.45), 0 10px 44px rgba(0,0,0,.4);
}
.step-desc {
  margin-top: 1.1rem; color: rgba(246,242,234,.82);
  font-size: clamp(.95rem, 1.5vw, 1.12rem); line-height: 1.7;
  max-width: 30em; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
@media (max-width: 820px) {
  .blok-head { top: 11vh; }
  .info-step { max-width: 92vw; }
}

/* ---- yatay kaydırma (fabrika) ---- */
.hscroll-wrap { overflow: hidden; }
.hscroll-track { display: flex; gap: 3vw; width: max-content; padding-right: 6vw; }
.hcard { width: min(420px, 72vw); flex-shrink: 0; }
.hcard figure {
  aspect-ratio: 4 / 3; border-radius: 4px; margin-bottom: 1.4rem;
  box-shadow: 0 18px 48px rgba(36,31,25,.12);
}
.hcard h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin-bottom: .4rem; }
.hcard p { color: var(--ink-dim); font-size: .95rem; }

/* ---- doku (bölüm 04: yazısız doku sahnesi — iki pinli bölüm arasında nefes) ---- */
#doku { min-height: 100vh; padding: 0; overflow: hidden; }
.texture-bg { position: absolute; inset: 0; }
.texture-bg::before {
  /* yazı taşımadığı için süt beyazı perde kalktı; damar tam güçte okunsun.
     Yalnızca kenarlara komşu bölümlere bağlayan çok yumuşak bir vinyet. */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(36,31,25,.18));
}

/* ---- mekânlar ---- */
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem 3vw;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px; /* offset telafisi */
}
.place {
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 50px rgba(36, 31, 25, .08);
  aspect-ratio: 3 / 4; /* Zarif dikey oran */
  overflow: hidden;
}
.place::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 31, 25, 0.75) 0%, rgba(36, 31, 25, 0.2) 45%, transparent 70%);
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}
.place:hover::after {
  opacity: 0.95;
}
.place img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.215, .61, .355, 1);
}
.place:hover img {
  transform: scale(1.05);
}
.place:nth-child(even) {
  margin-top: 80px; /* Dikey şaşırtma (stagger) */
}
.place figcaption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--on-media);
  font-family: var(--sans);
  font-weight: 400;
  transition: transform 0.5s cubic-bezier(.215, .61, .355, 1);
}
.place:hover figcaption {
  transform: translateY(-6px);
}

/* ---- mekân kartı: koleksiyon bağlantısı + altın köşe işaretleri ----
   Kart düzeni (3/4 oran, gradient perde, stagger) yukarıdaki kurallardan gelir;
   buradakiler yalnızca kart içeriğini ve galeri bağlantısını biçimlendirir. */
.place-media { position: absolute; inset: 0; display: block; }

/* altın köşe işaretleri — kaldırılan .quote-frame motifinden devralındı.
   .place::after gradient perde tarafından kullanıldığı için pseudo'lar burada. */
.place-media::before, .place-media::after {
  content: ""; position: absolute; z-index: 2; width: 14px; height: 14px;
  border-color: #dcc492; border-style: solid; opacity: 0;
  transition: opacity .6s ease;
  /* görsellerin üst kısmı açık bej; gölge olmadan altın çizgi kayboluyor */
  filter: drop-shadow(0 1px 2px rgba(20,16,12,.65));
}
.place-media::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.place-media::after { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.place:hover .place-media::before,
.place:hover .place-media::after { opacity: .9; }

.place-name {
  display: block; text-decoration: none;
  font-family: var(--serif); font-weight: 500; text-transform: none;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.15; letter-spacing: .02em;
  color: var(--on-media); transition: color .4s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
}
/* Kartın tamamını tıklanabilir yapar; a11y ağacında tek link kalır.
   figcaption position:absolute olduğu için inset:0 yalnızca yazı alanını
   kaplardı; taşan örtü .place'in overflow:hidden'ı tarafından karta kırpılır. */
.place-name::after { content: ""; position: absolute; inset: -100vmax; z-index: 3; }
.place:hover .place-name { color: #dcc492; }
.place-stones {
  display: block; margin-top: .55rem;
  font-size: .66rem; letter-spacing: .16em; line-height: 1.6;
  color: rgba(246,242,234,.72);
}

/* ---- rakamlar ---- */
.stats {
  display: flex; justify-content: center; gap: 10vw;
  padding: 14vh 6vw; background: var(--bg-soft); text-align: center; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; /* damar tuvali bölümü aşmasın */
}
/* arka plan animasyonu: konumlandırma burada, çizim veins.js'te */
.stats-veins {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.stat { position: relative; z-index: 1; }
.stat-num, .stat-suffix {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500; color: var(--accent);
}
.stat p { color: var(--ink-dim); letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin-top: .4rem; }

/* ---- footer ---- */
.footer { padding: 18vh 6vw 6vh; text-align: center; }

/* ---- footer: taş dokulu varyant (yalnızca .footer-bg taşıyan footer'da) ----
   Alt sayfaların footer'ları bu katmanı taşımaz; açık temada kalırlar. */
.footer:has(.footer-bg) { position: relative; background: #0b1310; }
.footer-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.footer-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.footer-bg::after {
  /* Verde Alpi'nin beyaz damarları yoğun ve yüksek kontrastlı; perde bu yüzden
     Toros Siyah'takinden bir tık güçlü. Sıcak siyah yerine yeşil-siyah, yoksa
     taşın yeşili çamurlaşıyor. */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,16,13,.86), rgba(8,16,13,.66) 34%, rgba(8,16,13,.8));
}
.footer-inner { position: relative; z-index: 2; }

.footer:has(.footer-bg) .footer-title {
  color: var(--on-media);
  text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 10px 44px rgba(0,0,0,.4);
}
/* koyu zeminde --accent (#a07c3b) sönük kalıyor; media üstü altın tonu kullanılır */
.footer:has(.footer-bg) .footer-cta,
.footer:has(.footer-bg) .contact-label { color: #dcc492; }
.footer:has(.footer-bg) .footer-cta { border-bottom-color: rgba(220,196,146,.55); }
.footer:has(.footer-bg) .contact-item p { color: rgba(246,242,234,.78); }
.footer:has(.footer-bg) .contact-item a { color: var(--on-media); }
.footer:has(.footer-bg) .contact-item a:hover { color: #dcc492; }
.footer:has(.footer-bg) .footer-meta {
  color: rgba(246,242,234,.55); border-top-color: rgba(246,242,234,.16);
}
.footer-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.2; margin-bottom: 3rem;
}
.footer-cta {
  display: inline-block; color: var(--accent); text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: .06em;
  border-bottom: 1px solid var(--accent); padding-bottom: .3rem;
  transition: opacity .3s;
}
.footer-cta:hover { opacity: .7; }
.footer-contact {
  display: flex; justify-content: center; gap: 8vw; flex-wrap: wrap;
  margin-top: 5rem; text-align: center;
}
.contact-label {
  display: block; font-size: .72rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .7rem;
}
.contact-item p { color: var(--ink-dim); font-size: .95rem; max-width: none; margin: 0; }
.contact-item a { color: var(--ink); text-decoration: none; letter-spacing: .06em; }
.contact-item a:hover { color: var(--accent); }

.footer-meta {
  display: flex; justify-content: space-between; margin-top: 12vh;
  color: var(--ink-dim); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  border-top: 1px solid var(--line); padding-top: 2rem;
}

/* ---- alt sayfalar ---- */
a.nav-logo { text-decoration: none; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }

.page-hero { padding: 25vh 6vw 9vh; text-align: center; }
.page-eyebrow {
  font-size: .75rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.3rem;
}
.page-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05;
}
.page-lead {
  margin: 1.7rem auto 0; max-width: 36em; color: var(--ink-dim);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.page-section { padding: 6vh 6vw 10vh; }
.page-section.tinted { background: var(--bg-soft); padding: 10vh 6vw; }

.pimg {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(36,31,25,.12);
}
.pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wide-figure { aspect-ratio: 21 / 9; }
.wide-figure img { aspect-ratio: 21 / 9; }

.process-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5vw; align-items: center; padding: 7vh 0; }
.process-row:nth-child(even) .pimg { order: -1; }
.process-row .pimg { aspect-ratio: 4 / 3; }
.process-no { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1rem; letter-spacing: .1em; }
.process-row h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: .5rem 0 1rem; }

/* ---- mekânlar: tam ekran kare kare film şeridi (crossfade) ----
   Kareler üst üste bindirilmiş tam ekran katmanlar; scroll ilerledikçe (mekanlar.js)
   biri sönerken diğeri belirir. Aşağı-ok cue dikey akışı işaret eder. */
.hero-scroll-cue {
  display: inline-flex; flex-direction: column; align-items: center; gap: .8rem; margin-top: 3.5rem;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-dim);
}
.hero-scroll-cue svg { width: 8px; height: 40px; stroke-width: 1; opacity: .7;
  animation: cueDrop 2.4s ease-in-out infinite; }
@keyframes cueDrop { 0%,100%{ transform: translateY(0); opacity:.5 } 50%{ transform: translateY(6px); opacity:.9 } }

.reel { position: relative; height: 100vh; overflow: hidden; background: #17130f; }
.reel-stage { position: absolute; inset: 0; }

.reel-frame {
  position: absolute; inset: 0; display: block; text-decoration: none;
  opacity: 0; pointer-events: none; will-change: opacity;
}
.reel-frame:first-child { opacity: 1; } /* JS gelmeden önce ilk kare görünür */
.reel-frame.is-active { pointer-events: auto; }
.reel-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 7s ease-out;
}
.reel-frame.is-active img { transform: scale(1); } /* yavaş ken-burns */
/* okunurluk perdesi — blok/fabrika sahneleriyle aynı dil */
.reel-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(14,11,8,.74), rgba(14,11,8,.12) 42%, rgba(14,11,8,.30));
}

.reel-cap {
  position: absolute; left: 6vw; bottom: 13vh; z-index: 2;
  display: flex; flex-direction: column; gap: .55rem; max-width: 42rem;
}
.reel-cap em {
  font-style: normal; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: #dcc492;
}
.reel-cap b {
  font-family: var(--serif); font-weight: 500; line-height: 1.04;
  font-size: clamp(2.4rem, 6vw, 5rem); color: var(--on-media);
  text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 12px 50px rgba(0,0,0,.4);
}
.reel-go {
  font-style: normal; margin-top: .7rem; align-self: flex-start;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,242,234,.82);
  border-bottom: 1px solid rgba(220,196,146,.5); padding-bottom: .3rem;
  transition: color .3s ease, border-color .3s ease;
}
.reel-frame:hover .reel-go { color: #dcc492; border-color: #dcc492; }

/* sağ kenar nokta göstergesi */
.reel-dots {
  position: absolute; right: 4.5vw; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: .85rem;
}
.reel-dots button {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 1px solid rgba(246,242,234,.5); background: transparent;
  transition: background .4s ease, border-color .4s ease, transform .4s ease;
}
.reel-dots button:hover { border-color: #dcc492; }
.reel-dots button.is-active { background: #dcc492; border-color: #dcc492; transform: scale(1.3); }

/* alt ilerleme çizgisi */
.reel-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 3;
  background: rgba(220,196,146,.16);
}
.reel-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(to right, var(--accent), #dcc492);
}
.reel-cue {
  position: absolute; left: 6vw; bottom: 5vh; z-index: 3;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(246,242,234,.55);
  transition: opacity .5s ease;
}

/* kapanış bölümü */
.reel-outro { text-align: center; padding: 18vh 6vw; background: var(--bg-soft); }
.frame-kicker {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--accent);
}
.reel-outro h2 {
  font-family: var(--serif); font-weight: 500; line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 1.2rem 0 2.4rem;
}

@media (max-width: 820px) {
  .reel-cap { left: 6vw; right: 6vw; bottom: 15vh; }
  .reel-dots { right: 4vw; }
}

/* ---- taş mekân galerisi (afyon-beyaz-mekan.html) ---- */
.venue-hero { padding-bottom: 6vh; }
.venue-back {
  display: inline-block; margin-bottom: 2.4rem; text-decoration: none;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim);
  transition: color .3s ease;
}
.venue-back:hover { color: var(--accent); }
.venue-spec {
  margin-top: 2rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}

.venue-gallery { padding-top: 2vh; }
/* editöryel masonry: farklı yükseklikler doğal aksın, boşluk kalmasın */
.lightbox-grid { column-count: 3; column-gap: 1.6vw; max-width: 1400px; margin: 0 auto; }
.ve-item {
  display: block; break-inside: avoid; margin: 0 0 1.6vw;
  text-decoration: none; position: relative;
}
.ve-media {
  display: block; position: relative; overflow: hidden; border-radius: 4px;
  background: var(--stone-1); box-shadow: 0 16px 44px rgba(36,31,25,.1); cursor: zoom-in;
}
.ve-media img {
  display: block; width: 100%; height: auto;
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.ve-item:hover .ve-media img { transform: scale(1.045); }
/* altın köşe işaretleri — site geneli motif */
.ve-media::before, .ve-media::after {
  content: ""; position: absolute; z-index: 2; width: 14px; height: 14px;
  border-color: #dcc492; border-style: solid; opacity: 0;
  transition: opacity .5s ease; filter: drop-shadow(0 1px 2px rgba(20,16,12,.5));
}
.ve-media::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.ve-media::after { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.ve-item:hover .ve-media::before, .ve-item:hover .ve-media::after { opacity: .9; }
.ve-cap {
  display: block; margin-top: .8rem;
  font-family: var(--serif); font-weight: 500; font-size: 1.25rem;
  color: var(--ink); transition: color .3s ease;
}
.ve-item:hover .ve-cap { color: var(--accent); }

.venue-foot { text-align: center; margin-top: 8vh; }
.venue-foot p { color: var(--ink-dim); max-width: none; margin: 0 auto 1.4rem; }

@media (max-width: 1000px) { .lightbox-grid { column-count: 2; } }
@media (max-width: 620px) { .lightbox-grid { column-count: 1; } }

/* ---- lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(14,11,8,.94); padding: 4vh 6vw;
}
.lightbox.is-open { display: flex; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lb-stage img {
  max-width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: 3px; box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.lb-stage figcaption {
  margin-top: 1.1rem; color: var(--on-media);
  font-family: var(--serif); font-size: 1.4rem; letter-spacing: .02em;
}
.lb-close, .lb-nav {
  position: absolute; background: none; border: none; color: rgba(246,242,234,.8);
  cursor: pointer; transition: color .3s ease; line-height: 1; z-index: 2;
}
.lb-close:hover, .lb-nav:hover { color: #dcc492; }
.lb-close { top: 3vh; right: 4vw; font-size: 2.6rem; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 1rem; }
.lb-prev { left: 2vw; }
.lb-next { right: 2vw; }
.lb-count {
  position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center;
  color: rgba(246,242,234,.5); font-size: .8rem; letter-spacing: .3em;
}
@media (max-width: 620px) {
  .lb-nav { font-size: 2.4rem; padding: .4rem; }
  .lb-close { font-size: 2.2rem; }
}

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 6vh;
}
.contact-card {
  border: 1px solid var(--line); border-radius: 4px; padding: 2.6rem 2rem;
  text-align: center; background: rgba(250,248,244,.6);
  transition: border-color .5s ease, box-shadow .5s ease, transform .5s ease;
}
.contact-card:hover {
  border-color: rgba(160,124,59,.45);
  box-shadow: 0 22px 60px rgba(36,31,25,.1); transform: translateY(-3px);
}
.contact-card h3 {
  font-size: .75rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; font-weight: 500;
}
.contact-card p, .contact-card a { color: var(--ink); font-size: 1.02rem; text-decoration: none; line-height: 1.8; }
.contact-card a:hover { color: var(--accent); }
.contact-note { text-align: center; margin-top: 7vh; color: var(--ink-dim); }
.contact-note a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ---- koleksiyon ---- */
.collection-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 4vh;
}
.ccard { display: block; }
.ccard .pimg { aspect-ratio: 16 / 10; }
.ccard .pimg img { transition: transform 1.1s cubic-bezier(.22,.61,.36,1); }
.ccard:hover .pimg img { transform: scale(1.045); }
.ccard-caption { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.1rem; gap: 1.5rem; }
.ccard-caption h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; }
.ccard-finish {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.ccard-desc { color: var(--ink-dim); font-size: .93rem; margin-top: .35rem; max-width: 34em; }
@media (max-width: 820px) { .collection-grid { grid-template-columns: 1fr; } }

.fade-up { opacity: 0; }

@media (max-width: 820px) {
  .process-row { grid-template-columns: 1fr; padding: 4vh 0; }
  .process-row:nth-child(even) .pimg { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- reveal başlangıç durumları (JS ile animasyon) ---- */
.reveal, .split-text, .chapter-head, .hcard, .place, .fullbleed-caption { opacity: 0; }

/* ---- mobil gezinme (hamburger) ---- */
@media (max-width: 820px) {
  .nav {
    flex-direction: row; justify-content: space-between; align-items: center;
    padding: 1rem 6vw;
    /* backdrop-filter, position:fixed alt menü için kapsayan blok oluşturur;
       overlay'in viewport'a göre tam ekran açılması için mobilde kaldırılır */
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: rgba(250,248,244,.94);
  }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 30px; height: 30px; padding: 0; border: none; background: none;
    cursor: pointer; z-index: 95;
  }
  .nav-toggle span {
    display: block; height: 1.5px; width: 22px; background: var(--ink);
    transition: transform .4s ease, opacity .3s ease;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-links {
    position: fixed; inset: 0; z-index: 90;
    flex-direction: column; justify-content: center; gap: 2.6rem;
    background: rgba(250,248,244,.98);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity .45s ease, transform .45s ease;
  }
  body.nav-open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { font-size: 1rem; letter-spacing: .32em; opacity: .8; }
  body.nav-open { overflow: hidden; }
}

/* ---- responsive ---- */
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .places-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2.5vw;
    padding-bottom: 40px;
  }
  .place:nth-child(even) {
    margin-top: 40px;
  }
  .nav-links a { margin-left: 1rem; }
  .stats { gap: 3rem; }
}
@media (max-width: 520px) {
  .places-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 0;
  }
  .place:nth-child(even) {
    margin-top: 0;
  }
}
