/* ============================================================
   BEMARC — Mimarlık & İnşaat
   Koyu antrasit + kemik beyazı + bronz. Framework yok.
   ============================================================ */

:root {
  --ink: #141210;
  --ink-2: #1c1916;
  --ink-3: #262220;
  --bone: #ede7dc;
  --bone-2: #e3dccd;
  --bronze: #c08a4e;
  --bronze-soft: #d9a86c;
  --muted-dark: rgba(237, 231, 220, 0.55);
  --muted-light: rgba(20, 18, 16, 0.6);
  --line-dark: rgba(237, 231, 220, 0.14);
  --line-light: rgba(20, 18, 16, 0.14);

  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 9rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.9s;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 300;
  background: var(--bronze); color: var(--ink);
  padding: 10px 18px; border-radius: 4px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* ---------- Yardımcılar ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 900px; }

.section-light { background: var(--bone); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--bone); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bronze);
  margin-bottom: 1.4rem;
}
.section-label::before { content: ""; width: 34px; height: 1.5px; background: var(--bronze); }

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-title em, .manifesto-title em, .contact-title em, .hero-title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 350;
  letter-spacing: 0; color: var(--bronze);
}

.section-head { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.section-note { max-width: 320px; font-size: 0.95rem; color: var(--muted-light); padding-bottom: 0.5rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0.9em 1.9em;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-bronze { background: var(--bronze); color: var(--ink); }
.btn-bronze:hover { background: var(--bronze-soft); transform: translateY(-2px); }

.btn-ghost { border-color: var(--line-dark); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-soft); transform: translateY(-2px); }

.btn-small { min-height: 42px; padding: 0.55em 1.4em; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s var(--ease-out);
}
.preloader.done { transform: translateY(-100%); pointer-events: none; }
.skip-preload .preloader { display: none; }

.preloader-inner { text-align: center; }
.preloader-word {
  font-size: clamp(2rem, 8vw, 4rem); font-weight: 900; letter-spacing: 0.32em;
  margin-bottom: 1.6rem; padding-left: 0.32em;
}
.preloader-word span {
  display: inline-block; opacity: 0; transform: translateY(0.5em);
  animation: pre-letter 0.6s var(--ease-out) forwards;
}
.preloader-word span:nth-child(1) { animation-delay: 0.05s; }
.preloader-word span:nth-child(2) { animation-delay: 0.12s; }
.preloader-word span:nth-child(3) { animation-delay: 0.19s; }
.preloader-word span:nth-child(4) { animation-delay: 0.26s; }
.preloader-word span:nth-child(5) { animation-delay: 0.33s; }
.preloader-word span:nth-child(6) { animation-delay: 0.40s; }
@keyframes pre-letter { to { opacity: 1; transform: none; } }

.preloader-bar {
  width: min(260px, 60vw); height: 2px; margin: 0 auto 0.9rem;
  background: var(--line-dark); overflow: hidden;
}
.preloader-bar i { display: block; height: 100%; width: 0; background: var(--bronze); transition: width 0.2s linear; }
.preloader-count { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--muted-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 220;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
/* Menü açıkken header zemini şeffaflaşır, logo + kapat butonu görünür kalır */
body.menu-open .header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.menu-open .nav, body.menu-open .header-cta { visibility: hidden; }
.header.scrolled {
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.header-inner {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 11px; z-index: 220; position: relative; }
.brand-mark { width: 30px; height: 30px; color: var(--bronze); flex: none; }
.brand-word { font-weight: 900; letter-spacing: 0.26em; font-size: 1.02rem; padding-top: 2px; }

.nav { display: flex; gap: clamp(1.2rem, 2.5vw, 2.2rem); }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted-dark);
  position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--bronze);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  width: 48px; height: 48px; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 220; position: relative;
}
.menu-toggle-line {
  width: 26px; height: 2px; background: var(--bone);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ============================================================
   TAM EKRAN MENÜ
   ============================================================ */
.fullmenu {
  position: fixed; inset: 0; z-index: 210;
  visibility: hidden; pointer-events: none;
}
.fullmenu.open { visibility: visible; pointer-events: auto; }

.fullmenu-bg {
  position: absolute; inset: 0; background: var(--ink-2);
  transform: translateY(-100%);
  transition: transform 0.65s var(--ease-out);
}
.fullmenu.open .fullmenu-bg { transform: none; }

.fullmenu-inner {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 2vh) var(--gutter) 4vh;
  max-width: var(--container); margin-inline: auto;
}

.fullmenu-nav { display: flex; flex-direction: column; }
.fullmenu-nav a {
  display: flex; align-items: baseline; gap: 1rem;
  font-size: clamp(1.8rem, 5.5vh, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.28;
  padding: 0.35rem 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
  transition-delay: 0s;
}
.fullmenu.open .fullmenu-nav a {
  opacity: 1; transform: none;
  transition-delay: calc(0.18s + var(--i) * 0.06s);
}
.fullmenu-nav a small {
  font-size: 0.85rem; font-weight: 600; color: var(--bronze); letter-spacing: 0.15em;
}
.fullmenu-nav a:hover { color: var(--bronze-soft); }

.fullmenu-foot {
  display: flex; flex-wrap: wrap; gap: 0.4rem 2rem;
  margin-top: 5vh; padding-top: 3vh;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark); font-size: 0.95rem;
  opacity: 0; transition: opacity 0.5s 0.5s;
}
.fullmenu.open .fullmenu-foot { opacity: 1; }
.fullmenu-foot a:hover { color: var(--bronze-soft); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: clip;
}
.hero-bg, .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-bg img { animation: hero-zoom 2.4s var(--ease-out) both; }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.25) 40%, rgba(20,18,16,0.82) 88%),
    radial-gradient(120% 70% at 20% 90%, rgba(20,18,16,0.6), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: var(--container); width: 100%;
  margin-inline: auto; padding: 0 var(--gutter);
}

.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bronze-soft); margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-eyebrow span {
  display: inline-block;
  animation: line-up 0.9s var(--ease-out) 0.15s both;
}

.hero-title { margin-bottom: 1.5rem; animation: fade-up 1s var(--ease-out) 0.25s both; }

/* Dönen dev kelimeler: YIKIYORUZ → YAPIYORUZ → YENİLİYORUZ → YAŞATIYORUZ */
.rotator {
  display: block; position: relative; overflow: hidden;
  height: 1.12em;
  font-size: clamp(2.5rem, 9.4vw, 8.4rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.rotator-word {
  position: absolute; left: 0; top: 0; white-space: nowrap;
  transform: translateY(115%);
  transition: transform 0.75s var(--ease-out);
  will-change: transform;
}
.rotator-word.is-active { transform: none; }
.rotator-word.is-leaving { transform: translateY(-115%); }
.rotator-word i { font-style: normal; color: var(--bronze); }

.hero-tagline {
  display: block;
  font-size: clamp(1.5rem, 4.4vw, 3.1rem);
  font-weight: 400; line-height: 1.1;
  margin-top: 0.35em;
}

@keyframes line-up { from { transform: translateY(110%); } to { transform: none; } }

.hero-sub {
  max-width: 560px; font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(237, 231, 220, 0.82);
  margin-bottom: 2.2rem;
  animation: fade-up 1s var(--ease-out) 0.6s both;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fade-up 1s var(--ease-out) 0.75s both; }

@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-foot {
  position: relative;
  max-width: var(--container); width: 100%; margin-inline: auto;
  padding: 2.4rem var(--gutter) 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  animation: fade-up 1s var(--ease-out) 0.9s both;
}
.hero-scroll { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }
.hero-scroll i { display: block; width: 1.5px; height: 44px; background: var(--line-dark); position: relative; overflow: hidden; }
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--bronze);
  animation: scroll-drip 1.8s ease-in-out infinite;
}
@keyframes scroll-drip { 0% { transform: translateY(-100%); } 100% { transform: translateY(300%); } }

.hero-index { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); flex-wrap: wrap; }
.hero-index li {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(237, 231, 220, 0.65);
  display: flex; align-items: baseline; gap: 7px;
}
.hero-index li span { color: var(--bronze); font-size: 0.68rem; }

.hero-annot {
  position: absolute; z-index: 2;
  top: calc(var(--header-h) + 1.2rem); right: var(--gutter);
  text-align: right;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1.7; color: rgba(237, 231, 220, 0.5);
  animation: fade-up 1s var(--ease-out) 1s both;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--bronze); color: var(--ink);
  overflow: clip; padding: 16px 0;
  border-block: 1px solid rgba(20,18,16,0.2);
  rotate: -2deg;
  width: 106vw; margin-left: -3vw;
  margin-block: clamp(-1.5rem, -1vw, -0.5rem);
  position: relative; z-index: 5;
  box-shadow: 0 14px 44px rgba(20, 18, 16, 0.35);
}
.marquee-group .o {
  color: transparent;
  -webkit-text-stroke: 1.3px var(--ink);
}
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee-group span {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 1.6rem; white-space: nowrap;
}
.marquee-group i { font-style: normal; font-size: 0.8rem; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   MANİFESTO
   ============================================================ */
.manifesto { padding-block: var(--section-pad); }
.manifesto-title {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 1.8rem;
}
.manifesto-text {
  max-width: 720px;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.55; color: rgba(20, 18, 16, 0.78);
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-light);
  border-block: 1px solid var(--line-light);
  margin-top: clamp(3rem, 7vw, 5.5rem);
}
.stat { background: var(--bone); padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem); }
.stat-num {
  display: block; font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  color: var(--ink); margin-bottom: 0.5rem;
}
.stat-num .count { font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.9rem; color: var(--muted-light); line-height: 1.4; display: block; max-width: 200px; }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services { padding-top: var(--section-pad); padding-bottom: 0; }

/* Üst üste kayan tam ekran paneller */
.panels { display: flex; flex-direction: column; }

.panel {
  position: sticky; top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.45);
  overflow: clip;
}
.panel:nth-child(even) { background: #1a1712; }

.panel-ghost {
  position: absolute; right: -0.03em; top: -0.08em;
  font-size: clamp(9rem, 26vw, 24rem);
  font-weight: 900; line-height: 1; letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237, 231, 220, 0.09);
  pointer-events: none; user-select: none;
}

.panel-inner {
  position: relative; width: 100%;
  max-width: var(--container); margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.panel-no {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 1.4rem;
}
.panel-no::before { content: ""; width: 30px; height: 1.5px; background: var(--bronze); }

.panel h3 {
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}
.panel h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 350; color: var(--bronze); }
.panel p { color: var(--muted-dark); max-width: 48ch; margin-bottom: 1.3rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 6px 14px; border: 1px solid var(--line-dark); border-radius: 999px;
  color: rgba(237, 231, 220, 0.7);
}

.panel-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 1.8rem; padding-bottom: 6px;
  font-weight: 600; font-size: 0.95rem;
  border-bottom: 1.5px solid var(--bronze);
  transition: gap 0.35s var(--ease-out), color 0.3s;
}
.panel-link:hover { gap: 18px; color: var(--bronze-soft); }

.panel-media {
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 66vh;
  justify-self: end; width: 100%;
}
.panel-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.panel:hover .panel-media img { transform: scale(1.045); }

/* ============================================================
   SÜREÇ
   ============================================================ */
.process { padding-block: var(--section-pad); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-light);
  border: 1px solid var(--line-light);
  counter-reset: step;
}
.process-step {
  background: var(--bone);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  transition: background 0.4s;
}
.process-step:hover { background: var(--bone-2); }
.process-no {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--bronze); letter-spacing: 0.12em;
  margin-bottom: 3.5rem;
}
.process-step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.process-step p { font-size: 0.95rem; color: var(--muted-light); }

/* ============================================================
   NEDEN BEMARC — BENTO
   ============================================================ */
.why { padding-block: var(--section-pad); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
.bento-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}
.bento-card:hover { border-color: rgba(192, 138, 78, 0.5); transform: translateY(-4px); }
.bento-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.bento-card h3::before {
  content: ""; display: block; width: 30px; height: 2px;
  background: var(--bronze); margin-bottom: 1rem;
}
.bento-card p { font-size: 0.95rem; color: var(--muted-dark); }

.bento-media { position: relative; overflow: hidden; padding: 0; }
.bento-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.bento-media:hover img { transform: scale(1.05); }
.bento-media figcaption {
  position: relative; z-index: 1;
  margin-top: auto;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 350;
  background: linear-gradient(to top, rgba(20,18,16,0.85), transparent);
  width: 100%;
}
.bento-tall { grid-row: span 2; }

/* ============================================================
   UZMANLIK ALANLARI — YATAY GALERİ
   ============================================================ */
.areas { padding-block: var(--section-pad); }

.areas-scroller {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(var(--gutter), (100vw - var(--container)) / 2 + var(--gutter)) 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bronze) transparent;
  cursor: grab;
}
.areas-scroller.dragging { cursor: grabbing; scroll-snap-type: none; }
.areas-scroller::-webkit-scrollbar { height: 4px; }
.areas-scroller::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 2px; }
.areas-scroller::-webkit-scrollbar-track { background: var(--line-light); }

.area-card {
  position: relative; flex: none;
  width: min(74vw, 420px);
  aspect-ratio: 4 / 5;
  border-radius: 6px; overflow: hidden;
  scroll-snap-align: center;
  background: var(--ink-2);
}
.area-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.area-card:hover img { transform: scale(1.05); }
.area-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.78) 0%, transparent 45%);
}
.area-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.5rem; color: var(--bone);
  display: flex; align-items: baseline; gap: 0.8rem;
}
.area-meta span { font-size: 0.8rem; font-weight: 600; color: var(--bronze-soft); letter-spacing: 0.1em; }
.area-meta h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; letter-spacing: -0.01em; }

/* ============================================================
   SSS
   ============================================================ */
.faq { padding-block: 0 var(--section-pad); }

.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item:first-child { border-top: 1px solid var(--line-light); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze); }

.faq-item summary i {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-light);
  position: relative;
  transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.3s; }
.faq-item[open] summary i { transform: rotate(45deg); background: var(--bronze); border-color: var(--bronze); color: var(--ink); }

.faq-body { padding: 0 0 1.5rem; max-width: 720px; }
.faq-body p { color: var(--muted-light); }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact { padding-block: var(--section-pad); }

.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.contact-text { color: var(--muted-dark); max-width: 420px; margin-bottom: 2.5rem; font-size: 1.05rem; }

.contact-links { display: flex; flex-direction: column; }
.contact-links li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; border-top: 1px solid var(--line-dark);
}
.contact-links li:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-links li span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-dark);
}
.contact-links li a { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 600; transition: color 0.3s; }
.contact-links li a:hover { color: var(--bronze-soft); }

.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-dark);
}
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 1rem; color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line-dark); border-radius: 5px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(237, 231, 220, 0.35); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--bronze);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c08a4e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted-dark); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--bone);
  border-top: 1px solid var(--line-dark);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}
.footer-word {
  font-size: clamp(4rem, 17vw, 15rem);
  font-weight: 900; line-height: 0.85; letter-spacing: 0.02em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237, 231, 220, 0.22);
  user-select: none;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; color: var(--muted-dark); }
.footer-col a { transition: color 0.3s; width: fit-content; }
.footer-col a:hover { color: var(--bronze-soft); }
.footer-tag { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--bone); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem; color: var(--muted-dark);
}

/* ============================================================
   MOBİL SABİT ALT BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 190;
  display: none;
  background: rgba(28, 25, 22, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px;
  transform: translateY(calc(100% + 24px + env(safe-area-inset-bottom, 0px)));
  transition: transform 0.5s var(--ease-out);
}
.mobile-bar.visible { transform: none; }

.mobile-bar-item {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 48px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--bone);
}
.mobile-bar-item svg { width: 17px; height: 17px; flex: none; }
.mobile-bar-cta { background: var(--bronze); color: var(--ink); }

/* ============================================================
   REVEAL (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* JS yoksa içerik görünür kalsın */
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .panel { min-height: calc(100svh - var(--header-h)); align-items: flex-start; }
  .panel-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: 2.5rem;
    align-content: start;
  }
  .panel-media { order: -1; aspect-ratio: 16 / 10; max-height: 34vh; justify-self: stretch; }
  .panel-ghost { font-size: clamp(7rem, 30vw, 12rem); top: auto; bottom: -0.06em; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .mobile-bar { display: flex; }

  .hero-foot { flex-direction: column; align-items: flex-start; gap: 1.6rem; padding-bottom: 2.4rem; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-title { font-size: clamp(2.7rem, 14vw, 5rem); }

  .footer { padding-bottom: 84px; }
  .contact { padding-bottom: calc(var(--section-pad) + 20px); }

  .process-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 200px; }
  .bento-tall { grid-row: auto; aspect-ratio: 4 / 5; }
  .bento-media:not(.bento-tall) { aspect-ratio: 16 / 10; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   V2 — SANAT YÖNETİMİ KATMANI
   Film greni, mimari ızgara, hayalet kelimeler, özel imleç
   ============================================================ */

/* Film greni — tüm sayfanın üzerinde çok hafif doku */
body::after {
  content: "";
  position: fixed; inset: -60%;
  z-index: 350; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  12.5% { transform: translate(-3%, 2%); }
  25%   { transform: translate(2%, -4%); }
  37.5% { transform: translate(-4%, -2%); }
  50%   { transform: translate(3%, 4%); }
  62.5% { transform: translate(-2%, 3%); }
  75%   { transform: translate(4%, -3%); }
  87.5% { transform: translate(2%, 2%); }
}

/* Mimari ızgara çizgileri — bölüm zeminlerinde dikey hatlar */
.section-dark, .hero {
  background-image: linear-gradient(90deg, rgba(237, 231, 220, 0.04) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.panel:nth-child(even) {
  background-image: linear-gradient(90deg, rgba(237, 231, 220, 0.035) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.section-light {
  background-image: linear-gradient(90deg, rgba(20, 18, 16, 0.045) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}

/* Bölüm indeks etiketi: BM.01, BM.02… */
.section-label i {
  font-style: normal; font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.55; margin-right: 12px;
}

/* Manifesto arkasındaki hayalet kelime */
.manifesto { position: relative; overflow: clip; }
.ghost-word {
  position: absolute; top: clamp(0.5rem, 3vw, 2.5rem); right: -1%;
  font-size: clamp(5.5rem, 19vw, 17rem);
  font-weight: 900; line-height: 1; letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 18, 16, 0.08);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
@supports (animation-timeline: view()) {
  .ghost-word {
    animation: ghost-slide linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes ghost-slide {
    from { transform: translateX(5%); }
    to { transform: translateX(-12%); }
  }
}

/* Süreç kartlarında hayalet rakamlar */
.process-step { overflow: clip; }
.process-step::after {
  content: attr(data-n);
  position: absolute; right: -8px; top: -18px;
  font-size: 6.5rem; font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 18, 16, 0.1);
  pointer-events: none; user-select: none;
}

/* Özel imleç — yalnızca masaüstü, JS ile etkinleşir */
html.has-cursor, html.has-cursor a, html.has-cursor button,
html.has-cursor summary, html.has-cursor label { cursor: none; }
html.has-cursor input, html.has-cursor textarea, html.has-cursor select { cursor: auto; }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 600;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--bronze-soft); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(192, 138, 78, 0.6);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s, border-color 0.3s;
}
.cursor-ring .cursor-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity 0.2s;
  white-space: nowrap;
}
.cursor-ring.is-link { width: 56px; height: 56px; background: rgba(192, 138, 78, 0.18); }
.cursor-ring.is-label {
  width: 84px; height: 84px;
  background: rgba(217, 168, 108, 0.95); border-color: transparent;
}
.cursor-ring.is-label .cursor-label { opacity: 1; }

/* Hero alt bilgi hizası */
.hero-foot { border-top: 1px solid rgba(237, 231, 220, 0.12); }

@media (max-width: 760px) {
  .hero-annot { display: none; }
  .ghost-word { top: auto; bottom: 34%; }
  .marquee { rotate: -2.5deg; }
}

/* Kısa ekranlarda sticky panel içeriği taşabilir — normal akışa dön */
@media (max-width: 900px) and (max-height: 700px) {
  .panel { position: static; min-height: auto; box-shadow: none; }
}

/* ============================================================
   HAREKET AZALTMA
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .preloader { display: none; }
}
