/* ============================================================
   Tolga PhotoArt — style.css
   Kaynak: docs/08_design_system.md (token'lar AYNEN),
   docs/09_component_library.md, docs/10_animation_guide.md,
   docs/11_erisilebilirlik_plani.md, docs/12_performans_butcesi.md
   Dark-first sinematik · magazin-stili asimetrik grid · mobile-first
   ============================================================ */

/* ---------- Fontlar (self-host; woff2 dosyaları fonts/ klasörüne
   indirilecek — bkz. README.md. Dosya yoksa fallback stack devrede,
   site yine premium görünür.) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens — docs/08 §2 AYNEN ---------- */
:root {
  /* Renk — dark mode varsayılan */
  --color-bg: #0b0b0b;
  --color-surface: #1a1a1a;
  --color-surface-2: #242424;
  --color-primary: #111111;        /* yapısal nötr — BUTON RENGİ DEĞİL (08 §7) */
  --color-text: #f5f5f5;
  --color-text-muted: #a8a8a8;
  --color-accent: #c9a962;
  --color-accent-ink: #c9a962;     /* dark modda accent metin-güvenli (≈8.75:1) */
  --color-accent-flash: #e5b94e;   /* yalnız dekoratif mikro-an */

  --font-family-heading: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --font-size-xs: 12px;   --font-size-sm: 14px;  --font-size-base: 16px;
  --font-size-lg: 20px;   --font-size-xl: 25px;  --font-size-2xl: 31px;
  --font-size-3xl: 39px;  --font-size-4xl: 49px;

  --space-1: 4px;  --space-2: 8px;  --space-3: 16px; --space-4: 24px;
  --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px;

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px; --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.6);
  --shadow-accent-glow: 0 0 24px rgba(201,169,98,0.25);

  --z-base: 0; --z-dropdown: 10; --z-sticky-nav: 100;
  --z-overlay: 500; --z-lightbox: 900; --z-cursor: 950;
  --z-modal: 1000; --z-toast: 1100;

  --duration-instant: 100ms; --duration-fast: 200ms; --duration-base: 400ms;
  --duration-slow: 700ms; --duration-cinematic: 1200ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-soft: cubic-bezier(0.45, 0, 0.55, 1);
}

/* Light mode override — docs/08 §2 / docs/04 §4 */
[data-theme="light"] {
  --color-bg: #f5f5f5;
  --color-surface: #ffffff;
  --color-surface-2: #ececec;
  --color-primary: #111111;
  --color-text: #111111;
  --color-text-muted: #5c5c5c;
  --color-accent: #c9a962;         /* YALNIZ dekoratif — metin DEĞİL (kontrast ≈2.06:1) */
  --color-accent-ink: #6b5220;     /* metin/ikon güvenli varyant (≈6.76:1) */
  --color-accent-flash: #e5b94e;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.14);
  --shadow-accent-glow: 0 0 24px rgba(107,82,32,0.25);
}

/* ---------- Reset / Taban ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  transition: background-color var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard);
}
h1, h2, h3, h4 {
  font-family: var(--font-family-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
h1 { font-size: clamp(var(--font-size-2xl), 5.5vw, var(--font-size-4xl)); }
h2 { font-size: clamp(var(--font-size-xl), 3.8vw, var(--font-size-3xl)); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
p { margin: 0 0 var(--space-3); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-ink); }
a:hover { color: var(--color-text); }
ul { padding-left: 1.2em; }
blockquote {
  font-family: var(--font-family-heading);
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  border-left: 2px solid var(--color-accent);
  margin: var(--space-5) 0;
  padding-left: var(--space-4);
}
::selection { background: var(--color-accent); color: #0b0b0b; }

/* Erişilebilirlik: odak görünürlüğü her yerde */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--color-accent-ink);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--color-accent);
  color: #0b0b0b;
  padding: var(--space-2) var(--space-3);
  z-index: var(--z-toast);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------- Grid — 12 kolon + magazin asimetrisi (08 §4) ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-3);
}
.grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.grid--12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-3); }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
/* Asimetrik editorial bölünme: metin 4-5 kolon, görsel 7-8 kolon */
.split { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 768px) {
  .split { grid-template-columns: repeat(12, 1fr); }
  .split__text { grid-column: 1 / 6; }
  .split__media { grid-column: 7 / 13; }
  .split--flip .split__text { grid-column: 8 / 13; grid-row: 1; }
  .split--flip .split__media { grid-column: 1 / 7; grid-row: 1; }
}
.full-bleed { width: 100%; max-width: none; }
.pull-quote { max-width: 60ch; }
@media (min-width: 1024px) {
  .pull-quote { margin-left: calc(-1 * var(--space-6)); }
}

section { padding-block: var(--space-7); }
@media (min-width: 1024px) { section { padding-block: var(--space-8); } }
.section-lead { color: var(--color-text-muted); max-width: 55ch; }
.eyebrow {
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-ink);
  margin-bottom: var(--space-3);
}

/* ---------- Butonlar (08 §7: primary = accent zemin) ---------- */
.btn {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard),
              filter var(--duration-fast) var(--ease-standard);
  will-change: auto;
}
.btn--primary { background: var(--color-accent); color: #0b0b0b; }
.btn--primary:hover, .btn--primary:focus-visible {
  filter: brightness(1.08);
  transform: scale(1.02);
  box-shadow: var(--shadow-accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--color-accent);
  transform: scale(1.02);
}
.btn--lg { padding: var(--space-3) var(--space-5); font-size: var(--font-size-lg); }
/* Hero her temada koyu görsel üstünde — ghost buton ışık renge sabitlenir */
.hero .btn--ghost { color: #f5f5f5; border-color: rgba(245, 245, 245, 0.55); }
.btn--whatsapp { background: var(--color-surface-2); color: var(--color-text); }
.btn--whatsapp:hover { box-shadow: var(--shadow-accent-glow); transform: scale(1.02); }

/* ---------- Navbar (09 §1: şeffaf → katı) ---------- */
.site-header {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: var(--z-sticky-nav);
  transition: background-color var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
  background: transparent;
}
.site-header.is-scrolled {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--space-3);
}
.navbar__brand {
  display: flex; align-items: center; gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
[data-theme="light"] .site-header.is-scrolled .navbar__brand { text-shadow: none; }
/* Şeffaf header koyu hero üzerindeyken (yalnız hero'lu sayfalar) metin ışık renge sabitlenir */
body:has(main .hero) .site-header:not(.is-scrolled) .navbar__brand,
body:has(main .hero) .site-header:not(.is-scrolled) .navbar__menu a {
  color: #f5f5f5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.navbar__brand strong { color: var(--color-accent); font-weight: 500; }
.navbar__menu {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  gap: var(--space-4);
  align-items: center;
}
.navbar__menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  letter-spacing: 0.04em;
  padding: var(--space-2) var(--space-1);
  min-height: 44px;
  display: inline-flex; align-items: center;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
[data-theme="light"] .navbar__menu a { text-shadow: none; }
.navbar__menu a:hover, .navbar__menu a[aria-current="page"] { color: var(--color-accent-ink); }
.navbar__tools { display: flex; align-items: center; gap: var(--space-2); }
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--color-text-muted);
  border-radius: var(--radius-full);
  overflow: hidden;
  font-size: var(--font-size-xs);
}
.lang-switch a {
  padding: 6px 10px;
  text-decoration: none;
  color: var(--color-text);
  min-width: 34px; min-height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lang-switch a[aria-current="true"] { background: var(--color-accent); color: #0b0b0b; font-weight: 700; }
.theme-toggle {
  background: transparent;
  border: 1px solid var(--color-text-muted);
  border-radius: var(--radius-full);
  color: var(--color-text);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.theme-toggle:hover { border-color: var(--color-accent); }
.navbar__cta { display: none; }
.navbar__toggle {
  background: transparent;
  border: 1px solid var(--color-text-muted);
  border-radius: var(--radius-md);
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  color: var(--color-text);
}
.navbar__toggle-icon,
.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: currentColor;
  transition: transform var(--duration-fast) var(--ease-standard), opacity var(--duration-fast);
}
.navbar__toggle-icon { top: 21px; }
.navbar__toggle-icon::before { top: -7px; }
.navbar__toggle-icon::after { top: 7px; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon { transform: rotate(45deg); }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::before { transform: rotate(-90deg) translateX(-7px); }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::after { opacity: 0; }

@media (max-width: 1023px) {
  .navbar__menu.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-surface);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    gap: var(--space-2);
  }
  .navbar__menu.is-open a { text-shadow: none; min-height: 44px; }
}
@media (min-width: 1024px) {
  .navbar__menu { display: flex; }
  .navbar__toggle { display: none; }
  .navbar__cta { display: inline-block; }
}

/* ---------- Hero (09 §2 — Ken Burns + parallax + custom cursor) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  /* görsel yüklenemezse sinematik gradient fallback */
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(201,169,98,0.16), transparent 55%),
    linear-gradient(180deg, #14120c 0%, #0b0b0b 70%);
  perspective: 1200px;
}
.hero__layers { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity var(--duration-cinematic) var(--ease-in-out-soft);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__slide.is-active img { animation: kenburns 14s var(--ease-in-out-soft) forwards; }
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.15) 40%, rgba(11,11,11,0.88) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-3) var(--space-7);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  color: #f5f5f5;
}
.hero__content h1 { max-width: 18ch; color: #f5f5f5; }
.hero__sub {
  color: #d9d9d9;
  font-size: var(--font-size-lg);
  max-width: 44ch;
  white-space: pre-line;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero__hint {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: rgba(245,245,245,0.55);
  letter-spacing: 0.08em;
}

/* Custom cursor (yalnız JS başarıyla monte edince .has-cursor gelir — 11 §2.1) */
.hero.has-cursor { cursor: none; }
.hero.has-cursor a, .hero.has-cursor button { cursor: none; }
.viewfinder {
  position: fixed;
  z-index: var(--z-cursor);
  width: 56px; height: 56px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.viewfinder.is-on { opacity: 1; }
.viewfinder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(#e5b94e,#e5b94e) top left/14px 2px,
    linear-gradient(#e5b94e,#e5b94e) top left/2px 14px,
    linear-gradient(#e5b94e,#e5b94e) top right/14px 2px,
    linear-gradient(#e5b94e,#e5b94e) top right/2px 14px,
    linear-gradient(#e5b94e,#e5b94e) bottom left/14px 2px,
    linear-gradient(#e5b94e,#e5b94e) bottom left/2px 14px,
    linear-gradient(#e5b94e,#e5b94e) bottom right/14px 2px,
    linear-gradient(#e5b94e,#e5b94e) bottom right/2px 14px;
  background-repeat: no-repeat;
}
.viewfinder::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #e5b94e;
  transform: translate(-50%, -50%);
}
.shutter-flash {
  position: fixed; inset: 0;
  z-index: var(--z-toast);
  background: var(--color-accent-flash);
  opacity: 0;
  pointer-events: none;
}
.shutter-flash.is-firing { animation: shutter 120ms var(--ease-standard); }
@keyframes shutter { 0% { opacity: 0; } 30% { opacity: 0.85; } 100% { opacity: 0; } }

/* ---------- Section reveal (10 §1.1) ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}
/* Metin reveal (10 §3.1) — JS satırları sarmalar */
.tr-line { display: block; overflow: hidden; }
.tr-line > span {
  display: block;
  clip-path: inset(0 0 100% 0);
  transform: translateY(0.4em);
}
.is-visible .tr-line > span {
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
  transition: clip-path var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
  transition-delay: var(--tr-delay, 0ms);
}

/* 3D derinlik sahnesi (10 §1.2) */
.depth-scene { perspective: 1200px; }
.depth-layer { transition: none; }

/* ---------- Kart / Kategori grid (magazin asimetrik) ---------- */
.cat-grid { gap: var(--space-4); }
.cat-card {
  position: relative;
  display: block;
  grid-column: span 12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #f5f5f5;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: #fff; }
.cat-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1d1a12, #242424 60%, #171614);
}
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out-expo); }
.cat-card:hover .cat-card__media img { transform: scale(1.04); }
.cat-card__body {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--space-4);
  background: linear-gradient(180deg, transparent, rgba(11,11,11,0.85));
}
.cat-card__body h3 { margin-bottom: var(--space-1); color: #f5f5f5; }
.cat-card__body p { margin: 0; font-size: var(--font-size-sm); color: #d3d3d3; }
@media (min-width: 768px) {
  .cat-card { grid-column: span 4; }
  .cat-card--wide { grid-column: span 8; }
}

/* Diferansiyatör kartlar */
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.feature-card .btn { align-self: flex-start; margin-top: var(--space-3); }
.feature-card__price {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  color: var(--color-accent-ink);
}

/* ---------- Portfolyo filtre + grid (09 §3) ---------- */
.portfolio-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.filter-tab {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-surface-2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  min-height: 44px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-standard);
}
.filter-tab:hover { transform: scale(1.03); }
.filter-tab.is-active { background: var(--color-accent); color: #0b0b0b; border-color: var(--color-accent); }
.portfolio-grid { gap: var(--space-4); align-items: start; }
.portfolio-card {
  margin: 0;
  grid-column: span 12;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  position: relative;
}
.portfolio-card.is-hidden { display: none; }
.portfolio-card > button {
  display: block; width: 100%;
  padding: 0; border: 0; background: none; cursor: pointer;
}
.portfolio-card .ph {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(201,169,98,0.10), transparent 60%),
    linear-gradient(160deg, var(--color-surface-2), var(--color-surface));
}
.portfolio-card figcaption {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .portfolio-card { grid-column: span 4; }
  .portfolio-card--wide { grid-column: span 8; }
}

/* Kategori intro blokları */
.cat-intro { white-space: pre-line; color: var(--color-text-muted); max-width: 52ch; }

/* ---------- Lightbox (09 §4) ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(5,5,5,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox__content { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox__content img, .lightbox__content .ph {
  max-height: 78vh;
  margin-inline: auto;
  border-radius: var(--radius-md);
}
.lightbox__content .ph {
  width: min(900px, 88vw);
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  color: #a8a8a8;
  background: linear-gradient(160deg, #242424, #171717);
}
.lightbox__content figcaption { color: #d3d3d3; padding-top: var(--space-3); }
.lightbox button {
  position: absolute;
  background: rgba(26,26,26,0.8);
  color: #f5f5f5;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius-full);
  width: 48px; height: 48px;
  font-size: 20px;
  cursor: pointer;
}
.lightbox__close { top: var(--space-4); right: var(--space-4); }
.lightbox__prev { left: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-3); top: 50%; transform: translateY(-50%); }

/* ---------- Foto Oyunları ---------- */
.game-note { font-size: var(--font-size-sm); color: var(--color-text-muted); }

/* 2.1 Portrete — fokus/blur */
.game-focus { position: relative; border-radius: var(--radius-lg); overflow: hidden; touch-action: manipulation; }
.game-focus img, .game-focus .ph {
  filter: blur(6px);
  transition: filter 120ms linear;
  aspect-ratio: 16 / 9;
  width: 100%; object-fit: cover;
}
.game-focus.is-sharp img, .game-focus.is-sharp .ph { filter: blur(0); outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* 2.2 Dronă — katmanlı parallax */
.game-drone {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #10130f, #0b0b0b);
}
.game-drone__layer { position: absolute; inset: -6%; will-change: auto; }
.game-drone__layer img { width: 100%; height: 100%; object-fit: cover; }
.game-drone__cta {
  position: absolute; bottom: var(--space-3); left: var(--space-3); z-index: 2;
}

/* 2.3 Mărturii Instant — polaroid sürükle-bırak */
.game-polaroid {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-surface-2);
  padding: var(--space-4);
  min-height: 420px;
  overflow: hidden;
}
.game-polaroid__printer {
  width: 180px; height: 56px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #2c2c2c, #191919);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.game-polaroid__printer::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; bottom: 10px;
  height: 4px;
  border-radius: 2px;
  background: #0b0b0b;
  box-shadow: 0 0 6px rgba(229,185,78,0.5);
}
.polaroid {
  position: absolute;
  left: 50%; top: 64px;
  width: 150px;
  padding: 8px 8px 30px;
  background: #fdfdf8;
  color: #222;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -70%);
  cursor: grab;
  user-select: none;
  touch-action: none;
  border-radius: 2px;
}
.polaroid:active { cursor: grabbing; }
.polaroid.is-printed { transition: transform 800ms var(--ease-out-expo); transform: translate(-50%, 10%); }
.polaroid.is-selected { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.polaroid.is-snapping { transition: transform var(--duration-base) var(--ease-out-expo); }
.polaroid .ph { aspect-ratio: 1; background: linear-gradient(140deg, #d8c489, #8a7440); }
.polaroid figcaption { font-size: 11px; text-align: center; padding-top: 6px; font-family: var(--font-family-heading); font-style: italic; }
.game-polaroid__board {
  position: absolute; inset: var(--space-3);
  top: 140px;
  border: 1px dashed rgba(201,169,98,0.35);
  border-radius: var(--radius-md);
}
.snap-dot {
  position: absolute;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  border: 0; background: transparent; cursor: pointer;
  border-radius: 50%;
}
.snap-dot::after {
  content: "";
  position: absolute; inset: 17px;
  border-radius: 50%;
  background: rgba(201,169,98,0.5);
}
.snap-dot:hover::after, .snap-dot:focus-visible::after { background: var(--color-accent); }

/* 2.4 Călătorii — yatay yol scroll */
.road-section { position: relative; }
.road-sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.road-track {
  display: flex;
  gap: var(--space-4);
  padding-inline: var(--space-4);
  will-change: auto;
}
.road-item {
  flex: 0 0 min(70vw, 640px);
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.road-item .ph, .road-item img { aspect-ratio: 3 / 2; width: 100%; object-fit: cover; }
.road-item figcaption { padding: var(--space-2) var(--space-3); color: var(--color-text-muted); font-size: var(--font-size-sm); }
/* reduced-motion / fallback: dikey grid */
.road-section.is-static .road-sticky { position: static; min-height: 0; }
.road-section.is-static .road-track { flex-direction: column; transform: none !important; }
.road-section.is-static .road-item { flex-basis: auto; }

/* 2.5 Familie — before/after slider */
.ba-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.ba-slider__frame { position: relative; aspect-ratio: 16 / 9; }
.ba-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider__before {
  /* RAW hissi: düşük kontrast + soğuk ton simülasyonu (filter yalnız statik, animate edilmez) */
  filter: saturate(0.55) contrast(0.85) brightness(1.05);
}
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-accent-flash);
  pointer-events: none;
  transform: translateX(-1px);
}
.ba-slider__divider::after {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-accent);
  color: #0b0b0b;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.ba-slider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.ba-slider input[type="range"]:focus-visible ~ .ba-slider__divider::after {
  outline: 3px solid #fff; outline-offset: 2px;
}
.ba-slider__labels {
  display: flex; justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Süreç Timeline (09 §14) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); counter-reset: step; }
.timeline li {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  counter-increment: step;
}
.timeline li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  color: var(--color-accent-ink);
  display: block;
  margin-bottom: var(--space-2);
}
.timeline h3 { margin-bottom: var(--space-1); }
.timeline p { margin: 0; color: var(--color-text-muted); }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Paket kartları (09 §6) ---------- */
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  display: flex; flex-direction: column;
  transition: transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--color-accent); }
.price-card__price {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl);
  color: var(--color-accent-ink);
  margin-bottom: var(--space-3);
}
.price-card ul { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.price-card li { padding: var(--space-2) 0; border-bottom: 1px solid var(--color-surface-2); font-size: var(--font-size-sm); }
.price-card li::before { content: "✓ "; color: var(--color-accent-ink); font-weight: 700; }
.price-card li.no-check::before { content: ""; }
.price-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Rota kartları ---------- */
.route-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-surface-2);
  padding: var(--space-5);
  white-space: pre-line;
}
.route-card h3 { color: var(--color-accent-ink); }

/* ---------- Testimonial (09 §7) ---------- */
.testimonial-strip {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-3);
}
.testimonial-strip > * { scroll-snap-align: start; flex: 0 0 min(85%, 480px); }

/* ---------- FAQ (09 §8) ---------- */
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}
.faq-item summary {
  cursor: pointer;
  padding: var(--space-4);
  font-weight: 600;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  list-style: none;
  position: relative;
  padding-right: var(--space-7);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: var(--space-4); top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent-ink);
  font-size: var(--font-size-xl);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 var(--space-4) var(--space-4); color: var(--color-text-muted); white-space: pre-line; }

/* ---------- Form (09 §9) ---------- */
.contact-form { display: grid; gap: var(--space-4); max-width: 560px; }
.form-field { display: grid; gap: var(--space-1); }
.form-field label { font-weight: 600; font-size: var(--font-size-sm); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-text-muted);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: var(--space-3);
  font: inherit;
  min-height: 44px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--color-accent-ink); }
.form-error { color: #e08585; font-size: var(--font-size-sm); }
[data-theme="light"] .form-error { color: #a03030; }
.form-status { font-weight: 600; }
.required-mark { color: var(--color-accent-ink); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: var(--color-surface);
  border-top: 1px solid var(--color-surface-2);
  border-bottom: 1px solid var(--color-surface-2);
  text-align: center;
}
.cta-band__inner { max-width: 680px; margin-inline: auto; padding-inline: var(--space-3); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-4); }

/* ---------- Footer ---------- */
.site-footer {
  /* nötr siyah (#111) orman temasından kopuktu → yeşile çalan derin orman zemini */
  background: linear-gradient(180deg, #10170f 0%, #0b100c 100%);
  color: #cfd8c6;
  padding: var(--space-7) 0 var(--space-4);
  margin-top: var(--space-7);
}
[data-theme="light"] .site-footer { color: #dbe2d3; }
.footer__grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-3);
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__heading {
  font-size: var(--font-size-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.site-footer a { color: #cfd8c6; text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.footer__links, .footer__social { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); font-size: var(--font-size-sm); }
.footer__address { font-style: normal; line-height: 1.9; }
.footer__bottom {
  max-width: 1200px;
  margin: var(--space-6) auto 0;
  padding: var(--space-4) var(--space-3) 0;
  border-top: 1px solid #26301f;
  font-size: var(--font-size-xs);
  color: #9aa892;
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between;
}

/* WhatsApp yüzen buton (07 §6 — her sayfada erişilebilir) */
.wa-float {
  position: fixed;
  right: var(--space-4); bottom: var(--space-4);
  z-index: var(--z-sticky-nav);
  background: var(--color-accent);
  color: #0b0b0b;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast);
}
.wa-float:hover { transform: scale(1.06); box-shadow: var(--shadow-accent-glow); color: #0b0b0b; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--font-size-sm); color: var(--color-text-muted); padding-top: calc(72px + var(--space-4)); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "→"; margin-right: var(--space-2); color: var(--color-accent-ink); }
.breadcrumb a { color: var(--color-text-muted); }

/* Sayfa başı (hero'suz sayfalar) */
.page-head { padding-top: var(--space-6); padding-bottom: var(--space-2); }
.page-head h1 { max-width: 22ch; }

/* Sayfa geçiş fade (10 §1.3 fallback) */
body { opacity: 1; }
body.is-leaving { opacity: 0; transition: opacity var(--duration-fast) var(--ease-standard); }

/* ---------- Reduced motion — 11 §3 matrisi (merkezi blok) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; }
  .tr-line > span { clip-path: inset(0 0 0% 0) !important; transform: none !important; }
  .hero__slide.is-active img { animation: none; transform: none; }
  .game-focus img, .game-focus .ph { filter: blur(0); }
  .shutter-flash { display: none; }
  .road-section .road-sticky { position: static; min-height: 0; }
  .road-section .road-track { flex-direction: column; transform: none !important; }
  .road-section .road-item { flex-basis: auto; }
  .polaroid { transform: translate(-50%, 10%) !important; }
  .polaroid.is-printed { transition: none; }
  .btn--primary:hover, .btn--ghost:hover, .cat-card:hover, .price-card:hover { transform: none; }
}

/* Print: gürültüsüz */
@media print {
  .site-header, .wa-float, .theme-toggle, .lang-switch { display: none; }
}

/* ---------- Afiș kartları (Canva kampanya varlıkları — revizyon 2026-07-03) ---------- */
.afise-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  align-items: start;
  justify-content: start;
}
.afis-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}
.afis-card img { width: 100%; height: auto; display: block; }
.afis-card--wide { max-width: 720px; }
/* Afiş büyütme butonu — lightbox tetikleyici */
.afis-zoom { padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%; }
.afis-zoom:hover img, .afis-zoom:focus-visible img { opacity: 0.92; }

/* ---------- Gerçek fotoğraf galerisi (revizyon 2026-07-03) ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-2);
}
@media (min-width: 768px) { .gal-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } }
.gal-item {
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: var(--radius-sm); overflow: hidden; display: block;
  aspect-ratio: 1 / 1;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--duration-base) var(--ease-out-expo); }
.gal-item:hover img, .gal-item:focus-visible img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .gal-item img { transition: none; } .gal-item:hover img { transform: none; } }

/* ---------- Fiyat tablosu (piyasa−%10 · 2026-07-03) ---------- */
.price-table { width: 100%; border-collapse: collapse; font-size: var(--font-size-base); }
.price-table th, .price-table td { text-align: left; padding: var(--space-3); border-bottom: 1px solid var(--color-surface-2); vertical-align: top; }
.price-table th { font-family: var(--font-family-base); font-size: var(--font-size-sm); text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); }
.price-table td strong { color: var(--color-accent-ink); white-space: nowrap; }

/* ============================================================
   REDESIGN KATMANI — 3D derinlik · elegant · 2026-07-03
   (cascade sonunda: önceki tanımları bilinçli ezer)
   ============================================================ */

/* Zemin: vinyetli derinlik */
body {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(201,169,98,0.07), transparent 60%),
    radial-gradient(140% 100% at 50% 55%, var(--color-bg) 55%, rgba(0,0,0,0.35) 100%),
    var(--color-bg);
  background-attachment: fixed;
}
[data-theme="light"] body {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(201,169,98,0.10), transparent 60%),
    #f7f5f1;
}

/* Editoryal tipografi ölçeği */
h1 { font-size: clamp(var(--font-size-3xl), 6.5vw, 64px); letter-spacing: -0.015em; }
h2 { font-size: clamp(var(--font-size-2xl), 4.2vw, 44px); letter-spacing: -0.01em; }
.eyebrow { display: flex; align-items: center; gap: var(--space-3); }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--color-accent); flex: none; }

/* 3D sahne + reveal derinliği
   NOT: main'e perspective VERİLMEZ — ataya perspective gelince içindeki
   position:fixed (lightbox!) viewport yerine main'e bağlanır ve ekran dışına düşer */
.reveal { opacity: 0; transform: translateY(34px) scale(0.985); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Katmanlı kart dili: cam yüzey + altın kıl çizgi + derin gölge */
.cat-card, .price-card, .route-card, .feature-card, .afis-card, .portfolio-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0)) , var(--color-surface);
  border: 1px solid rgba(201,169,98,0.16);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, var(--shadow-md);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform var(--duration-base) var(--ease-out-expo),
              box-shadow var(--duration-base) var(--ease-out-expo),
              border-color var(--duration-base) var(--ease-standard);
}
[data-theme="light"] .cat-card, [data-theme="light"] .price-card, [data-theme="light"] .route-card,
[data-theme="light"] .feature-card, [data-theme="light"] .afis-card, [data-theme="light"] .portfolio-card {
  background: #ffffff;
  border-color: rgba(107,82,32,0.18);
}
.cat-card:hover, .price-card:hover, .route-card:hover, .feature-card:hover, .afis-card:hover {
  transform: translateY(-8px) translateZ(14px);
  box-shadow: var(--shadow-lg), 0 0 34px rgba(201,169,98,0.14);
  border-color: rgba(201,169,98,0.42);
}
[data-tilt] { will-change: transform; }

/* Navbar: buzlu cam */
.site-header.is-scrolled {
  background: var(--color-surface);
  box-shadow: 0 1px 0 rgba(201,169,98,0.14);
}

/* Hero: sinematik vinyet + altın kıl çizgi */
.hero__scrim {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.42) 0%, rgba(5,5,5,0.08) 30%, rgba(5,5,5,0.16) 62%, rgba(5,5,5,0.78) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.45) 100%);
}
.hero__content h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero__content::after {
  content: ""; display: block; width: 72px; height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin-top: var(--space-5);
}

/* Butonlar: altın degrade + parıltı */
.btn--primary {
  background: linear-gradient(150deg, #dcbe72, #b9944b);
  color: #141005;
  box-shadow: 0 6px 18px rgba(201,169,98,0.28);
}
.btn--primary:hover, .btn--primary:focus-visible {
  box-shadow: 0 10px 28px rgba(201,169,98,0.42);
  transform: translateY(-2px) scale(1.02);
}

/* Galeri: magazin ritmi + derinlik hover */
.gal-grid { gap: var(--space-3); }
.gal-item { box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: transform var(--duration-base) var(--ease-out-expo), box-shadow var(--duration-base) var(--ease-out-expo); }
.gal-item:hover, .gal-item:focus-visible { transform: translateY(-4px) translateZ(10px); box-shadow: var(--shadow-lg), 0 0 22px rgba(201,169,98,0.16); border-color: rgba(201,169,98,0.35); }
@media (min-width: 768px) {
  .gal-grid .gal-item:nth-child(9n+1) { grid-column: span 2; grid-row: span 2; }
}

/* Bölüm ayracı: kıl çizgi degrade */
main > section.container + section.container::before,
main > section.reveal + section.reveal::before {
  content: ""; display: block; max-width: 1200px; margin: 0 auto var(--space-7);
  height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,98,0.25), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; }
  .cat-card:hover, .price-card:hover, .route-card:hover, .feature-card:hover, .afis-card:hover,
  .gal-item:hover { transform: none; }
  [data-tilt] { transform: none !important; }
}

/* ============================================================
   REDESIGN V2 — şampanya altın · gradient display · yıldız katmanı
   ============================================================ */
:root { --color-accent: #d4ad64; --color-accent-ink: #d4ad64; --color-accent-flash: #ecd9a8; --shadow-accent-glow: 0 0 28px rgba(212,173,100,0.28); }
[data-theme="light"] { --color-accent: #b98f47; --color-accent-ink: #6b5220; }

/* Yıldız kanvası: içeriğin ARKASINDA, tıklamayı engellemez */
#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
/* main'e z-index VERİLMEZ: stacking context oluşursa içindeki lightbox (z-900)
   header'ın (z-100) altında hapsolur. position:relative + z-auto canvas'ın üstünde kalmaya yeter. */
.site-header, footer { position: relative; z-index: 1; }
main { position: relative; }

/* Sıcak fildişi display başlıklar + altın son-nokta */
h1, .page-head h1, main h2 { color: #f0e7d3; }
h1::after { content: "."; color: var(--color-accent); }
.hero__content h1::after { content: ""; }
[data-theme="light"] h1, [data-theme="light"] .page-head h1, [data-theme="light"] main h2 { color: #3d2f14; }
.hero__content h1 { color: #f5f0e2; }
footer h2 { color: var(--color-text); }

/* Ghost bölüm numaraları — editorial derinlik */
main { counter-reset: sec; }
main > section.container { counter-increment: sec; position: relative; }
main > section.container::after {
  content: counter(sec, decimal-leading-zero);
  position: absolute; top: -8px; right: 4px;
  font-family: var(--font-family-heading);
  font-size: clamp(72px, 11vw, 150px);
  line-height: 1; font-weight: 300;
  color: rgba(245,245,245,0.035);
  -webkit-text-stroke: 1px rgba(212,173,100,0.16);
  pointer-events: none; user-select: none;
}
[data-theme="light"] main > section.container::after { color: rgba(0,0,0,0.03); -webkit-text-stroke-color: rgba(122,92,34,0.18); }

/* Zemin: daha derin gece + üstten altın nefes */
body {
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(212,173,100,0.09), transparent 62%),
    linear-gradient(180deg, #0b0b0e 0%, #09090b 100%);
  background-attachment: fixed;
}
[data-theme="light"] body {
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(185,143,71,0.12), transparent 62%),
    #f6f3ee;
}



/* ============================================================
   REDESIGN V3 — ORMAN TEMASI (doğa / mimari / gezi)
   ============================================================ */
:root {
  --color-bg: #0b110c;
  --color-surface: #121a13;
  --color-surface-2: #1a241b;
  --color-text: #edf0e4;
  --color-text-muted: #a2b09c;
  --wood-1: #8a5a33; --wood-2: #6b4426; --wood-3: #59371f;
}
[data-theme="light"] {
  --color-bg: #f1efe4;
  --color-surface: #fbfaf3;
  --color-surface-2: #e7e5d6;
  --color-text: #22301f;
  --color-text-muted: #5b6a54;
}
body {
  background:
    radial-gradient(1100px 640px at 50% -8%, rgba(95,127,85,0.16), transparent 60%),
    radial-gradient(900px 700px at 8% 108%, rgba(74,103,65,0.12), transparent 55%),
    linear-gradient(180deg, #0c130d 0%, #0a0f0b 100%);
  background-attachment: fixed;
}
[data-theme="light"] body {
  background:
    radial-gradient(1100px 640px at 50% -8%, rgba(95,127,85,0.20), transparent 62%),
    radial-gradient(900px 700px at 8% 108%, rgba(74,103,65,0.14), transparent 55%),
    #f1efe4;
}
h1, .page-head h1, main h2 { color: #eef3e2; }
[data-theme="light"] h1, [data-theme="light"] .page-head h1, [data-theme="light"] main h2 { color: #2c3a22; }
/* Hero başlığı HER temada koyu fotoğraf üstünde durur → daima fildişi
   (yukarıdaki light kuralı hero'yu eziyordu: koyu yeşil × koyu foto = görünmez) */
.hero__content h1, [data-theme="light"] .hero__content h1 { color: #f5f0e2; }

/* AHŞAP butonlar — damar dokulu */
.btn--primary, .filter-tab.is-active {
  background:
    repeating-linear-gradient(93deg, rgba(0,0,0,0.10) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(87deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 11px),
    linear-gradient(160deg, var(--wood-1), var(--wood-2) 55%, var(--wood-3));
  color: #f6ecd9;
  border: 1px solid rgba(52,31,15,0.85);
  box-shadow: inset 0 1px 0 rgba(255,235,200,0.18), 0 6px 16px rgba(0,0,0,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.btn--primary:hover, .btn--primary:focus-visible {
  box-shadow: inset 0 1px 0 rgba(255,235,200,0.25), 0 10px 24px rgba(0,0,0,0.45), 0 0 22px rgba(212,173,100,0.25);
  transform: translateY(-2px) scale(1.02);
}
.btn--ghost { border-color: rgba(138,90,51,0.65); }
.hero .btn--ghost { color: #f2ecdb; border-color: rgba(242,236,219,0.6); }

/* Kart yüzeyleri: yosun-ahşap kıl çizgisi */
.cat-card, .price-card, .route-card, .feature-card, .afis-card, .portfolio-card {
  border-color: rgba(120,146,104,0.22);
}
.cat-card:hover, .price-card:hover, .route-card:hover, .feature-card:hover, .afis-card:hover {
  border-color: rgba(212,173,100,0.45);
}
.eyebrow::before { background: linear-gradient(90deg, #5f7f55, var(--color-accent)); }

/* Şeffaf header: koyu tül — her arka planda okunur */
.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(10,15,11,0.82) 0%, rgba(10,15,11,0.45) 68%, transparent 100%);
}
main > section.container::after { color: rgba(238,243,226,0.035); -webkit-text-stroke-color: rgba(150,170,130,0.15); }
/* Hayalet rakamlar açık temada fildişi kalmıştı (krem üstünde çamur) → koyu yeşil iz */
[data-theme="light"] main > section.container::after { color: rgba(44,58,34,0.05); -webkit-text-stroke-color: rgba(95,127,85,0.28); }

/* Sarmaşıklar — üst köşelerden */
body::before, body::after {
  content: ""; position: fixed; top: -6px; z-index: 2;
  width: min(30vw, 380px); height: 240px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20420%20260%22%3E%3Cg%20stroke%3D%22%235a7350%22%20stroke-width%3D%223%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.95%22%3E%3Cpath%20d%3D%22M-10%208%20C110%2026%20200%2058%20245%20132%20C266%20168%20258%20205%20224%20238%22/%3E%3Cpath%20d%3D%22M-10%2042%20C85%2058%20150%2092%20178%20152%20C188%20174%20186%20196%20172%20216%22/%3E%3Cpath%20d%3D%22M60%2016%20C96%2034%20118%2062%20124%2096%22/%3E%3Cpath%20d%3D%22M150%2040%20C186%2060%20208%2092%20212%20128%22/%3E%3C/g%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%234f6b47%22%20transform%3D%22translate%2852%2020%29%20rotate%2818%29%20scale%281.05%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%235f7f55%22%20transform%3D%22translate%28108%2038%29%20rotate%2832%29%20scale%280.9%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%2344603d%22%20transform%3D%22translate%28160%2062%29%20rotate%2844%29%20scale%281.1%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%235f7f55%22%20transform%3D%22translate%28206%2096%29%20rotate%2858%29%20scale%280.95%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%234f6b47%22%20transform%3D%22translate%28236%20140%29%20rotate%2874%29%20scale%281.15%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%2344603d%22%20transform%3D%22translate%28248%20186%29%20rotate%2892%29%20scale%280.9%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%2344603d%22%20transform%3D%22translate%2890%2052%29%20rotate%28120%29%20scale%280.8%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%235f7f55%22%20transform%3D%22translate%28140%2086%29%20rotate%28132%29%20scale%280.85%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%234f6b47%22%20transform%3D%22translate%28168%20124%29%20rotate%28140%29%20scale%280.75%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%235f7f55%22%20transform%3D%22translate%2830%2044%29%20rotate%28150%29%20scale%280.7%29%22/%3E%3Cpath%20d%3D%22M0%200%20Q9%20-11%2022%200%20Q9%2011%200%200%20Z%22%20fill%3D%22%235f7f55%22%20transform%3D%22translate%28224%20224%29%20rotate%28108%29%20scale%280.8%29%22/%3E%3Ccircle%20cx%3D%22122%22%20cy%3D%2298%22%20r%3D%224%22%20fill%3D%22%23d4ad64%22/%3E%3Ccircle%20cx%3D%22212%22%20cy%3D%22130%22%20r%3D%223.4%22%20fill%3D%22%23d4ad64%22/%3E%3Ccircle%20cx%3D%22246%22%20cy%3D%22164%22%20r%3D%223%22%20fill%3D%22%23c89a4e%22/%3E%3C/svg%3E") no-repeat top left / contain;
  pointer-events: none; opacity: 0.85;
}
body::before { left: -8px; }
body::after { right: -8px; transform: scaleX(-1); }
[data-theme="light"] body::before, [data-theme="light"] body::after { opacity: 0.95; }
@media (max-width: 700px) { body::before, body::after { width: 46vw; height: 150px; opacity: 0.6; } }
.site-header { z-index: 100; }
/* Şeffaf header artık her sayfada koyu tül taşıyor → metin daima fildişi */
.site-header:not(.is-scrolled) .navbar__brand,
.site-header:not(.is-scrolled) .navbar__menu a,
.site-header:not(.is-scrolled) .lang-switch a,
.site-header:not(.is-scrolled) .theme-toggle {
  color: #f2ecdb;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
/* 2026-07-08 (Tolga kuralı): header HER sayfada, HER temada aynı koyu bant —
   gövdeden net ayrışır; fildişi metin koyu zeminde ~12:1 kontrast. */
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, #0c130d 0%, #111a11 100%);
}
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) .navbar__brand,
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) .navbar__menu a,
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) .lang-switch a,
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) .theme-toggle {
  color: #ece4d0;
  text-shadow: none;
}
[data-theme="light"] .site-header.is-scrolled .navbar__brand strong,
[data-theme="light"] body:not(:has(main .hero)) .site-header:not(.is-scrolled) .navbar__brand strong {
  color: var(--color-accent);
}
[data-theme="light"] .site-header.is-scrolled .navbar__brand,
[data-theme="light"] .site-header.is-scrolled .navbar__menu a,
[data-theme="light"] .site-header.is-scrolled .lang-switch a,
[data-theme="light"] .site-header.is-scrolled .theme-toggle { color: #ece4d0; text-shadow: none; }

/* ============================================================
   V4 — PĂDUREA DE LUMINĂ: film şeridi · el feneri · çam kanopisi
   ============================================================ */

/* WhatsApp: neon #25d366 doğa paletiyle çatışıyordu + beyaz metin ~2:1 →
   orman-uyumlu derin yaprak yeşili (beyaz metin ≥4.5:1), marka yeşil ailesinde kalır */
.btn--whatsapp, a.btn[href*="wa.me"], .navbar__cta[href*="wa.me"], .wa-float {
  background: linear-gradient(160deg, #43a06e, #2e7d54 55%, #245f41) !important;
  color: #ffffff !important;
  border: 1px solid rgba(23,58,40,0.75) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 16px rgba(36,95,65,0.35);
  text-shadow: 0 1px 2px rgba(0,40,22,0.3);
}
.btn--whatsapp:hover, a.btn[href*="wa.me"]:hover, .wa-float:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 10px 26px rgba(36,95,65,0.5);
  transform: translateY(-2px) scale(1.02);
}

/* Hero kicker + marquee */
.hero__kicker {
  font-size: var(--font-size-sm); letter-spacing: 0.22em; text-transform: uppercase;
  color: #d9cfae; margin-bottom: var(--space-3);
  /* parlak foto karelerinde (kar, gökyüzü) okunurluk için gölge */
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.4);
}
.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  overflow: hidden; padding: 10px 0;
  border-top: 1px solid rgba(242,236,219,0.16);
  background: rgba(8,12,9,0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: marquee 36s linear infinite; }
.marquee__track span {
  font-family: var(--font-family-heading); font-style: italic;
  color: rgba(240,231,211,0.92); font-size: var(--font-size-base); padding-right: 8px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* FILM ŞERİDİ — zımba delikli fotoğraf bandı */
.filmstrip {
  --spot-x: 50%; --spot-y: 50%;
  position: relative;
  margin-top: var(--space-5);
  background: #100f0d;
  padding: 34px 0;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-block: 1px solid rgba(212,173,100,0.25);
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip::before, .filmstrip__track::after {
  content: ""; position: absolute; left: 0; right: 0; height: 22px;
  background: radial-gradient(circle 5px at 14px 50%, #0a0f0b 98%, transparent) repeat-x;
  background-size: 34px 22px;
}
.filmstrip::before { top: 5px; }
.filmstrip__track::after { bottom: -29px; }
.filmstrip__track { position: relative; display: flex; gap: 18px; padding: 0 max(6vw, 24px); width: max-content; }
.film-frame {
  position: relative; scroll-snap-align: center;
  width: clamp(200px, 26vw, 320px); flex: none;
  text-decoration: none; color: #efe7d2;
  border: 2px solid #23211c; border-radius: 6px; overflow: hidden;
  background: #171613;
  transition: transform var(--duration-base) var(--ease-out-expo), border-color var(--duration-base);
}
.film-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  filter: saturate(0.94) contrast(1.03);
  transition: transform var(--duration-slow) var(--ease-out-expo); }
.film-frame figcaption {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 14px; font-family: var(--font-family-heading); font-size: var(--font-size-lg);
}
.film-frame figcaption em { font-style: italic; color: var(--color-accent); font-size: var(--font-size-sm); }
.film-frame:hover, .film-frame:focus-visible { transform: translateY(-6px); border-color: rgba(212,173,100,0.6); }
.film-frame:hover img { transform: scale(1.05); }

/* EL FENERİ — imleç ışığı (yalnız fine pointer; JS --spot-x/y günceller) */
@media (pointer: fine) {
  [data-spotlight]::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
    background: radial-gradient(circle 230px at var(--spot-x) var(--spot-y),
      transparent 0%, rgba(5,8,6,0.0) 35%, rgba(5,8,6,0.62) 100%);
    opacity: 0; transition: opacity 0.5s var(--ease-standard);
  }
  [data-spotlight]:hover::after { opacity: 1; }
}
.spot-hint { font-size: var(--font-size-sm); color: var(--color-text-muted); margin-top: var(--space-3); font-style: italic; }
@media (pointer: coarse) { .spot-hint { display: none; } }

/* Süreç kartlarındaki roma rakamları */
.proces-grid h3 em { color: var(--color-accent); font-style: italic; margin-right: 6px; }

/* ÇAM KANOPİSİ — kenarlardan dal siluetleri, scroll'da derinlik (JS katmanları kaydırır) */
.canopy { position: fixed; top: 0; bottom: 0; width: min(18vw, 220px); z-index: 2; pointer-events: none; }
.canopy--l { left: 0; } .canopy--r { right: 0; transform: scaleX(-1); }
.canopy svg { position: absolute; top: -4%; height: 108%; width: 100%; }
@media (max-width: 900px) { .canopy { width: 24vw; opacity: 0.55; } }

/* İnce detaylar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0c110d; }
::-webkit-scrollbar-thumb { background: linear-gradient(#3f5738, #6b4426); border-radius: 6px; border: 2px solid #0c110d; }
html { scrollbar-color: #4a6741 #0c110d; scrollbar-width: thin; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  [data-spotlight]::after { display: none; }
  .film-frame:hover img, .film-frame:hover { transform: none; }
}
/* Kanopi yalnız geniş ekranda (içerikle çakışmasın) */
.canopy { display: none; }
/* kanopi kaldırıldı — fotoğrafın önünü kapatıyordu */

/* ============================================================
   FINAL — "LUMINA": süsleme fotoğrafla yarışmaz
   ============================================================ */
/* Sarmaşıklar KALDIRILDI (rahatsız edici bulundu) */
body::before, body::after { content: none !important; }

/* Sinematik film greni — yalnız hero üzerinde, fotoğrafik doku */
.hero { position: relative; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.10; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Tipografik son rötuş: nefes ve ritim */
.page-head { padding-top: 128px; }
.section-lead { font-size: calc(var(--font-size-base) * 1.06); line-height: 1.7; }
.hero__sub { font-family: var(--font-family-heading); font-style: italic; font-size: var(--font-size-xl); color: #e6dcc2; }
.footer__heading { letter-spacing: 0.06em; }

/* Kart başlıkları fotoğraf ÜZERİNDE durur → her temada fildişi.
   ([data-theme="light"] main h2 kuralı bunları koyu yeşile boyuyordu — foto üstünde okunmuyordu) */
.cat-card__body h2, .cat-card__body h3,
[data-theme="light"] .cat-card__body h2, [data-theme="light"] .cat-card__body h3 {
  color: #f5f5f5;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}

/* Footer imza satırı */
.site-footer .footer__grid::after {
  content: "Fotografiat și construit de Tolga · Ploiești, România";
  display: block; grid-column: 1 / -1;
  margin-top: var(--space-5); padding-top: var(--space-4);
  border-top: 1px solid rgba(212,173,100,0.18);
  font-family: var(--font-family-heading); font-style: italic;
  color: var(--color-text-muted); font-size: var(--font-size-sm);
}

/* ---------- Kart-boyu tıklama (2026-07-07 — basitlik turu) ----------
   .card-stretch taşıyan buton: kapsayıcı .feature-card'ın TAMAMI tıklanabilir.
   Müşteri kartın neresine basarsa bassın hedefe gider — kaçırılan tık yok. */
.feature-card { position: relative; transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard); }
.feature-card:has(.card-stretch):hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.16); cursor: pointer; }
.card-stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* ---------- Magnet Studio (2026-07-07) — printare-la-minut ---------- */
.magnet-studio{display:grid;gap:var(--space-4);align-items:center}
@media(min-width:768px){.magnet-studio{grid-template-columns:1fr 1fr}}
.magnet-mock{justify-self:center;position:relative;width:min(340px,86vw);padding:14px 14px 18px;
  background:#fdfdfb;border-radius:6px;transform:rotate(-2.5deg);
  box-shadow:0 6px 14px rgba(0,0,0,.22),0 22px 44px rgba(0,0,0,.18);
  transition:transform var(--duration-fast) var(--ease-standard), background var(--duration-fast)}
.magnet-mock:hover{transform:rotate(-1deg) scale(1.02)}
.magnet-mock.negru{background:#1c1c1e}
.magnet-mock img{display:block;width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:2px}
.magnet-mock::after{content:"";position:absolute;top:-12px;left:50%;transform:translateX(-50%) rotate(1deg);
  width:78px;height:26px;background:rgba(212,173,100,.45);border-radius:2px;
  box-shadow:0 2px 5px rgba(0,0,0,.12)} /* "bant" hissi */
.magnet-mock figcaption{margin-top:10px;text-align:center;font-size:.82rem;color:#6b6b66}
.magnet-mock.negru figcaption{color:#c9c9c4}
.ms-controls label.btn{cursor:pointer}
.ms-swatch{display:inline-block;width:22px;height:22px;border-radius:50%;vertical-align:-5px;
  border:2px solid var(--color-border,rgba(0,0,0,.2));margin-right:6px}

/* ---------- Cadrul norocos (2026-07-07) — ana sayfa easter egg ---------- */
.lucky-overlay{position:fixed;inset:0;z-index:1200;display:flex;align-items:center;justify-content:center;
  background:rgba(8,10,8,.88)} /* blur kaldırıldı: animasyonlu hero üzerinde GPU stall yapıyordu */
.lucky-overlay[hidden]{display:none}
.lucky-pol{background:#fdfdfb;padding:16px 16px 20px;border-radius:4px;max-width:min(420px,88vw);
  transform:rotate(2deg);box-shadow:0 30px 70px rgba(0,0,0,.5);animation:luckyPop .45s cubic-bezier(.2,1.3,.4,1)}
.lucky-pol img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}
.lucky-pol figcaption{margin-top:12px;text-align:center;color:#3c3c38;font-size:.95rem}
.lucky-pol .btn{margin-top:10px}
@keyframes luckyPop{from{transform:rotate(-6deg) scale(.7);opacity:0}to{transform:rotate(2deg) scale(1);opacity:1}}
@media (prefers-reduced-motion: reduce){.lucky-pol{animation:none}}

/* Quiz seçenekleri (2026-07-07) */
.quiz-opt{display:block;width:100%;margin:8px 0;text-align:left}

/* ---------- Studioul de rame v3 (2026-07-07) — GERÇEK ürün referanslı:
   ince parlak beyaz/siyah plastik ramă (paspartu YOK, IMG_0107) +
   şeffaf akrilik magnet (kalın saydam kenar, IMG_0130). ---------- */
.ms-stage{display:flex;align-items:center;justify-content:center;min-height:480px;border-radius:18px;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(150deg,#3a3a3c 0%,#242426 60%,#313134 100%)}
.ms-stage.fridge{background:
  linear-gradient(90deg, rgba(255,255,255,.25) 0%, transparent 18%),
  linear-gradient(105deg,#c9cdd1 0%,#eef1f3 38%,#d3d7db 62%,#e8ebee 100%)}
.ms-prod{margin:0;transform:none;transition:transform .25s ease;position:relative}
.ms-prod:hover{transform:scale(1.02)}
/* — İnce parlak plastik ramă (10×15) — */
.ms-frame{position:relative;background:#fff;border-radius:4px;padding:11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset, 0 -1px 2px rgba(0,0,0,.18) inset,
    2px 2px 4px rgba(0,0,0,.12) inset,
    0 12px 26px rgba(0,0,0,.45), 0 32px 64px rgba(0,0,0,.35)}
.ms-frame::before{content:"";position:absolute;inset:0;border-radius:4px;pointer-events:none;
  background:linear-gradient(118deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 22%,
             rgba(255,255,255,0) 68%, rgba(255,255,255,.28) 100%)}
.ms-mat{padding:0;background:none;box-shadow:none}
.ms-prod img{display:block;width:min(240px,58vw);aspect-ratio:2/3;object-fit:cover;
  box-shadow:0 0 0 1px rgba(0,0,0,.28), inset 0 0 8px rgba(0,0,0,.2)}
.ms-prod.land img{width:min(340px,80vw);aspect-ratio:3/2}
/* siyah ramă */
.mode-neagra .ms-frame{background:#232325;
  box-shadow:
    0 1px 0 rgba(255,255,255,.14) inset, 0 -1px 2px rgba(0,0,0,.6) inset,
    2px 2px 4px rgba(0,0,0,.4) inset,
    0 12px 26px rgba(0,0,0,.5), 0 32px 64px rgba(0,0,0,.4)}
/* — Akrilik magnet (5×7): kalın SAYDAM kenar + parlama — */
.mode-magnet .ms-frame{background:linear-gradient(135deg, rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.16) 45%, rgba(255,255,255,.34) 100%);
  border-radius:12px;padding:15px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.75),
    inset 0 0 0 1px rgba(255,255,255,.35),
    inset 3px 3px 8px rgba(255,255,255,.45),
    inset -3px -3px 8px rgba(120,130,140,.25),
    0 6px 14px rgba(0,0,0,.22), 0 18px 36px rgba(0,0,0,.16)}
.mode-magnet .ms-frame::before{border-radius:12px;
  background:linear-gradient(115deg, rgba(255,255,255,.65) 2%, transparent 24%,
             transparent 60%, rgba(255,255,255,.4) 96%)}
.mode-magnet img{width:min(165px,44vw);aspect-ratio:5/7;
  box-shadow:0 0 0 1px rgba(0,0,0,.15)}
.mode-magnet.ms-prod.land img{width:min(230px,60vw);aspect-ratio:7/5}
.mode-magnet.ms-prod{transform:none}
.ms-prod figcaption{margin-top:14px;text-align:center;font-size:.9rem;color:#e8e4da;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.ms-stage.fridge + * figcaption, .ms-stage.fridge .ms-prod figcaption{color:#3c3c40;text-shadow:none}
.ms-mode.is-active{border-color:var(--color-accent,#d4ad64);box-shadow:0 0 0 3px rgba(212,173,100,.25);font-weight:700}


/* ---------- Header: her sayfada belirgin koyu bant (2026-07-07) ----------
   Tolga kuralı: header gövdeden HER ZAMAN ayrışmalı. İki temada da sabit
   koyu orman-yeşili bant + altın kıl çizgi; linkler fildişi. */
.site-header,
.site-header.is-scrolled,
.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, #0c130d 0%, #111a11 100%); /* tam opak — backdrop-filter GPU tuzağı nedeniyle kaldırıldı */
  box-shadow: 0 1px 0 rgba(212,173,100,.4), 0 10px 26px rgba(0,0,0,.28);
}
.site-header .navbar__brand,
.site-header .navbar__menu a,
.site-header .theme-toggle,
.site-header .navbar__toggle,
.site-header .lang-switch a { color: #ece4d0; text-shadow: none; }
.site-header .navbar__brand strong { color: var(--color-accent); }
.site-header .navbar__menu a:hover,
.site-header .navbar__menu a[aria-current="page"] { color: var(--color-accent); }
.site-header .lang-switch { border-color: rgba(236,228,208,.45); }
@media (max-width: 1023px) {
  .site-header .navbar__menu.is-open {
    background: linear-gradient(180deg, rgba(17,26,17,.98), rgba(12,19,13,.98));
    box-shadow: 0 18px 36px rgba(0,0,0,.45);
  }
}
