/* ============================================================
   MASAL KONSEPT — Görsel sistem
   Koyu sinematik bölümler + kırık beyaz/sıcak taş bantlar
   ============================================================ */

:root {
  --night: #171218;
  --night-soft: #241a22;
  /* Yan yana gelen koyu bantların birbirinden ayrılması için üçüncü koyu ton */
  --night-deep: #0d0a0e;
  --plum: #6b2947;
  --blush: #e8d1ce;
  --ivory: #f7f0e5;
  --paper: #f6f0e7;
  --stone: #e9dfd2;
  --ink: #241d20;
  --ink-muted: #64595b;
  --muted: #c2b5ac;
  --gold: #caa66b;
  /* Açık bantlardaki altın. #7c6435 iken taş zeminde 4.45:1 ile AA'nın
     kıl payı altında kalıyordu; bu ton her açık bantta 5:1 üzerinde. */
  --gold-deep: #765a28;
  --gold-light: #ead5a7;
  --line: rgba(234, 213, 167, 0.24);
  --line-soft: rgba(234, 213, 167, 0.12);
  --line-ink: rgba(73, 52, 59, 0.18);
  --rose-mist: #dcc5c4;
  --wine-soft: #8b5268;
  --champagne: #dfc48e;
  --serif: "Cormorant Garamond", "Cormorant Fallback", Georgia, serif;
  --sans: "Manrope", "Manrope Fallback", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 74px;
  --utility-h: 38px;
  /* Gövde metni ölçeği — üç kademe. Daha önce 13.5/14/15/16.5 dağınıktı. */
  --fs-sm: 13.5px;
  --fs-base: 15px;
  --fs-lead: 16.5px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  overflow-x: clip;
}

body {
  background: var(--night);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

::selection { background: rgba(201, 168, 106, 0.35); }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Erişilebilirlik */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--gold-light); color: var(--night);
  padding: 12px 20px; border-radius: 0 0 12px 12px;
  font-weight: 600; font-size: 14px;
  transition: top 0.25s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ============================================================
   AÇILIŞ — "Perde açılıyor, masal başlıyor"
   Zaman çizgisi: halka çizimi 0–1s • monogram 0.35s • yıldız turu
   0.3–1.5s • yazı 0.95s • perdeler 1.85s'te açılır • 2.85s'te biter
   ============================================================ */
html.intro-lock { overflow: hidden; }

.curtain {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  animation: curtainGone 1ms linear 2.9s forwards;
}
@keyframes curtainGone { to { visibility: hidden; } }
.curtain.is-skipped { display: none; }

/* Kadife perdeler */
.curtain-panel {
  position: absolute; top: 0; bottom: 0; width: 50.6%;
  background:
    repeating-linear-gradient(90deg,
      rgba(236, 216, 171, 0.028) 0 2px,
      rgba(0, 0, 0, 0) 2px 34px,
      rgba(0, 0, 0, 0.35) 34px 62px),
    linear-gradient(160deg, #10171a 0%, #070a0b 60%, #0a0f11 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
}
.curtain-left {
  left: 0;
  border-right: 1px solid rgba(201, 168, 106, 0.35);
  animation: curtainOpenL 1s cubic-bezier(0.76, 0, 0.2, 1) 1.85s forwards;
}
.curtain-right {
  right: 0;
  border-left: 1px solid rgba(201, 168, 106, 0.35);
  animation: curtainOpenR 1s cubic-bezier(0.76, 0, 0.2, 1) 1.85s forwards;
}
@keyframes curtainOpenL { to { transform: translateX(-104%); } }
@keyframes curtainOpenR { to { transform: translateX(104%); } }

/* Perde aralığından sızan ışık */
.curtain-beam {
  position: absolute; top: -5%; bottom: -5%; left: 50%; width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(236, 216, 171, 0.9) 30%, rgba(236, 216, 171, 0.9) 70%, transparent);
  filter: blur(3px);
  opacity: 0;
  animation: beamFlash 1s ease 1.6s forwards;
}
@keyframes beamFlash {
  0% { opacity: 0; }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scaleX(30); }
}

/* Sahne: amblem + yazılar */
.curtain-stage {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  animation: stageOut 0.4s var(--ease-out) 1.62s forwards;
}
@keyframes stageOut { to { opacity: 0; transform: translateY(-12px) scale(1.06); } }

.curtain-emblem { position: relative; width: 152px; height: 152px; display: grid; place-items: center; }
.curtain-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.curtain-ring circle { fill: none; stroke: var(--gold); }
.curtain-ring .ring-draw {
  stroke-width: 1.6;
  stroke-dasharray: 340; stroke-dashoffset: 340;
  animation: ringDraw 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.curtain-ring .ring-soft {
  stroke-width: 0.8; opacity: 0;
  animation: ringSoft 0.6s ease 0.9s forwards;
}
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
@keyframes ringSoft { to { opacity: 0.4; } }

/* Halka etrafında tur atan yıldız */
.curtain-orbit {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  animation: orbitSpin 1.25s cubic-bezier(0.45, 0, 0.3, 1) 0.25s both;
}
.curtain-orbit i {
  font-style: normal; font-size: 13px; color: var(--gold-light);
  transform: translateY(-76px);
  text-shadow: 0 0 12px rgba(236, 216, 171, 0.9);
  animation: orbitFade 1.25s ease 0.25s both;
}
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitFade { 0% { opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { opacity: 0; } }

.curtain-mono {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 46px; color: var(--gold-light);
}
.curtain-mono i { width: 1px; height: 48px; background: var(--line); transform: scaleY(0); animation: monoBar 0.5s var(--ease-out) 0.55s forwards; }
.curtain-mono b {
  font-weight: 500;
  opacity: 0; filter: blur(10px); transform: translateY(10px);
  text-shadow: 0 0 26px rgba(236, 216, 171, 0.45);
}
.curtain-mono b:first-child { animation: monoIn 0.7s var(--ease-out) 0.4s forwards; }
.curtain-mono b:last-child { animation: monoIn 0.7s var(--ease-out) 0.55s forwards; }
@keyframes monoIn { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes monoBar { to { transform: scaleY(1); } }

.curtain-word {
  font-size: 13px; font-weight: 600; color: var(--ivory);
  letter-spacing: 0.2em; text-indent: 0.2em;
  opacity: 0;
  animation: wordSpread 0.9s var(--ease-out) 0.95s forwards;
}
@keyframes wordSpread {
  from { opacity: 0; letter-spacing: 0.2em; text-indent: 0.2em; }
  to { opacity: 1; letter-spacing: 0.55em; text-indent: 0.55em; }
}
.curtain-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 1.25s forwards;
}

/* Yükselen altın tozu */
.curtain-dust { position: absolute; inset: 0; overflow: hidden; }
.curtain-dust i {
  position: absolute; bottom: -3%; left: var(--dx);
  width: calc(3px * var(--ds)); height: calc(3px * var(--ds));
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(236, 216, 171, 0.8);
  opacity: 0;
  animation: dustRise 2.4s ease-in var(--dd) forwards;
}
@keyframes dustRise {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 0.85; }
  100% { opacity: 0; transform: translateY(-88vh) translateX(14px); }
}

/* Perde oynarken hero girişleri perde aralanınca başlar */
html.has-intro .eyebrow { animation-delay: 2.05s; }
html.has-intro .hero-title .w { animation-delay: calc(var(--d) + 1.85s); }
html.has-intro .hero-lead { animation-delay: 2.75s; }
html.has-intro .hero-cta { animation-delay: 2.9s; }
html.has-intro .date-check { animation-delay: 3.05s; }

/* ---------- Atmosfer (yalnız koyu hero) ---------- */
.ambient-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; }
.orb-a {
  width: 44vw; height: 44vw; min-width: 360px; min-height: 360px; left: -12vw; top: -12vh;
  background: radial-gradient(circle, rgba(201,168,106,0.15), transparent 70%);
  animation: orbDrift 28s ease-in-out infinite alternate;
}
.orb-b {
  width: 36vw; height: 36vw; min-width: 300px; min-height: 300px; right: -10vw; bottom: -10vh;
  background: radial-gradient(circle, rgba(114,146,140,0.12), transparent 70%);
  animation: orbDrift 34s ease-in-out -10s infinite alternate-reverse;
}
@keyframes orbDrift { to { transform: translate(5vw, 4vh) scale(1.1); } }
.stars i {
  position: absolute; width: 2.5px; height: 2.5px; border-radius: 50%;
  left: var(--x); top: var(--y);
  background: var(--gold-light); opacity: 0;
  animation: twinkle var(--dur) ease-in-out var(--del) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
  50% { opacity: 0.4; transform: translateY(-12px) scale(1); }
}

/* ---------- Monogram ---------- */
.monogram {
  display: inline-flex; align-items: center; gap: 8px;
  width: 48px; height: 48px; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  font-family: var(--serif); font-size: 15.5px; color: var(--gold-light);
  flex: none; position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
}
/* İçteki ince ikinci halka — mühür hissi verir */
.monogram::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid var(--line-soft); border-radius: 50%;
}
.monogram i { width: 1px; height: 15px; background: var(--line); }
a:hover .monogram { border-color: var(--gold); box-shadow: 0 0 22px rgba(201,168,106,0.25); }

/* ---------- Üst bar (iki katman) ----------
   Katman 1 (.topbar-utility): ince iletişim şeridi. Kaydırınca yukarı katlanır.
   Katman 2 (.topbar-main): marka + menü + CTA. Her zaman görünür.
   --header-h yalnız ANA satırın yüksekliğidir; utility şeridi kaybolduğu için
   scroll-padding hesabına dâhil edilmez. */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
  border-bottom: 1px solid transparent;
}
.topbar-utility {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: var(--utility-h);
  padding: 0 clamp(16px, 4vw, 44px);
  background: color-mix(in srgb, var(--night-soft) 92%, var(--plum));
  border-bottom: 1px solid var(--line-soft);
  font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted);
  overflow: hidden;
  transition: height 0.4s var(--ease-out), opacity 0.3s, border-color 0.4s;
}
.tu-tag { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tu-links { display: flex; align-items: center; gap: 18px; flex: none; }
.tu-links a { color: var(--muted); transition: color 0.3s; }
.tu-links a:hover { color: var(--gold-light); }
/* Boş config'te doldurucu boş kalır; ayırıcı çizgi de görünmesin */
.tu-links > span:empty { display: none; }
.tu-links > *:not(:last-child)::after {
  content: "·"; margin-left: 18px; color: var(--line); pointer-events: none;
}

.topbar-main {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: var(--header-h);
  padding: 0 clamp(16px, 4vw, 44px);
  transition: background 0.4s;
}
/* Kaydırma: utility şeridi katlanır, ana satır cam zemine oturur */
.topbar.is-scrolled .topbar-utility { height: 0; opacity: 0; border-bottom-color: transparent; }
.topbar.is-scrolled .topbar-main {
  background: rgba(18, 13, 18, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar.is-scrolled { border-bottom-color: var(--line-soft); }
.topbar.is-hidden { transform: translateY(-100%); }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 15px; letter-spacing: 0.36em; font-weight: 600; color: var(--ivory); }
/* Altın kuralı: ekranda tek altın odak. Marka alt yazısı altın olunca
   hemen yanındaki altın CTA ile yarışıyordu. */
.brand-copy small { font-size: 10px; letter-spacing: 0.46em; color: var(--muted); }
.topnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.topnav a {
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.3s; white-space: nowrap;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.topnav a:hover, .topnav a.is-active { color: var(--ivory); }
.topnav a:hover::after, .topnav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.topnav .nav-cta {
  color: var(--night); background: linear-gradient(120deg, var(--gold), var(--gold-light));
  padding: 10px 20px; border-radius: 999px; font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}
.topnav .nav-cta::after { display: none; }
.topnav .nav-cta:hover { color: var(--night); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,106,0.35); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid transparent; cursor: pointer; padding: 12px; z-index: 130;
  border-radius: 50%; transition: border-color .3s, background .3s, transform .3s;
}
.burger span { width: 24px; height: 1.6px; background: var(--ivory); transition: transform 0.35s var(--ease-out), opacity 0.25s; }
.burger.is-open { border-color: rgba(202,166,107,.42); background: rgba(255,255,255,.035); transform: rotate(90deg); }
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background:
    radial-gradient(circle at 86% 18%, rgba(117,55,79,.24), transparent 36%),
    radial-gradient(circle at 8% 84%, rgba(183,136,71,.12), transparent 34%),
    #07080a;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.42s, visibility 0.42s;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu::before,
.mobile-menu::after {
  content: ""; position: fixed; pointer-events: none;
}
.mobile-menu::before {
  inset: 0; opacity: .17;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.08) 25%);
}
.mobile-menu::after {
  width: 58vw; aspect-ratio: 1; right: -24vw; top: 13vh;
  border: 1px solid rgba(202,166,107,.14); border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(202,166,107,.025), 0 0 0 88px rgba(202,166,107,.018);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  position: relative; z-index: 1; width: min(100%, 560px); min-height: 100svh;
  margin: 0 auto; padding: calc(var(--header-h) + 34px) 22px calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; align-items: stretch;
}
.mobile-menu-heading {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(202,166,107,.22);
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu-heading span { color: var(--gold-light); font-size: 10px; letter-spacing: .3em; font-weight: 700; }
.mobile-menu-heading small { color: rgba(244,238,227,.48); font-family: var(--serif); font-size: 13px; font-style: italic; }
.mobile-menu-nav { display: flex; flex-direction: column; margin-top: 7px; }
.mobile-menu-nav > a {
  display: grid; grid-template-columns: 32px 1fr 28px; align-items: center; gap: 8px;
  min-height: 67px; border-bottom: 1px solid rgba(244,238,227,.11);
  color: var(--ivory); opacity: 0; transform: translateY(12px);
  transition:
    opacity .48s var(--ease-out) calc((var(--i) + 1) * 50ms),
    transform .55s var(--ease-out) calc((var(--i) + 1) * 50ms),
    color .25s, padding-left .25s, border-color .25s;
}
.mobile-menu-index { color: rgba(202,166,107,.64); font: 600 9px/1 var(--sans); letter-spacing: .16em; }
.mobile-menu-label { font-family: var(--serif); font-size: clamp(25px, 7.1vw, 34px); line-height: 1; }
.mobile-menu-arrow {
  justify-self: end; color: var(--gold-light); font-size: 15px;
  opacity: .32; transition: opacity .25s;
}
.mobile-menu-nav > a:is(:hover,:focus-visible,.is-active) {
  color: var(--gold-light); border-color: rgba(202,166,107,.34);
}
.mobile-menu-nav > a:is(:hover,:focus-visible,.is-active) .mobile-menu-arrow { opacity: 1; }
.mobile-menu-action {
  margin-top: 22px; opacity: 0; transform: translateY(18px);
  transition: opacity .48s var(--ease-out) calc(var(--i) * 50ms), transform .55s var(--ease-out) calc(var(--i) * 50ms);
}
.mobile-menu-action p { margin: 0 0 10px; color: rgba(244,238,227,.54); font: italic 15px/1.4 var(--serif); }
.mobile-menu-cta {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--sans) !important; font-size: 13px !important;
  letter-spacing: 0.08em; font-weight: 700;
  color: var(--night) !important;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  padding: 15px 18px !important; border-radius: 4px;
}
.mobile-menu-cta > span:last-child {
  display: grid; place-items: center; width: 31px; aspect-ratio: 1; border-radius: 50%;
  background: rgba(33,23,28,.1); font-size: 15px; transition: transform .3s;
}
.mobile-menu-cta:is(:hover,:focus-visible) > span:last-child { transform: rotate(45deg); }
.mobile-menu-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 18px; font-size: 12px; color: var(--muted);
  opacity: 0; transform: translateY(16px);
  transition: opacity .48s var(--ease-out) calc(var(--i) * 50ms), transform .55s var(--ease-out) calc(var(--i) * 50ms);
}
.mobile-menu-foot-label { color: rgba(202,166,107,.55); font-size: 8px; letter-spacing: .22em; white-space: nowrap; }
.mobile-menu-foot > div { display: flex; align-items: center; justify-content: flex-end; gap: 13px; flex-wrap: wrap; }
.mobile-menu-foot a { color: rgba(244,238,227,.68); padding: 7px 0; border-bottom: 1px solid transparent; }
.mobile-menu-foot a:is(:hover,:focus-visible) { color: var(--gold-light); border-color: var(--gold); }
.mobile-menu-mark {
  position: absolute; right: 20px; bottom: -15px; z-index: -1;
  display: flex; align-items: center; gap: 12px;
  color: rgba(244,238,227,.025); font: 400 94px/1 var(--serif); letter-spacing: -.08em;
  pointer-events: none;
}
.mobile-menu-mark i { width: 38px; height: 1px; background: currentColor; transform: rotate(-58deg); }
.mobile-menu.is-open .mobile-menu-heading,
.mobile-menu.is-open .mobile-menu-nav > a,
.mobile-menu.is-open .mobile-menu-action,
.mobile-menu.is-open .mobile-menu-foot { opacity: 1; transform: none; }
body.scroll-locked { overflow: hidden; }
body.scroll-locked .topbar {
  z-index: 140;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.scroll-locked .topbar::after { display: none; }

/* ---------- Bantlar ---------- */
.band { position: relative; }
.band-dark { background: var(--night); color: var(--ivory); }
.band-deep { background: linear-gradient(180deg, var(--night), #0b1113 55%, var(--night)); color: var(--ivory); }
/* Açık bantların jeton bloğu. .band-stone da aynı jetonları alır — eskiden
   markup'ta "band-stone band-light" çift sınıfı yazılmak zorundaydı. */
.band-light, .band-stone {
  background: var(--paper); color: var(--ink);
  --line: var(--line-ink);
  --line-soft: rgba(64, 54, 32, 0.1);
  --muted: var(--ink-muted);
  --gold-light: var(--gold-deep);
}
.band-stone { background: var(--stone); }
.band-light ::selection, .band-stone ::selection { background: rgba(124, 100, 53, 0.25); }

.section {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(72px, 11vh, 130px) clamp(20px, 5vw, 48px);
}
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
:is(.band-light, .band-stone) .section-label { color: var(--gold-deep); }
.section-label::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s var(--ease-out) 0.15s;
}
.is-inview .section-label::before, .section-label.no-anim::before { transform: scaleX(1); }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 6vh, 64px); }
h1, h2, h3 { font-weight: 500; }
.section h2, .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px); line-height: 1.12;
}
.section h2 em, .page-hero h1 em { font-style: italic; color: var(--gold-light); }
:is(.band-light, .band-stone) .section h2 em { color: var(--gold-deep); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 15.5px; max-width: 560px; }

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out) var(--rd, 0ms), transform 0.85s var(--ease-out) var(--rd, 0ms);
}
.reveal.is-inview { opacity: 1; transform: none; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 14px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  cursor: pointer; border: 0; text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s, color 0.3s;
}
.btn-gold {
  color: var(--night);
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 26px rgba(201, 168, 106, 0.25);
  position: relative; overflow: hidden;
}
:is(.band-light, .band-stone) .btn-gold { background: linear-gradient(120deg, #b28e4e, #d9bc82); color: #171310; }
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.65s ease;
}
.btn-gold:hover::before { transform: translateX(130%); }
.btn-gold:hover { box-shadow: 0 14px 38px rgba(201,168,106,0.4); }
.btn-ghost { color: inherit; background: transparent; border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
:is(.band-light, .band-stone) .btn-ghost:hover { color: var(--gold-deep); }
.btn[disabled] { opacity: 0.6; cursor: wait; }
.btn-arr { transition: transform 0.3s; }
.btn:hover .btn-arr { transform: translate(3px, -3px); }

/* ---------- Hero ---------- */
/* Hero: iki sütun, SOL HİZALI.
   Eskiden beş blok ortalanmış eksende üst üste diziliyordu; farklı
   genişlikteki bloklar ortalanınca kenar tırtıklı görünüyordu. */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + var(--utility-h) + 48px) clamp(20px, 5vw, 48px) 96px;
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
  max-width: 100%;
  opacity: 1;
}
.eyebrow-line { flex: none; width: clamp(22px, 5vw, 48px); height: 1px; background: var(--line); }
.hero-title {
  margin-top: 22px;
  font-family: var(--serif);
  /* Sütun genişliği zaten sınırlıyor; ayrıca max-width vermek başlığı
     gereksiz yere beş satıra bölüyordu. */
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.1;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.09em; }
.hero-title .line.em { font-style: italic; color: var(--gold-light); }
.hero-title .w {
  display: inline-block;
  opacity: 1; transform: none;
}
@keyframes wordUp { to { opacity: 1; transform: none; } }
.hero-lead {
  margin-top: 22px; max-width: 46ch;
  color: var(--muted); font-size: clamp(15px, 2vw, var(--fs-lead));
  opacity: 1;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px;
  opacity: 1;
}
/* Güven maddeleri hero'nun içine taşındı — ayrı bir koyu şerit olarak
   durduğunda hero + şerit + marquee üst üste üç koyu bant oluyordu. */
.hero-trust {
  list-style: none; margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.15s forwards;
}
.hero-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: var(--fs-sm); color: var(--muted);
}
.hero-trust li::before {
  content: ""; flex: none; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); opacity: .75;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- Hero sahnesi (illüstrasyon) ---------- */
.hero-scene {
  position: relative;
  opacity: 1;
}
.hero-scene-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(160deg, rgba(201,168,106,0.07), rgba(8,11,13,0) 55%);
  overflow: hidden;
}
/* İnce iç çerçeve — mühür/kart hissi */
.hero-scene-frame::after {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid var(--line-soft); border-radius: 13px;
  pointer-events: none;
}
.hero-scene-art { width: 100%; height: auto; }
/* Asılı ışıklar — sahnenin üstünden sarkan iki nokta */
.hs-lamp {
  position: absolute; top: 0; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--line), transparent);
}
.hs-lamp::after {
  content: ""; position: absolute; left: 50%; bottom: -4px;
  width: 7px; height: 7px; margin-left: -3.5px;
  border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 16px 3px rgba(236, 216, 171, 0.4);
  animation: lampGlow 4.5s ease-in-out infinite;
}
.hs-lamp-a { left: 26%; height: 52px; }
.hs-lamp-b { left: 68%; height: 34px; }
.hs-lamp-b::after { animation-delay: -2.2s; width: 5px; height: 5px; margin-left: -2.5px; }
@keyframes lampGlow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.hero-scene figcaption {
  margin-top: 14px; text-align: center;
  font-size: 12px; letter-spacing: 0.04em; color: var(--muted); opacity: .8;
}

/* Kaydırma işareti */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: 22px; height: 34px;
  border: 1px solid var(--line); border-radius: 12px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

/* ---------- Güven şeridi ---------- */
.trust-strip {
  border-bottom: 1px solid var(--line-ink);
}
.trust-strip ul {
  width: min(1440px, calc(100% - clamp(32px, 8vw, 120px)));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.trust-strip li {
  min-height: 58px;
  padding: 6px clamp(14px, 2vw, 28px);
  border-left: 1px solid var(--line-ink);
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 13px;
}
.trust-strip li:first-child { border-left: 0; padding-left: 0; }
.trust-strip li span {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 18px;
}

/* ---------- Editoryal hizmet listesi ---------- */
.service-editorial-list {
  border-top: 1px solid var(--line-ink);
}
.service-editorial {
  --tone: var(--plum);
  display: grid;
  grid-template-columns: clamp(110px, 16vw, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  padding: clamp(22px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line-ink);
  color: var(--ink);
}
.service-editorial-art {
  position: relative;
  min-height: 120px;
  border-radius: 60px 60px 8px 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 26%, rgba(255,255,255,.38) 0 4%, transparent 5%),
    linear-gradient(145deg, color-mix(in srgb, var(--tone) 22%, var(--paper)), color-mix(in srgb, var(--tone) 55%, var(--night)));
}
.service-editorial-art::before,
.service-editorial-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50% 50% 8px 8px;
}
.service-editorial-art::before { inset: 15px 18px -20px; }
.service-editorial-art::after { inset: 34px 38px -28px; opacity: .55; }
.service-editorial-art span {
  position: absolute;
  left: 18px;
  bottom: 13px;
  z-index: 1;
  color: white;
  font: 500 19px/1 var(--serif);
}
.service-editorial-copy { max-width: 620px; }
.service-no {
  color: var(--gold-deep);
  letter-spacing: .2em;
  font-size: 10px;
}
.service-editorial h3 {
  margin: 3px 0 5px;
  font: 500 clamp(30px, 3.5vw, 48px)/1.05 var(--serif);
}
.service-editorial-copy p { color: var(--ink-muted); margin-bottom: 7px; }
.service-editorial-copy small {
  display: block;
  color: var(--ink-muted);
  font-size: 12.5px;
}
.service-editorial-copy small strong { color: var(--ink); font-weight: 600; }
.service-editorial-link {
  min-width: 160px;
  min-height: 48px;
  padding: 12px 0 12px 18px;
  border-left: 1px solid var(--line-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
}
.service-editorial-link:hover span { transform: translate(3px, -3px); }
.service-editorial-link span { transition: transform .25s var(--ease-out); }

/* ---------- Ana sayfa gerçek proje yerleşimi ---------- */
.home-projects[hidden] { display: none !important; }
.home-project-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-rows: minmax(230px, 34vw);
  gap: 18px;
  margin-bottom: 26px;
}
.home-project {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  color: white;
  background: var(--night-soft);
}
.home-project:nth-child(3n) { grid-column: 1 / -1; min-height: 360px; }
.home-project img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.home-project:hover img { transform: scale(1.025); }
.home-project-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 24px 22px;
  background: linear-gradient(transparent, rgba(9,15,29,.9));
}
.home-project-copy small { letter-spacing: .16em; text-transform: uppercase; font-size: 10px; }
.home-project-copy h3 { font: 500 clamp(24px, 3vw, 38px)/1.1 var(--serif); margin-top: 4px; }

/* ---------- Doğrulanmış yorumlar ---------- */
.reviews-section[hidden] { display: none !important; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-item {
  min-height: 240px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-ink);
  background: rgba(255,255,255,.32);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
}
.review-item blockquote {
  font: 500 clamp(22px, 2.2vw, 30px)/1.3 var(--serif);
}
.review-item figcaption { margin-top: 28px; }
.review-item figcaption strong,
.review-item figcaption span { display: block; }
.review-item figcaption span { margin-top: 3px; color: var(--ink-muted); font-size: 12px; }
.review-item figcaption a { text-decoration: underline; text-underline-offset: 3px; }
.project-scope {
  max-width: 680px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.project-scope h2 { font-size: clamp(24px, 3vw, 34px); }
.project-scope ul { list-style: none; margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.project-scope li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.hero-scroll span {
  position: absolute; left: 50%; top: 7px; margin-left: -1.5px;
  width: 3px; height: 6px; border-radius: 2px; background: var(--gold);
  animation: scrollDot 2s var(--ease-out) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Tarih sorgu şeridi (hero'dan taşındı) ---------- */
.date-strip {
  background: var(--night-deep);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  position: relative; z-index: 2;
}
.date-strip-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 30px clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: center;
}
.date-strip-copy p {
  margin-top: 8px; color: var(--muted); font-size: var(--fs-base); max-width: 40ch;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marqueeMove 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: clamp(18px, 2.6vw, 24px); font-style: italic; color: var(--muted); white-space: nowrap; }
/* Şeritte 16 kez tekrar eden ayırıcı; altın kalınca bant altın lekesine
   dönüşüyordu. Ayırıcı görevini görecek kadar soluk bırakıldı. */
.marquee-track i { color: var(--line); font-size: 11px; font-style: normal; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Hizmet kartları ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: #fbf8f1;
  border: 1px solid var(--line-ink); border-radius: 18px;
  padding: 26px 22px 22px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}
.band-dark .card, .band-deep .card {
  background: linear-gradient(165deg, rgba(20,26,28,0.85), rgba(10,14,15,0.9));
  border-color: var(--line-soft);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(26, 22, 12, 0.14); border-color: rgba(124,100,53,0.4); }
.band-dark .card:hover { box-shadow: 0 22px 52px rgba(0,0,0,0.45); border-color: var(--line); }
/* opacity .6 ile 2.73:1 kalıyordu (AA altı); tam opaklıkta 5.2:1 */
.card-no { position: absolute; top: 16px; right: 18px; font-family: var(--serif); font-size: 14px; color: var(--muted); }
.card-art {
  width: 68px; height: 68px; margin-bottom: 18px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--tone, var(--gold-deep));
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.card-art svg { width: 38px; height: 38px; }
.card:hover .card-art { transform: translateY(-3px) rotate(-4deg); box-shadow: 0 8px 24px rgba(124,100,53,0.18); }
.tone-1 { --tone: #8b6a3d; }
.tone-2 { --tone: #8a5066; }
.tone-3 { --tone: #9a5d4c; }
.tone-4 { --tone: #675463; }
.band-dark .tone-1 { --tone: var(--gold-light); }
.band-dark .tone-2 { --tone: #d5b3bf; }
.band-dark .tone-3 { --tone: #dfb49f; }
.band-dark .tone-4 { --tone: #cbbbc8; }
.card h3 { font-family: var(--serif); font-size: 23px; margin-bottom: 7px; }
.card > p { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; padding: 6px 0; min-height: 34px;
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep);
  transition: gap 0.3s, color 0.3s;
}
.band-dark .card-link { color: var(--gold); }
.card-link:hover { gap: 11px; color: var(--ink); }
.band-dark .card-link:hover { color: var(--gold-light); }

/* ---------- Konsept DNA bölümü ---------- */
.dna-section { overflow: hidden; }
/* ---------- Mekânımız bölümü ---------- */
.venue-section { background: var(--night-deep); }
.venue-wrap {
  display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.venue-copy p { color: var(--muted); font-size: var(--fs-lead); margin-top: 16px; max-width: 46ch; }
.venue-points { list-style: none; margin: 24px 0 30px; }
.venue-points li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
  font-size: var(--fs-base); color: var(--muted);
}
.venue-points li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 12px; height: 1px; background: var(--gold); opacity: .7;
}
.venue-art {
  border: 1px solid var(--line-soft); border-radius: 22px;
  background: linear-gradient(165deg, rgba(20,26,28,0.8), rgba(10,14,15,0.9));
  padding: clamp(20px, 3vw, 32px);
}
.venue-scene { width: 100%; height: auto; }
/* /mekan/ sayfasındaki dürüst boş durum */
.venue-empty {
  max-width: 660px; margin: 0 auto; text-align: center;
  border: 1px dashed var(--line); border-radius: 22px;
  padding: clamp(28px, 5vw, 44px);
}
.venue-empty p { color: var(--muted); font-size: var(--fs-lead); }
/* İç sayfalardaki CTA çiftleri — hero'nun giriş animasyonuna girmezler.
   Daha önce her birinde aynı inline stil tekrarlanıyordu. */
.page-cta { opacity: 1; animation: none; margin-top: 30px; }
.page-cta.is-centered { justify-content: center; margin-top: 26px; }
.story-cta { margin-top: 8px; }

.dna-wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.dna-copy p { color: var(--muted); font-size: 15.5px; margin-top: 16px; max-width: 480px; }
.dna-copy .btn { margin-top: 30px; }
.dna-hint { margin-top: 14px; font-size: 12.5px; color: var(--muted); opacity: 0.8; }
.dna-preview {
  position: relative;
  border: 1px solid var(--line-soft); border-radius: 22px;
  background: linear-gradient(165deg, rgba(20,26,28,0.8), rgba(10,14,15,0.9));
  padding: 28px;
}
.dna-preview-title { font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.dna-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.dna-chips span {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.dna-swatches { display: flex; gap: 8px; margin-top: 20px; }
.dna-swatches i {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--sw);
}

/* ---------- DNA sihirbazı (modal / bottom sheet) ---------- */
.wizard-overlay {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(4, 6, 7, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.wizard-overlay.is-open { display: flex; }
.wizard {
  width: min(680px, 100%);
  max-height: min(86svh, 780px);
  display: flex; flex-direction: column;
  background: #0d1315; color: var(--ivory);
  border: 1px solid var(--line-soft); border-radius: 24px;
  overflow: hidden;
  animation: wizardIn 0.4s var(--ease-out);
}
@keyframes wizardIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.wizard-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--line-soft);
}
.wizard-head strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.wizard-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: none; border: 1px solid var(--line-soft); color: var(--ivory);
  font-size: 18px; cursor: pointer; transition: border-color 0.3s;
}
.wizard-close:hover { border-color: var(--gold); }
.wizard-progress { height: 2px; background: var(--line-soft); }
.wizard-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 0; transition: width 0.4s var(--ease-out); }
.wizard-body { flex: 1; overflow-y: auto; padding: 26px 24px; -webkit-overflow-scrolling: touch; }
.wizard-step-label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.wizard-q { font-family: var(--serif); font-size: clamp(22px, 3.4vw, 28px); margin-bottom: 20px; }
.wizard-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wizard-opt {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  text-align: left;
  min-height: 64px; padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft); border-radius: 16px;
  color: var(--ivory); font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.wizard-opt small { font-weight: 400; font-size: 12.5px; color: var(--muted); }
.wizard-opt:hover { border-color: var(--line); }
.wizard-opt.is-selected {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.1);
  box-shadow: 0 0 0 1px var(--gold);
}
.wizard-opt .pal { display: flex; gap: 6px; margin-top: 2px; }
.wizard-opt .pal i {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: var(--sw);
}
.wizard-fields { display: grid; gap: 14px; }
.wizard-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-soft);
}
.wizard-back {
  background: none; border: 0; color: var(--muted); font-size: 14px;
  cursor: pointer; padding: 12px 14px; min-height: 44px;
  transition: color 0.3s;
}
.wizard-back:hover { color: var(--ivory); }
.wizard-back[hidden] { visibility: hidden; display: inline-block; }

/* DNA sonuç */
.dna-result { text-align: center; padding: 8px 2px 4px; }
.dna-result-kicker { font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); }
.dna-result-name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(30px, 5vw, 42px); color: var(--gold-light);
  margin: 12px 0 4px;
  animation: fadeUp 0.6s var(--ease-out);
}
.dna-result-pal { display: flex; justify-content: center; gap: 10px; margin: 20px 0; }
.dna-result-pal i {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--sw);
  animation: fadeUp 0.5s var(--ease-out) both;
}
.dna-result-pal i:nth-child(2) { animation-delay: 0.08s; }
.dna-result-pal i:nth-child(3) { animation-delay: 0.16s; }
.dna-result-pal i:nth-child(4) { animation-delay: 0.24s; }
.dna-touches { list-style: none; margin: 18px auto 8px; max-width: 420px; text-align: left; }
.dna-touches li {
  display: flex; gap: 10px; align-items: baseline;
  padding: 8px 0; font-size: 14.5px; color: var(--ivory);
  border-bottom: 1px dashed var(--line-soft);
}
.dna-touches li::before { content: "✦"; color: var(--gold); font-size: 11px; flex: none; }
.dna-disclaimer { font-size: 12.5px; color: var(--muted); max-width: 420px; margin: 14px auto 20px; }
.dna-result-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; max-width: 380px; margin: 0 auto; }

/* ---------- Süreç (5 adım) ---------- */
.process-list { list-style: none; position: relative; max-width: 760px; }
.process-list::before {
  content: ""; position: absolute; left: 26px; top: 10px; bottom: 10px; width: 1px;
  background: var(--line);
}
.process-list li {
  position: relative;
  display: grid; grid-template-columns: 54px 1fr; gap: 22px;
  padding: 0 0 38px;
}
.process-list li:last-child { padding-bottom: 0; }
.step-no {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper);
  font-family: var(--serif); font-size: 17px; color: var(--gold-deep);
  position: relative; z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.band-dark .step-no { background: var(--night); color: var(--gold-light); }
.process-list li:hover .step-no { border-color: var(--gold); box-shadow: 0 0 24px rgba(201,168,106,0.2); }
.process-list h3 { font-family: var(--serif); font-size: 22px; margin: 12px 0 6px; }
.process-list p { font-size: 14.5px; color: var(--muted); max-width: 520px; }

/* ---------- Neden / ilkeler ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-item {
  border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.35);
}
.band-dark .why-item { background: rgba(255,255,255,0.02); }
.why-item i { color: var(--gold-deep); font-style: normal; font-size: 13px; }
.band-dark .why-item i { color: var(--gold); }
.why-item h3 { font-family: var(--serif); font-size: 20px; margin: 10px 0 6px; }
.why-item p { font-size: 13.5px; color: var(--muted); }

/* ---------- Hakkımızda / hikâye ---------- */
.story { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 6vw, 76px); align-items: start; }
.story-quote { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); line-height: 1.25; margin-top: 6px; }
.story-quote em { color: var(--gold-light); }
.story-body h2 { margin-bottom: 20px; }
.story-body p { color: var(--muted); font-size: 15.5px; max-width: 540px; margin-bottom: 13px; }
.story-seal { grid-column: 1 / -1; justify-self: center; position: relative; width: 124px; height: 124px; display: grid; place-items: center; margin-top: 8px; }
.story-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 24s linear infinite; }
.story-seal svg text { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.3em; fill: var(--muted); }
.story-seal > span {
  font-family: var(--serif); font-size: 24px; color: var(--gold-light);
  border: 1px solid var(--line); border-radius: 50%;
  width: 60px; height: 60px; display: grid; place-items: center;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }

/* ---------- Portfolyo ---------- */
.pf-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.pf-filter {
  padding: 10px 18px; min-height: 44px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: none;
  color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.pf-filter:hover { color: inherit; border-color: var(--line); }
.pf-filter.is-active { color: var(--night); background: linear-gradient(120deg, var(--gold), var(--gold-light)); border-color: transparent; }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.02);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.pf-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(0,0,0,0.4); }
.pf-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pf-card-meta { padding: 16px 18px 18px; }
.pf-card-meta small { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.pf-card-meta h3 { font-family: var(--serif); font-size: 21px; margin: 6px 0 4px; }
.pf-card-meta p { font-size: 13px; color: var(--muted); }
.pf-empty {
  border: 1px dashed var(--line); border-radius: 20px;
  padding: clamp(36px, 6vw, 60px); text-align: center;
  max-width: 640px; margin: 0 auto;
}
.pf-empty h3 { font-family: var(--serif); font-size: clamp(22px, 3.4vw, 30px); margin-bottom: 12px; }
.pf-empty p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.pf-empty .btn { margin: 4px 6px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 170;
  background: rgba(4,6,7,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84svh; border-radius: 12px; }
.lightbox button {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(8,11,13,0.7);
  color: var(--ivory); font-size: 18px; cursor: pointer;
}
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- Teklif formu ---------- */
.booking { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.booking-copy p { color: var(--muted); font-size: 15.5px; margin-top: 16px; }
.booking-note {
  margin-top: 26px; padding: 18px 20px;
  border: 1px solid var(--line-soft); border-left: 2px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-size: 14px; color: var(--muted);
}
.booking-note small { display: block; font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.booking-note a { color: var(--gold-light); border-bottom: 1px solid var(--line); padding: 2px 0; }

.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  background: linear-gradient(165deg, rgba(20,26,28,0.7), rgba(10,14,15,0.85));
  border: 1px solid var(--line-soft); border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
}
.booking-form label:not(.check) { display: flex; flex-direction: column; gap: 8px; }
.booking-form label > span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ivory);
  background: rgba(8,11,13,0.6);
  border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 13px 15px; min-height: 50px;
  outline: none; width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none; appearance: none;
}
.booking-form select {
  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='%23c9a86a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(182,173,158,0.5); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,106,0.12);
}
.booking-form textarea { resize: vertical; min-height: 88px; }
.booking-form input[type="date"], .booking-form input[type="time"] { color-scheme: dark; }
.field.has-error input, .field.has-error select { border-color: rgba(214,106,94,0.7); }
.field-error { display: none; font-size: 12.5px; color: #e39387; }
.field.has-error .field-error { display: block; }
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--muted); cursor: pointer;
  padding: 4px 0;
}
.check input {
  width: 20px; height: 20px; min-height: 0; margin-top: 2px; flex: none;
  accent-color: var(--gold);
  -webkit-appearance: auto; appearance: auto;
}
.check a { color: var(--gold-light); border-bottom: 1px solid var(--line); }
.date-flex { display: flex; align-items: center; gap: 10px; }
.date-flex input[type="date"] { flex: 1; }
.wide { grid-column: 1 / -1; }
.form-submit { display: flex; flex-direction: column; gap: 12px; }
.form-submit .btn { width: 100%; }
.form-submit small { font-size: 12px; color: var(--muted); }
.form-status { display: none; border-radius: 14px; padding: 18px; font-size: 14.5px; line-height: 1.6; }
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(127,176,138,0.12); border: 1px solid rgba(127,176,138,0.4); color: #cfe7d4; }
.form-status.err { background: rgba(214,106,94,0.1); border: 1px solid rgba(214,106,94,0.4); color: #eec3bc; }
.form-status .btn { margin-top: 12px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- SSS ---------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-btn {
  display: flex; align-items: center; gap: 16px; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 22px 4px; min-height: 56px;
  font-family: var(--serif); font-size: clamp(17px, 2.4vw, 21px); font-weight: 500;
  color: inherit;
  transition: color 0.3s;
}
.faq-btn:hover { color: var(--gold-light); }
:is(.band-light, .band-stone) .faq-btn:hover { color: var(--gold-deep); }
.faq-btn > span:first-child { font-size: 12.5px; color: var(--gold); font-family: var(--sans); letter-spacing: 0.1em; flex: none; }
:is(.band-light, .band-stone) .faq-btn > span:first-child { color: var(--gold-deep); }
.faq-icon {
  margin-left: auto; flex: none;
  width: 30px; height: 30px; position: relative;
  border: 1px solid var(--line); border-radius: 50%;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.4px; background: var(--gold);
  transform: translate(-50%, -50%);
}
:is(.band-light, .band-stone) .faq-icon::before, :is(.band-light, .band-stone) .faq-icon::after { background: var(--gold-deep); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s var(--ease-out), opacity 0.35s; }
.faq-panel p { padding: 0 46px 24px 0; margin-left: 44px; color: var(--muted); font-size: 14.5px; max-width: 640px; }

/* ---------- Alt sayfalar ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 8vh, 90px)) clamp(20px, 5vw, 48px) clamp(44px, 7vh, 80px);
  max-width: 1180px; margin: 0 auto;
}
.page-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 22px;
}
.crumbs a { color: var(--gold); padding: 4px 0; }
.crumbs a:hover { color: var(--gold-light); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 18px; max-width: 580px; color: var(--muted); font-size: 16px; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 36px 0 12px; }
.prose h3 { font-family: var(--serif); font-size: 21px; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose .todo-note {
  border: 1px dashed var(--line); border-radius: 12px;
  padding: 14px 18px; font-size: 13.5px; color: var(--muted);
  margin: 18px 0;
}
/* Yasal metinlerin alt bilgisi (son güncelleme notu) */
.prose .legal-meta {
  margin-top: 34px; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
/* Yasal metinlerdeki veri kategorisi tablosu — dar ekranda yatay kayar */
.prose .legal-table { overflow-x: auto; margin: 14px 0 20px; }
.prose .legal-table table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: 14px; }
.prose .legal-table th, .prose .legal-table td {
  border: 1px solid var(--line-soft); padding: 10px 12px;
  text-align: left; vertical-align: top; color: var(--muted);
}
.prose .legal-table th { font-weight: 600; color: var(--ink); background: rgba(0,0,0,.02); }

.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.scope-box { border: 1px solid var(--line-soft); border-radius: 16px; padding: 22px; }
.scope-box h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 12px; }
.scope-box ul { list-style: none; }
.scope-box li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--muted); padding: 6px 0; }
.scope-box li::before { content: "✦"; color: var(--gold); font-size: 10px; flex: none; }
:is(.band-light, .band-stone) .scope-box li::before { color: var(--gold-deep); }

.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin: 0 auto 14px; }
.cta-band p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; }
.cta-band .btn { margin: 4px 6px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); }

/* Kapanış daveti */
.footer-invite { background: var(--night-deep); border-bottom: 1px solid var(--line-soft); }
.footer-invite-inner {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(40px, 6vh, 64px) clamp(20px, 5vw, 48px);
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  align-items: center; justify-content: space-between;
}
.footer-invite-line {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2; color: var(--ivory);
}
.footer-invite-line em { font-style: italic; color: var(--gold-light); }
.footer-invite-act { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-invite-tel {
  font-family: var(--serif); font-size: 20px; color: var(--muted);
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.footer-invite-tel:hover { color: var(--gold-light); border-color: var(--gold); }

.footer-inner {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(48px, 8vh, 76px) clamp(20px, 5vw, 48px) 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 19px; margin-bottom: 16px; }
.footer-col p { color: var(--muted); font-size: var(--fs-sm); max-width: 30ch; }
.footer-col h3 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--muted); font-size: var(--fs-sm); transition: color 0.3s; padding: 3px 0; }
.footer-col a:hover { color: var(--gold-light); }
.footer-note { margin-top: 16px; color: var(--muted); font-size: 12.5px; opacity: .75; }
/* Marka sütunundaki iletişim satırı — boş config'te doldurucu gizlenir */
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.footer-social > span:empty { display: none; }
.footer-social a { color: var(--muted); font-size: var(--fs-sm); border-bottom: 1px solid var(--line-soft); }
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); }

.footer-base {
  border-top: 1px solid var(--line-soft);
  padding: 20px clamp(20px, 5vw, 48px) calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto;
  /* Eskiden rgba(182,173,158,.6) idi -> gece zemininde 3.8:1, WCAG AA altı. */
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: inherit; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- WhatsApp FAB + mobil CTA ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-light);
  background: linear-gradient(145deg, var(--wine-soft), var(--plum));
  border: 1px solid rgba(234,213,167,.32);
  box-shadow: 0 12px 30px rgba(52,23,38,0.42);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, opacity 0.3s;
}
.wa-fab::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(202,166,107,.42);
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse { from { transform: scale(0.9); opacity: 1; } to { transform: scale(1.45); opacity: 0; } }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.wa-fab.is-tucked { transform: scale(0.4); opacity: 0; pointer-events: none; }

.mobile-bar {
  display: none;
  position: fixed; left: 14px; right: 88px; bottom: calc(14px + env(safe-area-inset-bottom)); z-index: 90;
  padding: 15px 20px; border-radius: 999px; min-height: 50px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--night); font-weight: 700; font-size: 14.5px; letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.5);
  transform: translateY(130px);
  transition: transform 0.45s var(--ease-out);
}
.mobile-bar.is-visible { transform: none; }

/* ---------- Çerez izni ---------- */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 180;
  max-width: 460px; margin: 0 auto;
  background: #0d1315; border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 20px;
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.consent.is-visible { display: block; }
.consent p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.consent p a { color: var(--gold-light); border-bottom: 1px solid var(--line); }
.consent-actions { display: flex; gap: 10px; }
.consent-actions .btn { flex: 1; min-height: 44px; padding: 10px 14px; font-size: 13px; }

/* ---------- Tarih uygunluk sorgusu (kendi şeridinde) ---------- */
.date-check {
  width: 100%; max-width: 440px;
  border: 1px solid var(--line-soft); border-radius: 18px;
  background: rgba(14, 20, 22, 0.55);
  padding: 16px 18px;
}
.date-check-label {
  display: block; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px; text-align: left;
}
.date-check-row { display: flex; gap: 10px; }
.date-check-row input {
  flex: 1; min-width: 0; min-height: 48px;
  font-family: var(--sans); font-size: 16px; color: var(--ivory);
  background: rgba(8, 11, 13, 0.6);
  border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 10px 14px; outline: none;
  color-scheme: dark;
  transition: border-color 0.3s;
}
.date-check-row input:focus { border-color: var(--gold); }
.date-check-row .btn { min-height: 48px; padding: 10px 22px; }
.date-check-result {
  display: none; margin-top: 14px; text-align: left;
  font-size: 14px; line-height: 1.5;
}
.date-check-result.is-open { display: block; animation: fadeUp 0.4s var(--ease-out); }
.date-check-result .dc-free { color: #cfe7d4; display: block; }
.date-check-result .dc-busy { color: #eec3bc; display: block; }
.date-check-result .btn { margin-top: 12px; width: 100%; }
.field-note { display: block; font-size: 12.5px; color: #cfe7d4; margin-top: 6px; }
.field-note.is-busy { color: #eec3bc; }

/* ---------- Atmosfer sahnesi ---------- */
.atmos-scene {
  /* varsayılan: Zümrüt & Altın */
  --sc1: #12352b; --sc2: #1e4d3d; --sc3: #c9a86a; --sc4: #f0e8d5;
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.14));
}
.atmos-scene .f1 { fill: var(--sc1); transition: fill 0.9s ease; }
.atmos-scene .f2 { fill: var(--sc2); transition: fill 0.9s ease; }
.atmos-scene .f3 { fill: var(--sc3); transition: fill 0.9s ease; }
.atmos-scene .f4 { fill: var(--sc4); transition: fill 0.9s ease; }
.atmos-scene .s1 { stroke: var(--sc1); transition: stroke 0.9s ease; }
.atmos-scene .s2 { stroke: var(--sc2); transition: stroke 0.9s ease; }
.atmos-scene .s3 { stroke: var(--sc3); transition: stroke 0.9s ease; }
.atmos-scene .s4 { stroke: var(--sc4); transition: stroke 0.9s ease; }
.dna-preview-name {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--gold-light);
  margin-top: 16px;
  transition: opacity 0.35s ease;
}
.wizard-scene { margin-bottom: 18px; }
.wizard-scene .atmos-scene { max-height: 190px; }
.dna-result-scene { max-width: 380px; margin: 6px auto 2px; }

/* ---------- DNA kodu + konfeti ---------- */
.dna-code {
  display: inline-block;
  margin-top: 16px; padding: 10px 26px;
  border: 1px solid var(--gold); border-radius: 999px;
  font-family: var(--serif); font-size: 19px; letter-spacing: 0.14em;
  color: var(--gold-light);
}
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dna-result { position: relative; }
.confetti i {
  position: absolute; top: -8%; left: var(--cx);
  font-style: normal; font-size: calc(13px * var(--cs));
  color: var(--gold-light);
  animation: confFall 1.6s ease-in var(--cd) forwards;
  opacity: 0;
}
@keyframes confFall {
  0% { opacity: 0; transform: translateY(0) rotate(0); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateY(340px) rotate(160deg); }
}

/* ---------- WhatsApp mesaj önizlemesi ---------- */
.wa-preview { margin-top: 26px; }
.wa-phone {
  border: 1px solid var(--line-soft); border-radius: 20px;
  overflow: hidden;
  background: #0b1012;
}
.wa-phone-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(18, 140, 70, 0.12);
  border-bottom: 1px solid var(--line-soft);
}
.wa-phone-head strong { display: block; font-size: 13.5px; }
.wa-phone-head small { display: block; font-size: 11px; color: #7fb08a; }
.wa-phone-body {
  padding: 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,168,106,0.03), transparent 60%),
    #0d1315;
  min-height: 90px; max-height: 300px; overflow-y: auto;
}
.wa-bubble {
  background: #17342a;
  border-radius: 12px 12px 12px 3px;
  padding: 12px 14px;
  font-size: 13px; line-height: 1.55; color: #e8f2ea;
  white-space: pre-line;
  max-width: 95%;
  border: 1px solid rgba(127, 176, 138, 0.15);
}
.wa-bubble:not(.is-live) { color: #92a89a; font-style: italic; }
.wa-preview-note { display: block; margin-top: 10px; font-size: 12px; color: var(--muted); }

/* ---------- Rehber kartları ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card {
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--line-ink); border-radius: 18px;
  background: #fbf8f1;
  padding: 0;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}
.guide-card-photo { height: 250px; overflow: hidden; }
.guide-card-photo img { transition: transform .8s var(--ease-out),filter .5s; }
.guide-card:hover .guide-card-photo img { transform: scale(1.055); filter: saturate(.84) contrast(1.04); }
.guide-card-body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex: 1; min-width: 0; }
.guide-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(26, 22, 12, 0.14); border-color: rgba(124, 100, 53, 0.4); }
.guide-card h2 { font-family: var(--serif); font-size: 22px; line-height: 1.25; font-weight: 500; }
.guide-card p { font-size: 13.5px; color: var(--muted); flex: 1; }
.guide-card .card-link { color: var(--gold-deep); }
.guide-card:hover .card-link { gap: 11px; }

/* ---------- Kart üst ton şeridi (cila) ---------- */
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--tone), transparent);
  opacity: 0.5; transition: opacity 0.4s;
}
.card:hover::after { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .topnav a:not(.nav-cta) { display: none; }
  .burger { display: flex; }
  /* Hero tek sütuna iner. .hero-copy'yi "contents" yaparak çocukları doğrudan
     grid öğesi olur; böylece sahneyi CTA'nın ÜSTÜNE alabiliyoruz — buton
     ekranın altında, başparmak erişiminde kalsın diye. */
  .hero-grid { grid-template-columns: 1fr; gap: 26px; max-width: 620px; }
  .hero-copy { display: contents; }
  .eyebrow { order: 1; }
  .hero-title { order: 2; max-width: 100%; margin-top: 0; }
  .hero-lead { order: 3; margin-top: 0; }
  .hero-scene { order: 4; }
  .hero-cta { order: 5; margin-top: 0; }
  .hero-trust { order: 6; margin-top: 0; }
  .hero-scroll { display: none; }
  .date-strip-inner { grid-template-columns: 1fr; }
  .date-check { max-width: 100%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip ul { grid-template-columns: repeat(2, 1fr); }
  .trust-strip li:nth-child(3) { border-left: 0; padding-left: 0; }
  .guide-grid { grid-template-columns: 1fr; max-width: 560px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; max-width: 560px; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .dna-wrap { grid-template-columns: 1fr; }
  .venue-wrap { grid-template-columns: 1fr; }
  .venue-art { max-width: 520px; }
  .story { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-invite-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  /* Utility şeridi telefonda yer kaplamasın — aynı bağlantılar mobil menüde
     ve alt CTA çubuğunda zaten var. */
  .topbar-utility { display: none; }
  :root { --utility-h: 0px; }
}
@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }
  .topnav .nav-cta { display: none; }
  .mobile-bar { display: block; }
  .wa-fab { right: 16px; bottom: calc(12px + env(safe-area-inset-bottom)); }
  .hero { min-height: 88svh; }
  .hero-cta { width: 100%; max-width: 380px; }
  .hero-cta .btn { width: 100%; }
  /* Sahne telefonda küçülür; yoksa CTA ilk ekranın çok altına düşüyor. */
  .hero-scene { max-width: 300px; }
  .hero-scene-frame { padding: 14px; border-radius: 16px; }
  .hs-lamp { display: none; }
  .hero-scene figcaption { margin-top: 10px; font-size: 11.5px; }

  /* Performans: telefonda ağır efektleri kapat/azalt */
  .orb { display: none; }
  .topbar.is-scrolled {
    background: rgba(8, 11, 13, 0.94);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .mobile-menu {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    overscroll-behavior: contain;
  }
  .reveal {
    transform: translateY(14px);
    transition-duration: 0.55s, 0.55s;
    transition-delay: 0ms, 0ms; /* mobilde kademeli gecikme yok — içerik hemen gelir */
  }
  .wizard-body { overscroll-behavior: contain; }
  .eyebrow { letter-spacing: 0.22em; gap: 10px; }
  .eyebrow-line { width: 18px; }
  .marquee-track { animation-duration: 26s; }
  .date-check { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(14, 20, 22, 0.85); }
  .wa-phone-body { max-height: 220px; }
  .dna-result-scene { max-width: 320px; }
  .wizard-overlay { padding: 0; align-items: flex-end; }
  .wizard { width: 100%; max-height: 92svh; border-radius: 22px 22px 0 0; border-bottom: 0; }
  .wizard-opts { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .faq-panel p { margin-left: 0; padding-right: 8px; }
  .footer { padding-bottom: 84px; }
  .booking-form { grid-template-columns: 1fr; }
  .service-editorial {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }
  .service-editorial-art { min-height: 104px; }
  .service-editorial-link {
    grid-column: 2;
    width: fit-content;
    min-width: 0;
    padding: 6px 0;
    border-left: 0;
  }
  .home-project-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .home-project:nth-child(3n) { grid-column: auto; min-height: 300px; }
  .process-list::before { left: 22px; }
  .step-no { width: 46px; height: 46px; font-size: 15px; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .trust-strip ul { grid-template-columns: 1fr; }
  .trust-strip li,
  .trust-strip li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-ink); padding: 14px 0; }
  .trust-strip li:first-child { border-top: 0; }
  .service-editorial { grid-template-columns: 72px minmax(0, 1fr); }
  .service-editorial-art { min-height: 92px; }
  .service-editorial-copy small { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- 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; }
  .curtain { display: none; }
  .reveal, .hero-title .w, .eyebrow, .hero-lead, .hero-cta, .date-check { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .stars, .orb { display: none; }
  .confetti { display: none; }
  .atmos-scene * { transition: none !important; }
}

/* ============================================================
   ANA SAYFA — “MASALA AÇILAN KAPI” İMZA SİSTEMİ
   Fotoğraf gelene kadar yalnızca açıkça illüstratif konsept sahnesi kullanılır.
   ============================================================ */
.portal {
  overflow: hidden;
  border-radius: 50% 50% 2px 2px / 34% 34% 2px 2px;
  border: 1px solid rgba(236,216,171,.4);
  background: #101b2b;
}
.portal .atmos-scene { width: 100%; height: 100%; object-fit: cover; }

.portal-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: calc(var(--header-h) + var(--utility-h) + 5vh) clamp(22px,6vw,112px) clamp(64px,8vh,96px);
  overflow: hidden;
  background: #0b1220;
}
.portal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,rgba(5,10,20,.98) 0%,rgba(5,10,20,.86) 42%,rgba(5,10,20,.18) 76%,rgba(5,10,20,.5) 100%);
}
.portal-hero-stage { position: absolute; inset: 0; z-index: -2; }
.portal-hero-portal {
  position: absolute;
  width: min(48vw,790px);
  height: 86svh;
  right: 6vw;
  bottom: -2px;
  background: #17263a;
  box-shadow: 0 0 90px rgba(95,24,54,.24);
  animation: portalReveal .78s var(--ease-out) both;
}
.portal-hero-portal .atmos-scene {
  transform: scale(1.58);
  transform-origin: 52% 73%;
  filter: saturate(.76) contrast(1.06);
}
@keyframes portalReveal { from { clip-path: inset(100% 0 0); transform: translateY(4%); } to { clip-path: inset(0); transform: none; } }
.portal-line { position: absolute; border: 1px solid rgba(224,197,145,.22); border-bottom: 0; border-radius: 50% 50% 0 0 / 28% 28% 0 0; }
.portal-line-a { width: min(55vw,900px); height: 94svh; right: 2.5vw; bottom: 0; }
.portal-line-b { width: min(62vw,1010px); height: 101svh; right: -1vw; bottom: 0; opacity: .45; }
.portal-monogram {
  position: absolute; right: -1vw; bottom: -15vh;
  color: rgba(244,238,225,.035);
  font: 500 min(62vw,960px)/.7 var(--serif);
}
.portal-hero .hero-grid {
  width: min(100%,1480px);
  margin: 0 auto;
  display: block;
  padding: 0;
}
.portal-hero .hero-copy { max-width: min(750px,58vw); padding: 0; }
.portal-hero .hero-title { font-size: clamp(58px,7.35vw,130px); line-height: .83; letter-spacing: -.055em; }
.portal-hero .hero-title .line { white-space: nowrap; }
.portal-hero .hero-title .em { margin-left: clamp(16px,5vw,90px); color: var(--gold-light); }
.portal-hero .hero-title .w { animation-duration: .72s; }
.portal-hero .hero-lead {
  max-width: 610px;
  margin: clamp(24px,4vh,42px) 0 0 clamp(16px,5vw,90px);
  color: #e6dfd2;
  font-size: clamp(16px,1.25vw,19px);
}
.portal-hero .hero-cta { margin-left: clamp(16px,5vw,90px); }
.hero-caption {
  position: absolute; left: clamp(22px,6vw,112px); bottom: 24px;
  color: rgba(244,238,225,.62); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.portal-hero .hero-scroll { right: clamp(22px,4vw,72px); left: auto; }

.story-scene { background: var(--paper); color: var(--ink); padding: clamp(90px,12vw,180px) 0; }
.story-heading { display: grid; grid-template-columns: .7fr 1.3fr; align-items: end; margin-bottom: 58px; }
.story-heading h2 { font: 500 clamp(44px,6vw,92px)/.92 var(--serif); letter-spacing: -.04em; }
.story-heading em { color: var(--plum); font-weight: 500; }
.text-link { display: inline-flex; gap: 16px; padding: 16px 0; margin-top: 38px; border-bottom: 1px solid currentColor; font-weight: 650; }

.dna-studio {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px,.86fr) minmax(480px,1.14fr);
  background: var(--ivory);
  color: var(--ink);
}
.dna-studio-copy {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(76px,9vw,150px) clamp(30px,6vw,110px);
}
.dna-studio h2,.service-stage h2,.process-diary h2,.closing-scene h2,.venue-film h2 {
  font: 500 clamp(46px,5.6vw,92px)/.91 var(--serif);
  letter-spacing: -.045em;
}
.dna-studio h2 em,.service-stage h2 em,.process-diary h2 em,.closing-scene h2 em,.venue-film h2 em { color: var(--plum); font-weight: 500; }
.dna-studio-copy > p { max-width: 600px; margin: 26px 0; font-size: var(--fs-lead); color: var(--ink-muted); }
.dna-studio .section-label,.service-stage .section-label,.process-diary .section-label { color: var(--gold-deep); }
.dna-chapters {
  display: flex; flex-wrap: wrap; gap: 7px 19px; max-width: 560px;
  margin: 5px 0 34px; counter-reset: dna;
}
.dna-chapters span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.dna-chapters span::before { counter-increment: dna; content: "0" counter(dna) " "; color: var(--gold-deep); }
.dna-studio-board {
  position: relative; min-height: 100svh; overflow: hidden;
  background: #101827; color: var(--ivory);
  padding: clamp(30px,4vw,68px);
}
.dna-studio-board::before {
  content: ""; position: absolute; inset: 6% 7%;
  border: 1px solid rgba(224,197,145,.16); pointer-events: none;
}
.dna-preview-scene {
  width: min(72%,650px); height: 72%;
  position: absolute; left: 50%; top: 9%; transform: translateX(-50%);
}
.dna-preview-scene .atmos-scene { transform: scale(1.3); transform-origin: 50% 75%; }
.dna-board-note { position: relative; z-index: 2; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-light); }
.dna-board-type {
  position: absolute; left: 8%; bottom: 15%;
  z-index: 2; max-width: 78%;
  font: italic 500 clamp(35px,4.2vw,72px)/.95 var(--serif);
  color: var(--gold-light); transition: opacity .3s;
}
.dna-studio-board > p { position: absolute; right: 6%; bottom: 5%; text-align: right; color: var(--muted); font-size: 12px; }
.dna-studio-board .dna-result-pal { position: absolute; left: 8%; bottom: 7%; }

.service-stage {
  min-height: 100svh;
  display: grid; grid-template-columns: 53% 47%;
  background: var(--paper); color: var(--ink);
}
.service-stage-index { padding: clamp(78px,8vw,130px) clamp(26px,6vw,96px); }
.service-stage-heading { margin-bottom: 44px; }
.service-stage h2 { font-size: clamp(42px,4.8vw,78px); }
.service-index-list { border-top: 1px solid var(--line-ink); }
.service-index-list a {
  min-height: 64px; display: grid; grid-template-columns: 52px 1fr 24px;
  align-items: center; border-bottom: 1px solid var(--line-ink);
  transition: padding .35s var(--ease-out),color .3s;
}
.service-index-list a span { color: var(--gold-deep); font: 12px var(--sans); }
.service-index-list a strong { font: 500 clamp(24px,2.2vw,38px)/1 var(--serif); }
.service-index-list a i { font-style: normal; opacity: 0; transform: translate(-8px,8px); transition: .3s; }
.service-index-list a:is(:hover,:focus-visible,.is-active) { color: var(--plum); padding-left: 14px; }
.service-index-list a:is(:hover,:focus-visible,.is-active) i { opacity: 1; transform: none; }
.service-stage-visual {
  --service-hue: 0;
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  background: hsl(calc(218 + var(--service-hue)) 32% 12%);
  color: var(--ivory); transition: background-color .5s;
}
.service-stage-visual::before { content: ""; position: absolute; inset: 5%; border: 1px solid var(--line); }
.service-portal { position: absolute; width: 70%; height: 78%; left: 15%; bottom: 0; }
.service-portal .atmos-scene { transform: scale(1.45); transform-origin: center bottom; filter: hue-rotate(calc(var(--service-hue)*1deg)); transition: filter .5s; }
/* Her konsept kemerin ardında FARKLI bir sahne açar; sahneler üst üste
   yığılır, aktif olan yumuşak geçişle görünür (imza "kapı" etkileşimi). */
.service-portal .sp-scene { position: absolute; inset: 0; opacity: 0; transition: opacity .55s var(--ease-out), filter .5s; }
.service-portal[data-variant="dining"] .sp-scene[data-variant="dining"],
.service-portal[data-variant="arbor"] .sp-scene[data-variant="arbor"],
.service-portal[data-variant="celebration"] .sp-scene[data-variant="celebration"],
.service-portal[data-variant="lounge"] .sp-scene[data-variant="lounge"] { opacity: 1; }
.service-stage-count { position: absolute; left: 8%; top: 8%; color: var(--gold-light); letter-spacing: .16em; font-size: 12px; }
.service-stage-caption { position: absolute; left: 8%; right: 8%; bottom: 6%; z-index: 3; }
.service-stage-caption strong { font: italic 500 clamp(36px,4vw,66px)/1 var(--serif); color: var(--gold-light); }
.service-stage-caption p { max-width: 480px; margin-top: 12px; color: #ded6c8; }

.venue-film {
  position: relative; min-height: 100svh; display: grid; align-items: end;
  overflow: hidden; isolation: isolate; background: #0b1220;
}
.venue-film::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(7,12,23,.95),rgba(7,12,23,.32) 68%,rgba(7,12,23,.6)); }
.venue-film-art { position: absolute; inset: 0; z-index: -2; }
.venue-portal { position: absolute; width: 62%; height: 96%; right: 4%; bottom: 0; }
.venue-portal .atmos-scene { transform: scale(1.8); transform-origin: 50% 70%; }
.venue-film-copy { padding: clamp(80px,10vw,160px) clamp(24px,8vw,150px); max-width: 1000px; }
.venue-film h2 { color: var(--ivory); }
.venue-film h2 em { color: var(--gold-light); }
.venue-film-copy > p { max-width: 580px; margin: 28px 0 34px; color: #ded6c8; font-size: var(--fs-lead); }

.process-diary { background: var(--ivory); color: var(--ink); padding: clamp(90px,12vw,180px) clamp(24px,6vw,112px); }
.process-diary-intro { max-width: 980px; margin-bottom: clamp(60px,9vw,120px); }
.diary-line { list-style: none; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line-ink); }
.diary-line li { position: relative; padding: 44px clamp(14px,2vw,30px) 30px 0; min-height: 260px; border-right: 1px solid var(--line-ink); }
.diary-line li:last-child { border-right: 0; }
.diary-line li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--plum); }
.diary-line time { font: 11px var(--sans); color: var(--gold-deep); letter-spacing: .18em; text-transform: uppercase; }
.diary-line h3 { margin: 56px 0 14px; font: italic 500 clamp(28px,2.5vw,42px)/1 var(--serif); }
.diary-line p { color: var(--ink-muted); font-size: 14px; }
.diary-line li:nth-child(even) { transform: translateY(42px); }

.closing-scene {
  position: relative; min-height: 82svh; display: grid; place-items: center; overflow: hidden;
  padding: 90px 24px; text-align: center; background: var(--night-deep); color: var(--ivory);
}
.closing-scene > div { position: relative; z-index: 2; max-width: 1140px; }
.closing-scene h2 { font-size: clamp(52px,7vw,112px); }
.closing-scene h2 em { color: var(--gold-light); }
.closing-scene .hero-cta { justify-content: center; }
.closing-mark { position: absolute; font: 500 min(95vw,1400px)/.7 var(--serif); color: rgba(255,255,255,.035); bottom: -23%; }
.closing-real-photo { position:absolute; inset:0; z-index:0; overflow:hidden; }
.closing-real-photo img {
  width:100%; height:100%; object-fit:cover; object-position:54% 50%;
  filter:saturate(.68) sepia(.08) contrast(1.05);
}
.closing-real-photo::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 42%,rgba(107,41,71,.24),transparent 42%),
    linear-gradient(0deg,rgba(13,10,14,.86),rgba(20,13,19,.48) 55%,rgba(13,10,14,.72));
}
.closing-real-photo figcaption {
  position:absolute; z-index:2; right:22px; bottom:18px;
  color:rgba(247,240,229,.7); font-size:9px; letter-spacing:.12em; text-transform:uppercase;
}

/* Açılır teklif akışı: JS yoksa normal sayfa bölümü olarak kalır. */
.lead-sheet-close { display: none; }
.lead-step { display: contents; }
.lead-progress { display: none; }
.lead-step-action { display: none; }
.js .lead-sheet {
  position: fixed; inset: 0; z-index: 180; overflow-y: auto;
  display: grid; place-items: center; padding: 28px;
  background: rgba(5,9,16,.82);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s,visibility .3s;
}
.js .lead-sheet.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.js .lead-sheet .booking {
  position: relative; width: min(1180px,100%); max-height: calc(100svh - 56px); overflow-y: auto;
  padding: clamp(28px,4vw,60px); background: #0d1523; border: 1px solid var(--line);
}
.js .lead-sheet-close {
  display: grid; place-items: center; position: fixed; right: 34px; top: 28px; z-index: 3;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  background: #111827; color: var(--ivory); font-size: 27px; cursor: pointer;
}
.js .lead-sheet .lead-step { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; grid-column: 1/-1; }
.js .lead-sheet .lead-step[hidden] { display: none; }
.js .lead-sheet .lead-progress { display: flex; grid-column: 1/-1; align-items: center; gap: 14px; margin-bottom: 12px; }
.lead-progress::before { content: ""; height: 2px; flex: 1; background: var(--line-soft); }
.lead-progress i { position: absolute; height: 2px; width: 50%; background: var(--gold); transition: width .3s; }
.lead-progress span { margin-left: auto; font-size: 11px; letter-spacing: .2em; color: var(--gold-light); }
.js .lead-sheet .lead-step-action { display: block; }

.wizard-overlay { background: rgba(5,9,16,.93); backdrop-filter: none; }
.wizard {
  width: min(1180px,calc(100% - 40px)); max-height: 94svh; min-height: min(760px,94svh);
  border-radius: 0; display: grid; grid-template-rows: auto 2px 1fr auto;
  background: var(--ivory); color: var(--ink); border-color: var(--line-ink);
}
.wizard-head { padding: 22px clamp(24px,4vw,58px); border-color: var(--line-ink); }
.wizard-head h2 { font: 500 clamp(25px,3vw,42px)/1 var(--serif); }
.wizard-close { color: var(--ink); border-color: var(--line-ink); }
.wizard-body { padding: clamp(32px,6vw,80px); }
.wizard-q { font-size: clamp(38px,5vw,72px); line-height: .95; max-width: 820px; margin-bottom: 42px; }
.wizard-opts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line-ink); }
.wizard-opt {
  min-height: 92px; border: 0; border-bottom: 1px solid var(--line-ink); border-radius: 0;
  background: transparent; color: var(--ink); font-size: 16px; padding: 22px 18px;
}
.wizard-opt:nth-child(odd) { border-right: 1px solid var(--line-ink); }
.wizard-opt small { color: var(--ink-muted); }
.wizard-opt:is(:hover,.is-selected) { background: var(--plum); color: var(--ivory); box-shadow: none; transform: none; }
.wizard-opt:is(:hover,.is-selected) small { color: var(--blush); }
.wizard-foot { border-color: var(--line-ink); padding: 18px clamp(24px,4vw,58px); }
.wizard-foot .btn-ghost { border-color: var(--line-ink); color: var(--ink); }
.dna-brief { display: grid; grid-template-columns: repeat(2,1fr); margin: 24px 0; border-top: 1px solid var(--line-ink); }
.dna-brief span { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line-ink); color: var(--gold-deep); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.dna-brief strong { display: block; color: var(--ink); font: 500 20px/1.2 var(--serif); text-transform: none; letter-spacing: 0; margin-top: 5px; }

@media (max-width: 900px) {
  .portal-hero { align-items: end; padding-bottom: 86px; }
  .portal-hero::after { background: linear-gradient(0deg,rgba(5,10,20,.98) 0%,rgba(5,10,20,.72) 58%,rgba(5,10,20,.18)); }
  .portal-hero-portal { width: 76vw; height: 79svh; right: -8vw; bottom: 21svh; opacity: .76; }
  .portal-line-a { width: 86vw; right: -13vw; height: 86svh; bottom: 18svh; }
  .portal-line-b { display: none; }
  .portal-hero .hero-copy { max-width: 760px; }
  .portal-hero .hero-title { font-size: clamp(55px,11vw,96px); }
  .dna-studio { grid-template-columns: 1fr; }
  .dna-studio-copy { min-height: auto; padding-top: 100px; padding-bottom: 100px; }
  .dna-studio-board { min-height: 72svh; }
  .dna-studio-board { order: -1; }
  .service-stage { grid-template-columns: 1fr; }
  .service-stage-visual { position: relative; height: 78svh; order: -1; }
  .diary-line { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line-ink); margin-left: 6px; }
  .diary-line li,.diary-line li:nth-child(even) { transform: none; min-height: 0; padding: 4px 0 48px 34px; border-right: 0; }
  .diary-line li::before { top: 6px; left: -5px; }
  .diary-line h3 { margin: 16px 0 7px; }
}

@media (max-width: 760px) {
  .portal-hero { min-height: 100svh; padding: 112px 18px 78px; }
  .portal-hero-portal { width: 93vw; right: -25vw; height: 70svh; bottom: 30svh; }
  .portal-hero .hero-title { font-size: clamp(47px,15.5vw,70px); line-height: .9; }
  .portal-hero .hero-title .line { white-space: normal; }
  .portal-hero .hero-title .em,.portal-hero .hero-lead,.portal-hero .hero-cta { margin-left: 0; }
  .portal-hero .hero-lead { font-size: 16px; max-width: 520px; }
  .portal-hero .hero-cta { max-width: none; }
  .hero-caption { display: none; }
  .dna-studio-copy { padding: 72px 22px 82px; }
  .dna-studio h2,.service-stage h2,.process-diary h2,.venue-film h2,.closing-scene h2 { font-size: clamp(43px,13vw,64px); }
  .dna-studio-board { min-height: 88svh; padding: 24px; }
  .dna-preview-scene { width: 86%; height: 72%; }
  .dna-board-type { left: 6%; bottom: 16%; font-size: 43px; }
  .dna-studio-board .dna-result-pal { left: 6%; bottom: 8%; }
  .dna-studio-board > p { display: none; }
  .service-stage-visual { height: 78svh; }
  .service-portal { width: 86%; left: 7%; }
  .service-stage-index { padding: 72px 22px 92px; }
  .service-index-list a { min-height: 68px; }
  .service-index-list a strong { font-size: 29px; }
  .venue-film { min-height: 92svh; }
  .venue-portal { width: 96%; right: -18%; height: 88%; }
  .venue-film-copy { padding: 84px 22px; }
  .process-diary { padding: 84px 22px; }
  .closing-scene { min-height: 88svh; padding: 82px 20px 110px; }
  .closing-scene .hero-cta { max-width: none; }
  .js .lead-sheet { padding: 0; place-items: end stretch; background: #0d1523; }
  .js .lead-sheet .booking { width: 100%; max-height: 100svh; min-height: 100svh; padding: 78px 20px 100px; display: block; }
  .js .lead-sheet .booking-copy { margin-bottom: 30px; }
  .js .lead-sheet .booking-copy h2 { font-size: 43px; }
  .js .lead-sheet .booking-note { display: none; }
  .js .lead-sheet .lead-step { grid-template-columns: 1fr; }
  .js .lead-sheet .booking-form { padding: 0; background: transparent; border: 0; }
  .js .lead-sheet-close { top: 16px; right: 16px; }
  .wizard { width: 100%; min-height: 100svh; max-height: 100svh; border: 0; border-radius: 0; }
  .wizard-head { padding: 16px 18px; }
  .wizard-body { padding: 30px 18px; }
  .wizard-q { font-size: 43px; margin-bottom: 28px; }
  .wizard-opts { grid-template-columns: 1fr; }
  .wizard-opt:nth-child(odd) { border-right: 0; }
  .wizard-foot { padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); }
  .dna-brief { grid-template-columns: 1fr; }
}

/* ============================================================
   2026 DENEYİMSEL YÖN — ÇİÇEK HEYKELİ, KATMANLI HİZMETLER, YOLCULUK FORMU
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center; overflow: hidden;
  background: #f3ede2; color: #1c2522;
  transition: opacity .28s var(--ease-out), clip-path .55s var(--ease-out);
}
.preloader.is-done { opacity: 0; clip-path: inset(0 0 100%); pointer-events: none; }
.preloader-brand { position: absolute; left: 36px; top: 30px; display: flex; align-items: center; gap: 12px; font: 10px/1.1 var(--sans); letter-spacing: .24em; }
.preloader-brand .brand-mono { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #8a6e3d; border-radius: 50%; font: 500 23px var(--serif); }
.preloader > p { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%); font: italic 500 25px var(--serif); white-space: nowrap; }
.preloader-count { position: absolute; right: 36px; bottom: 24px; display: flex; align-items: flex-start; font: 500 clamp(58px,8vw,120px)/.8 var(--serif); }
.preloader-count small { font: 10px var(--sans); letter-spacing: .1em; margin-top: 8px; }

.flower-sculpture {
  --petal: #e9ded0; --petal-deep: #b89683; --core: #6d1739;
  position: relative; width: min(34vw,520px); aspect-ratio: 1;
  transform-style: preserve-3d; perspective: 900px;
}
.flower-sculpture .petal {
  position: absolute; left: 38%; top: 7%; width: 24%; height: 44%;
  border-radius: 70% 38% 68% 36% / 76% 48% 66% 32%;
  transform-origin: 50% 96%;
  background:
    radial-gradient(circle at 36% 30%,rgba(255,255,255,.78),transparent 28%),
    linear-gradient(145deg,var(--petal),var(--petal-deep));
  box-shadow: inset -12px -14px 24px rgba(79,38,42,.14),0 20px 36px rgba(29,16,21,.12);
  filter: saturate(.78);
}
.flower-sculpture .p1 { transform: rotate(0deg) rotateX(18deg); }
.flower-sculpture .p2 { transform: rotate(45deg) rotateX(34deg) scale(.96); }
.flower-sculpture .p3 { transform: rotate(90deg) rotateX(22deg); }
.flower-sculpture .p4 { transform: rotate(135deg) rotateX(38deg) scale(.92); }
.flower-sculpture .p5 { transform: rotate(180deg) rotateX(18deg); }
.flower-sculpture .p6 { transform: rotate(225deg) rotateX(34deg) scale(.96); }
.flower-sculpture .p7 { transform: rotate(270deg) rotateX(22deg); }
.flower-sculpture .p8 { transform: rotate(315deg) rotateX(38deg) scale(.92); }
.flower-core {
  position: absolute; left: 40%; top: 40%; width: 20%; height: 20%;
  border-radius: 50%; background: radial-gradient(circle at 35% 28%,#d3a56f,var(--core) 48%,#27111c);
  box-shadow: 0 12px 30px rgba(48,14,30,.3); transform: translateZ(30px);
}
.flower-orbit { position: absolute; inset: 2%; border: 1px solid rgba(111,23,57,.2); border-radius: 50%; transform: rotateX(70deg) rotateZ(-18deg); }
.preloader-flower { width: min(46vw,440px); animation: flowerBreathe 3.8s ease-in-out infinite alternate; }
@keyframes flowerBreathe { from { transform: rotate(-7deg) scale(.82); } to { transform: rotate(7deg) scale(1); } }

.bloom-hero {
  position: relative; min-height: 100svh; overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + var(--utility-h) + 7vh) clamp(24px,7vw,130px) clamp(66px,9vh,110px);
  background: #16120f; color: var(--ivory);
}
.bloom-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 74% 38%, #67394b 0, #321e28 30%, #171117 62%, #0d0a0e 100%);
}
.film-grain { position: absolute; inset: -40%; z-index: 4; pointer-events: none; opacity: .055; background-image: repeating-radial-gradient(circle at 30% 20%,#fff 0 1px,transparent 1px 4px); background-size: 7px 9px; animation: grainShift .4s steps(2) infinite; }
@keyframes grainShift { 0%{transform:translate(0)} 25%{transform:translate(3%,-2%)} 50%{transform:translate(-2%,3%)} 75%{transform:translate(1%,2%)} }
.hero-bloom-stage { position: absolute; inset: 0; z-index: -1; will-change: transform; }
.hero-flower { position: absolute; width: min(61vw,920px); right: 4vw; top: 8%; filter: drop-shadow(0 40px 80px rgba(0,0,0,.38)); transform: rotate(-12deg); }
.hero-flower .petal { --petal:#dfcdbb; --petal-deep:#845166; }
.silk { position: absolute; width: 32vw; height: 120%; top: -10%; border-radius: 50%; background: linear-gradient(90deg,transparent,rgba(232,218,198,.15),transparent); filter: blur(2px); }
.silk-a { right: 10%; transform: rotate(21deg); }.silk-b { right: -6%; transform: rotate(-18deg); opacity: .45; }
.bloom-hero-copy { position: relative; z-index: 5; width: min(100%,1100px); }
.bloom-hero h1 { max-width: 1040px; font: 500 clamp(58px,8.2vw,140px)/.82 var(--serif); letter-spacing: -.055em; }
.bloom-hero h1 span,.bloom-hero h1 em { display: block; }
.bloom-hero h1 em { margin-left: clamp(18px,8vw,150px); color: #ead29e; font-weight: 500; }
.bloom-hero-copy > p { max-width: 650px; margin: 30px 0 0 clamp(18px,8vw,150px); color: #ded7cc; font-size: clamp(15px,1.3vw,19px); }
.bloom-hero .hero-cta { margin-left: clamp(18px,8vw,150px); }
.bloom-hero .hero-scroll { left: auto; right: clamp(24px,5vw,80px); }
html.has-intro .bloom-hero .eyebrow { animation-delay: 1s; }
html.has-intro .bloom-hero .hero-cta { animation-delay: 1.12s; }

.hero-real-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--night-deep);
}
.hero-real-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 57%;
  filter: saturate(.72) sepia(.08) contrast(1.04);
}
.hero-real-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(13,10,14,.94) 0%,rgba(20,13,19,.78) 38%,rgba(20,13,19,.22) 72%,rgba(13,10,14,.28)),
    linear-gradient(0deg,rgba(13,10,14,.68),transparent 52%);
}
.hero-real-photo figcaption,
.brand-real-photo figcaption,
.venue-real-photo figcaption,
.page-hero-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  color: rgba(247,240,229,.72);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-reveal {
  min-height: 105svh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--paper); color: var(--ink); overflow: hidden;
}
.brand-reveal-object { position: relative; display: grid; place-items: center; background: linear-gradient(145deg,#dbc7c4,#c8aaa9); overflow: hidden; }
.brand-reveal-object::before { content: ""; position: absolute; width: 76%; height: 76%; border: 1px solid rgba(91,24,54,.24); border-radius: 50%; }
.brand-flower { width: min(45vw,700px); transform: rotate(14deg); }
.brand-real-photo { position: absolute; inset: 0; }
.brand-real-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; filter: saturate(.72) sepia(.12) contrast(1.03); }
.brand-real-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(43,22,31,.3),transparent 55%); }
.brand-reveal-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(72px,9vw,150px) clamp(28px,7vw,120px); }
.brand-reveal h2,.experience-stack h2,.venue-story h2,.why-masal h2 { font: 500 clamp(52px,6.4vw,102px)/.86 var(--serif); letter-spacing: -.05em; }
.brand-reveal h2 em,.experience-stack h2 em,.venue-story h2 em,.why-masal h2 em { color: var(--plum); font-weight: 500; }
.brand-reveal .section-label,.experience-stack .section-label,.why-masal .section-label,.contact-editorial .section-label { color: var(--gold-deep); }
.brand-reveal-copy > p { max-width: 620px; margin: 30px 0 20px; color: var(--ink-muted); font-size: clamp(16px,1.3vw,19px); }

.experience-stack { background: linear-gradient(180deg,#eee4d8,var(--paper)); color: var(--ink); padding: clamp(90px,10vw,160px) 0 0; }
.experience-stack-head { padding: 0 clamp(24px,7vw,130px) clamp(70px,9vw,120px); }
.editorial-disclosure { max-width: 590px; margin-top: 28px; color: var(--ink-muted); font-size: 12px; }
.experience-cards { position: relative; }
.experience-card {
  position: sticky; top: calc(var(--header-h) + 12px);
  min-height: calc(100svh - var(--header-h) - 12px);
  display: grid; grid-template-columns: 1.05fr .95fr;
  border-radius: 34px 34px 0 0; overflow: hidden;
  background: var(--paper); box-shadow: 0 -18px 55px rgba(45,26,35,.13);
}
.experience-card:nth-child(even) { grid-template-columns: .95fr 1.05fr; }
.experience-card:nth-child(even) .experience-card-visual { order: 2; }
.experience-card-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: #261922; }
.experience-card.tone-2 .experience-card-visual{background:#35212a}.experience-card.tone-3 .experience-card-visual{background:#3b2924}.experience-card.tone-4 .experience-card-visual{background:#272128}
.experience-card-visual::after { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(235,216,174,.22); border-radius: 50% 50% 3px 3px / 30% 30% 3px 3px; }
.experience-card-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) sepia(.08) contrast(1.04);
  transition: transform 1.1s var(--ease-out),filter .6s;
}
.experience-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,rgba(23,18,24,.58),transparent 48%),linear-gradient(110deg,rgba(53,26,40,.26),transparent 62%);
}
.experience-card:hover .experience-card-visual > img { transform: scale(1.035); filter: saturate(.82) sepia(.04) contrast(1.04); }
.experience-flower { width: min(40vw,600px); transform: rotate(calc(var(--stack) * 11deg - 22deg)); }
.tone-2 .experience-flower{--petal:#d9bdc2;--petal-deep:#8c5363}.tone-3 .experience-flower{--petal:#deb9a3;--petal-deep:#925b48}.tone-4 .experience-flower{--petal:#c9bdc7;--petal-deep:#6f5c6b}
.experience-no { position: absolute; z-index: 2; left: 7%; top: 6%; color: #ead29e; font-size: 12px; letter-spacing: .2em; }
.experience-credit { position:absolute; z-index:2; left:7%; bottom:6%; color:rgba(247,240,229,.72); font-size:9px; letter-spacing:.1em; text-transform:uppercase; }
.experience-card-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(54px,8vw,130px); }
.experience-card-copy small { color: var(--gold-deep); text-transform: uppercase; letter-spacing: .15em; }
.experience-card h3 { margin: 20px 0; font: 500 clamp(54px,6vw,105px)/.88 var(--serif); letter-spacing: -.045em; color: var(--plum); }
.experience-card-copy p { max-width: 520px; color: var(--ink-muted); font-size: var(--fs-lead); }
.experience-card-copy a { margin-top: 36px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-weight: 650; }

.venue-story { min-height: 110svh; display: grid; grid-template-columns: 1.12fr .88fr; background: var(--night); color: var(--ivory); }
.venue-story-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 46%,#60384b,#171218 68%); }
.venue-flower { width: min(52vw,760px); transform: rotate(-18deg); }
.venue-flower .petal { --petal:#d4c1b1;--petal-deep:#755267; }
.venue-portal-line { position: absolute; width: 76%; height: 84%; bottom: 0; border: 1px solid rgba(234,210,158,.28); border-bottom: 0; border-radius: 50% 50% 0 0 / 30% 30% 0 0; }
.venue-real-photo { position:absolute; inset:0; }
.venue-real-photo img { width:100%; height:100%; object-fit:cover; object-position:52% 50%; filter:saturate(.68) sepia(.12) contrast(1.04); }
.venue-real-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(23,18,24,.56),transparent 60%),linear-gradient(90deg,rgba(107,41,71,.18),transparent); }
.venue-story-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(72px,7vw,120px); }
.venue-story h2 em { color: var(--gold-light); }
.venue-story-copy > p { max-width: 610px; margin: 28px 0; color: #d8d0c3; }
.venue-known { width: 100%; border-top: 1px solid var(--line); margin: 6px 0 20px; }
.venue-known div { display: grid; grid-template-columns: 54px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); }
.venue-known dt { color: var(--gold-light); font-size: 11px; }.venue-known dd { font-size: 14px; }
.venue-honesty { font-size: 12px!important; opacity: .72; margin-top: 4px!important; }

.why-masal { background: linear-gradient(135deg,#f7f1e8,#eee3d7); color: var(--ink); padding: clamp(95px,12vw,190px) clamp(24px,7vw,130px); }
.why-masal header { max-width: 1050px; margin-bottom: clamp(75px,10vw,140px); }
.why-masal ol { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-ink); }
.why-masal li { min-height: 330px; padding: 34px 24px 24px 0; border-right: 1px solid var(--line-ink); }
.why-masal li + li { padding-left: 24px; }
.why-masal li:last-child { border-right: 0; }
.why-masal b { font: 11px var(--sans); color: var(--gold-deep); letter-spacing: .2em; }
.why-masal h3 { margin: 94px 0 18px; font: italic 500 clamp(27px,2.5vw,43px)/1 var(--serif); color: var(--plum); }
.why-masal p { color: var(--ink-muted); font-size: 14px; }

.process-diary .diary-line { grid-template-columns: repeat(4,1fr); }

.bloom-closing { isolation: isolate; }
.closing-flower { position: absolute; width: min(75vw,980px); opacity: .16; filter: saturate(.4); transform: rotate(18deg); }

/* Sekiz soruluk tarih yolculuğu */
.journey-sheet { background: var(--night); }
.journey-shell { width: min(1180px,100%); min-height: min(780px,92svh); display: grid; grid-template-columns: .76fr 1.24fr; background: var(--paper); color: var(--ink); overflow: hidden; }
.journey-head { padding: clamp(45px,6vw,90px); background: var(--plum); color: var(--ivory); display: flex; flex-direction: column; justify-content: center; }
.journey-head h2 { font: 500 clamp(44px,5vw,76px)/.9 var(--serif); margin: 16px 0 24px; }.journey-head h2 em { color: var(--gold-light); font-weight: 500; }
.journey-head > p { color: var(--blush); }
.journey-form { position: relative; display: flex!important; flex-direction: column; justify-content: center; min-width: 0; padding: clamp(45px,7vw,100px); background: var(--paper)!important; border: 0!important; }
.journey-form .lead-progress { position: absolute; left: clamp(30px,5vw,70px); right: clamp(30px,5vw,70px); top: 34px; display: flex!important; align-items: center; gap: 14px; }
.journey-form .lead-progress::before { background: rgba(63,48,33,.15); }.journey-form .lead-progress i { background: var(--plum); width: 12.5%; }
.journey-form .lead-progress span { color: var(--gold-deep); }
.journey-form .lead-step { display: grid!important; grid-template-columns: 1fr 1fr; gap: 18px; }
.journey-form .lead-step[hidden] { display: none!important; }
.journey-kicker { grid-column: 1/-1; font: 500 clamp(34px,4vw,62px)/.95 var(--serif); margin-bottom: 24px; color: var(--plum); }
.journey-form .field > span:first-child,.journey-form .field > label:first-child,.journey-form label.field > span:first-child { color: var(--gold-deep); }
.journey-form input,.journey-form select,.journey-form textarea { color: var(--ink); border-color: rgba(63,48,33,.25); background: rgba(255,255,255,.48); }
.journey-form input::placeholder,.journey-form textarea::placeholder { color: #756b5d; }
.journey-form .check { color: var(--ink-muted); }
.journey-form .journey-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; }
.journey-form .journey-nav [hidden] { display: none!important; }
.contact-editorial { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,9vw,140px); }
.contact-editorial address { display: flex; flex-direction: column; font-style: normal; border-top: 1px solid var(--line-ink); }
.contact-editorial address a { display: flex; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid var(--line-ink); font: 500 clamp(24px,3vw,44px)/1 var(--serif); }
.contact-editorial address p { margin-top: 22px; color: var(--ink-muted); font-size: 13px; }
.service-picks { border: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-picks legend { margin-bottom: 14px; color: var(--gold-deep); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.service-picks label { cursor: pointer; }
.service-picks input { position: absolute; opacity: 0; }
.service-picks span { display: block; padding: 15px; border: 1px solid var(--line-ink); border-radius: 14px; transition: .25s; }
.service-picks input:checked + span { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.journey-consent { color: var(--ink-muted); }

/* Mobil iki aksiyonlu alt bar */
.mobile-bar { padding: 5px; gap: 5px; background: #f1e6d4; border: 1px solid rgba(75,55,37,.16); }
.mobile-bar a { display: grid; place-items: center; min-height: 46px; padding: 0 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.mobile-bar a:first-child { flex: 1.15; background: var(--plum); color: var(--ivory); }
.mobile-bar a:last-child { flex: .85; color: var(--ink); }

/* ============================================================
   MARKA SANAT YÖNÜ — TEK PALET, EDİTORYAL ALT SAYFALAR
   Gece mürdümü + sıcak parşömen + antik şampanya + pudralı gül
   ============================================================ */
.band-dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(107,41,71,.18), transparent 34%),
    linear-gradient(145deg, var(--night), var(--night-deep));
}
.band-deep {
  background:
    radial-gradient(circle at 16% 72%, rgba(107,41,71,.14), transparent 32%),
    linear-gradient(180deg,var(--night-deep),var(--night));
}
.band-light {
  background:
    radial-gradient(circle at 92% 8%, rgba(220,197,196,.22), transparent 28%),
    var(--paper);
}
.band-stone {
  background:
    radial-gradient(circle at 8% 90%, rgba(139,82,104,.08), transparent 30%),
    var(--stone);
}

.btn-gold,
:is(.band-light,.band-stone) .btn-gold,
.topnav .nav-cta,
.mobile-menu-cta {
  color: #21171c;
  background: linear-gradient(125deg,#b98d4d 0%,var(--champagne) 48%,#c79d5d 100%);
  border: 1px solid rgba(255,245,219,.24);
  box-shadow: 0 10px 30px rgba(94,63,34,.2);
}
.btn-gold:hover { box-shadow: 0 16px 42px rgba(112,76,43,.3); }
.btn-ghost { border-color: rgba(202,166,107,.34); }
:is(.band-light,.band-stone) .btn-ghost { border-color: rgba(73,52,59,.24); }

/* Premium aksiyon sistemi — düz kapsül yerine katmanlı, editoryal kontroller. */
.btn {
  min-height: 54px;
  padding: 12px 14px 12px 22px;
  border-radius: 9px;
  isolation: isolate;
  overflow: hidden;
  font-size: 12.5px;
  letter-spacing: .075em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s,
    border-color .3s,
    background-color .3s,
    color .3s;
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "↗";
  position: relative;
  z-index: 1;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 4px;
  border-radius: 50%;
  font: 500 15px/1 var(--sans);
  transition: transform .38s var(--ease-out),background .3s,border-color .3s;
}
.btn-arr { display: none; }
.btn-gold::after { background: rgba(33,23,28,.1); color: #21171c; }
.btn-ghost {
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost::after {
  border: 1px solid rgba(202,166,107,.28);
  color: currentColor;
}
:is(.band-light,.band-stone) .btn-ghost { background: rgba(255,255,255,.32); }
.btn:is(:hover,:focus-visible) {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(39,23,30,.2),inset 0 1px 0 rgba(255,255,255,.18);
}
.btn:is(:hover,:focus-visible)::after { transform: rotate(45deg); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline-offset: 4px; }
.btn[disabled] { transform: none; box-shadow: none; }

.service-editorial-link {
  min-width: 176px;
  padding: 10px 11px 10px 17px;
  border: 1px solid rgba(107,41,71,.2);
  border-left: 1px solid rgba(107,41,71,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .3s var(--ease-out),background .3s,border-color .3s,box-shadow .3s;
}
.service-editorial-link span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: rgba(107,41,71,.09);
}
.service-editorial-link:is(:hover,:focus-visible) {
  transform: translateY(-2px);
  background: rgba(255,255,255,.72);
  border-color: rgba(107,41,71,.38);
  box-shadow: 0 12px 26px rgba(64,35,48,.1);
}
.card-link > span:last-child {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .3s var(--ease-out),background .3s;
}
.guide-card:is(:hover,:focus-visible) .card-link > span:last-child { transform: rotate(45deg); }
.pf-filter {
  position: relative;
  min-height: 46px;
  padding: 10px 17px;
  border-radius: 8px;
  letter-spacing: .055em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.pf-filter:is(:hover,:focus-visible) { transform: translateY(-2px); background: rgba(255,255,255,.045); }
.pf-filter.is-active { box-shadow: 0 10px 24px rgba(202,166,107,.18),inset 0 1px 0 rgba(255,255,255,.24); }
.faq-item { border-radius: 8px; transition: background .3s,padding .35s var(--ease-out); }
.faq-item:has(.faq-btn:is(:hover,:focus-visible)) { background: rgba(202,166,107,.045); padding-inline: 12px; }
:is(.band-light,.band-stone) .faq-item:has(.faq-btn:is(:hover,:focus-visible)) { background: rgba(107,41,71,.045); }
.faq-icon { box-shadow: inset 0 0 0 3px rgba(202,166,107,.04); }
.footer-invite-tel {
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.025);
}
.topnav .nav-cta {
  border-radius: 7px;
  padding: 11px 18px;
  box-shadow: 0 9px 24px rgba(94,63,34,.18),inset 0 1px 0 rgba(255,255,255,.24);
}
.text-link { align-items: center; border-bottom-color: rgba(118,90,40,.32); }
.text-link > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .35s var(--ease-out),background .3s;
}
.text-link:is(:hover,:focus-visible) > span { transform: rotate(45deg); background: rgba(202,166,107,.08); }
.mobile-bar {
  border-radius: 14px;
  padding: 6px;
  background: rgba(241,230,212,.96);
  border: 1px solid rgba(202,166,107,.34);
  box-shadow: 0 18px 46px rgba(19,12,17,.34),inset 0 1px 0 rgba(255,255,255,.75);
}
.mobile-bar a {
  position: relative;
  min-height: 48px;
  border-radius: 9px;
  letter-spacing: .035em;
  transition: transform .25s,background .25s,color .25s;
}
.mobile-bar a:first-child {
  background: linear-gradient(135deg,var(--plum),#4f2036);
  box-shadow: 0 8px 18px rgba(78,31,53,.22),inset 0 1px 0 rgba(255,255,255,.1);
}
.mobile-bar a:active { transform: scale(.97); }

/* Alt sayfa girişlerini küçük bir hero yerine tam bir editoryal kapak yapar. */
.band-dark > .page-hero {
  min-height: min(760px,78svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
}
.band-dark > .page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(320px,48vw,720px);
  aspect-ratio: 1;
  right: clamp(-230px,-8vw,-90px);
  top: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%,rgba(246,240,231,.18) 0 4%,transparent 5%),
    radial-gradient(ellipse at 50% 50%,rgba(139,82,104,.34),rgba(54,31,43,.2) 48%,transparent 70%);
  border: 1px solid rgba(234,213,167,.18);
  box-shadow: inset 0 0 90px rgba(234,213,167,.06);
}
.band-dark > .page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(250px,34vw,520px);
  height: 76%;
  right: 3%;
  bottom: -20%;
  border: 1px solid rgba(234,213,167,.16);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 32% 32% 0 0;
  transform: rotate(7deg);
}
.service-page-hero { padding-right: min(48vw,680px); }
.band-dark > .page-hero:has(.page-hero-photo) { padding-right: min(48vw,680px); }
.page-hero-photo {
  position: absolute;
  z-index: -1;
  width: min(46vw,650px);
  height: calc(100% - 118px);
  right: clamp(20px,5vw,72px);
  bottom: 0;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  border: 1px solid rgba(234,213,167,.18);
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) sepia(.1) contrast(1.04);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(23,18,24,.34),transparent 55%),linear-gradient(0deg,rgba(13,10,14,.46),transparent 46%);
}
.band-dark > .page-hero h1 {
  max-width: 13ch;
  font-size: clamp(48px,7vw,96px);
  line-height: .94;
  letter-spacing: -.035em;
}
.band-dark > .page-hero .lead { max-width: 650px; font-size: clamp(15px,1.45vw,19px); }

/* Alt sayfalardaki gerçek fotoğrafları tek bir moda çekimi diliyle birleştirir. */
.editorial-mosaic {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  grid-template-rows: repeat(10,48px);
  gap: 14px;
  width: 100%;
  margin: 10px 0 42px;
}
.editorial-mosaic-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--night-soft);
  box-shadow: 0 24px 64px rgba(6,8,9,.18);
}
.editorial-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 58%,rgba(13,10,14,.22));
  pointer-events: none;
}
.editorial-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) sepia(.08) contrast(1.03);
  transition: transform 1.1s var(--ease-out),filter .6s;
}
.editorial-mosaic-item:hover img { transform: scale(1.045); filter: saturate(.88) contrast(1.04); }
.editorial-mosaic-item-1 { grid-column: 1 / 8; grid-row: 1 / 9; }
.editorial-mosaic-item-2 { grid-column: 8 / 13; grid-row: 2 / 7; }
.editorial-mosaic-item-3 { grid-column: 7 / 12; grid-row: 7 / 11; }
.editorial-story-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1fr);
  gap: clamp(42px,7vw,100px);
  align-items: start;
}
.editorial-story-grid > .editorial-mosaic {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  grid-template-rows: repeat(10,42px);
  margin: 0;
}
.editorial-story-grid .prose { max-width: 690px; }
.contact-editorial-photo {
  position: relative;
  height: clamp(280px,38vw,510px);
  margin-top: 42px;
  overflow: hidden;
  border-radius: 50% 50% 3px 3px / 24% 24% 3px 3px;
}
.contact-salon-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: clamp(48px,8vw,118px);
  align-items: start;
}
.contact-salon-intro h2 {
  margin-top: 18px;
  font-size: clamp(48px,5.8vw,86px);
  line-height: .92;
  letter-spacing: -.045em;
}
.contact-salon-intro > p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: var(--fs-lead);
}
.contact-channel-list { display: block; font-style: normal; border-top: 1px solid var(--line-ink); }
.contact-channel {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 42px;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 25px 16px;
  border-bottom: 1px solid var(--line-ink);
  transition: color .35s,background .35s,border-color .35s;
}
.contact-channel-no { color: var(--gold-deep); font-size: 10px; letter-spacing: .16em; }
.contact-channel > span:nth-child(2) { min-width: 0; display: grid; }
.contact-channel small { color: var(--gold-deep); font: 700 9px/1.4 var(--sans); letter-spacing: .18em; }
.contact-channel strong {
  margin-top: 7px;
  color: var(--plum);
  font: 500 clamp(25px,2.8vw,39px)/1 var(--serif);
  overflow-wrap: anywhere;
}
.contact-channel em { margin-top: 8px; color: var(--ink-muted); font: 400 12.5px/1.5 var(--sans); }
.contact-channel b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(107,41,71,.22);
  border-radius: 50%;
  color: var(--plum);
  font: 500 15px/1 var(--sans);
  transition: transform .35s var(--ease-out),background .3s,color .3s;
}
.contact-channel:is(:hover,:focus-visible) { color: var(--ivory); background: var(--plum); border-color: var(--plum); }
.contact-channel:is(:hover,:focus-visible) :is(.contact-channel-no,small,strong,em) { color: inherit; }
.contact-channel:is(:hover,:focus-visible) b { transform: rotate(45deg); background: var(--gold-light); color: var(--plum); }
.contact-visit-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(48px,8vw,118px);
  align-items: center;
}
.contact-visit-photo {
  height: min(74svh,760px);
  overflow: hidden;
  border-radius: 50% 50% 3px 3px / 22% 22% 3px 3px;
  border: 1px solid rgba(234,213,167,.2);
}
.contact-visit-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.66) sepia(.08); }
.contact-visit-copy h2 { margin-top: 18px; font-size: clamp(46px,5.5vw,82px); line-height: .92; letter-spacing: -.045em; }
.contact-visit-copy > p { margin-top: 24px; max-width: 620px; color: var(--muted); font-size: var(--fs-lead); }
.contact-steps { list-style: none; margin-top: 34px; border-top: 1px solid var(--line); }
.contact-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-steps li > span { color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.contact-steps p { color: var(--muted); font-size: 13.5px; }
.contact-steps strong { display: block; margin-bottom: 3px; color: var(--ivory); font: 500 21px/1.1 var(--serif); }
.contact-visit-note { display: block; margin-top: 16px; color: rgba(244,238,227,.5); font-size: 11.5px; }
.content-status {
  position: relative;
  min-width: 0;
  padding: clamp(34px,5vw,66px);
  overflow: hidden;
  border: 1px solid rgba(234,213,167,.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%,rgba(107,41,71,.22),transparent 32%),
    rgba(255,255,255,.025);
}
.content-status::after {
  content: "M";
  position: absolute;
  right: -12px;
  bottom: -48px;
  color: rgba(234,213,167,.035);
  font: 500 210px/.8 var(--serif);
  pointer-events: none;
}
.content-status-wide { grid-column: 1 / -1; }
.content-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}
.content-status-badge i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(202,166,107,.1);
  animation: statusPulse 2.2s ease-in-out infinite;
}
@keyframes statusPulse { 50% { opacity: .45; box-shadow: 0 0 0 9px rgba(202,166,107,0); } }
.content-status h3 {
  max-width: 15ch;
  margin-top: 22px;
  color: var(--ivory);
  font: 500 clamp(38px,5vw,70px)/.94 var(--serif);
  letter-spacing: -.035em;
}
.content-status h3 em { color: var(--gold-light); font-weight: 500; }
.content-status p { max-width: 650px; margin: 20px 0 28px; color: var(--muted); font-size: var(--fs-lead); }
.content-status-light {
  border-color: var(--line-ink);
  background: rgba(255,255,255,.34);
}
.content-status-light::after { color: rgba(107,41,71,.035); }
.content-status-light .content-status-badge { color: var(--gold-deep); }
.content-status-light h3 { color: var(--plum); }
.content-status-light h3 em { color: var(--gold-deep); }
.content-status-light p { color: var(--ink-muted); }
.content-status-visual {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  min-height: 490px;
  padding: 0;
  background:
    radial-gradient(circle at 86% 14%,rgba(139,82,104,.26),transparent 34%),
    linear-gradient(135deg,#140f15,#21151d);
}
.home-project-grid:has(.content-status) { grid-auto-rows: auto; }
.content-status-visual::after { color: rgba(234,213,167,.028); }
.status-photo-stack { position: relative; min-width: 0; min-height: 490px; overflow: hidden; }
.status-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(234,213,167,.18);
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}
.status-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) sepia(.1) contrast(1.04); }
.status-photo-main { inset: 0 18% 0 0; border-radius: 0 48% 48% 0 / 0 24% 24% 0; }
.status-photo-detail { width: 42%; height: 52%; right: 4%; bottom: 7%; border-radius: 50% 50% 4px 4px / 24% 24% 4px 4px; }
.status-copy { position: relative; z-index: 1; min-width: 0; align-self: center; padding: clamp(34px,5vw,68px); }
.content-status-process {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr);
  align-items: center;
  gap: 20px;
  background:
    radial-gradient(circle at 88% 18%,rgba(232,209,206,.72),transparent 36%),
    linear-gradient(135deg,#fffaf3,#eee2d6);
}
.content-status-process .status-copy { padding: 0; }
.status-process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.status-process-grid > div {
  min-width: 0;
  min-height: 210px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(107,41,71,.13);
  border-radius: 50% 50% 8px 8px / 18% 18% 8px 8px;
  background: rgba(255,255,255,.48);
}
.status-process-grid > div:nth-child(2) { background: rgba(232,209,206,.46); }
.status-process-grid > div:nth-child(3) { background: rgba(223,196,142,.24); }
.status-process-grid span { margin-bottom: auto; color: var(--gold-deep); font-size: 10px; letter-spacing: .16em; }
.status-process-grid strong { color: var(--plum); font: 500 25px/1 var(--serif); }
.status-process-grid small { margin-top: 7px; color: var(--ink-muted); font-size: 11px; line-height: 1.45; }
.status-gallery {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10px;
  width: 100%;
  height: 320px;
  margin-bottom: 30px;
}
.status-gallery figure { min-width: 0; overflow: hidden; border: 1px solid rgba(234,213,167,.16); }
.status-gallery-main { border-radius: 50% 3px 3px 3px / 34% 3px 3px 3px; }
.status-gallery-side { border-radius: 3px 50% 3px 3px / 3px 24% 3px 3px; }
.status-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) sepia(.08); }
.pf-empty:has(.status-gallery) {
  max-width: 920px;
  border-style: solid;
  background: radial-gradient(circle at 90% 12%,rgba(107,41,71,.17),transparent 34%),rgba(255,255,255,.02);
}
.venue-status-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 48px;
  border: 1px solid var(--line-ink);
  border-radius: 14px;
  overflow: hidden;
}
.venue-status-grid > div { min-width: 0; padding: 26px; border-right: 1px solid var(--line-ink); }
.venue-status-grid > div:nth-child(1) { background: rgba(232,209,206,.24); }
.venue-status-grid > div:nth-child(2) { background: rgba(223,196,142,.13); }
.venue-status-grid > div:nth-child(3) { background: rgba(107,41,71,.055); }
.venue-status-grid > div:last-child { border-right: 0; }
.venue-status-grid span { color: var(--gold-deep); font-size: 10px; letter-spacing: .16em; }
.venue-status-grid small { display: block; margin-top: 38px; color: var(--gold-deep); font-size: 8px; letter-spacing: .18em; }
.venue-status-grid strong { display: block; margin-top: 8px; color: var(--plum); font: 500 25px/1.05 var(--serif); }
.venue-status-grid p { margin-top: 10px; color: var(--ink-muted); font-size: 13px; }
.build-status-strip .section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px,5vw,70px);
  padding-block: 30px;
}
.build-status-strip p { max-width: 700px; color: var(--ink-muted); font-size: 14px; }
.build-status-strip .content-status-badge { flex: none; color: var(--gold-deep); }
.status-track { display: flex; align-items: center; gap: 8px; margin-left: auto; color: var(--plum); }
.status-track::before { content: ""; width: 54px; height: 1px; background: rgba(107,41,71,.22); }
.status-track i { width: 8px; height: 8px; border-radius: 50%; border: 1px solid currentColor; }
.status-track i:first-child { background: var(--plum); box-shadow: 0 0 0 5px rgba(107,41,71,.08); }
.contact-editorial-photo img,.guide-article-photo img,.guide-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) sepia(.08) contrast(1.03);
}
.guide-article-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1fr);
  gap: clamp(42px,7vw,96px);
  align-items: start;
}
.guide-article-photo {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  height: min(68svh,720px);
  overflow: hidden;
  border-radius: 50% 50% 4px 4px / 20% 20% 4px 4px;
}

/* Hizmet listesi: renkli küçük kutular yerine aynı moda çekiminin kareleri gibi. */
.service-editorial {
  position: relative;
  transition: padding .45s var(--ease-out), background .45s, color .45s;
}
.service-editorial::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  background: color-mix(in srgb,var(--tone) 8%,transparent);
  opacity: 0;
  transition: opacity .4s;
}
.service-editorial:hover::before { opacity: 1; }
.service-editorial:hover { padding-left: 16px; padding-right: 16px; }
.service-editorial-art {
  border-radius: 50% 50% 6px 6px / 34% 34% 6px 6px;
  box-shadow: 0 18px 42px color-mix(in srgb,var(--tone) 20%,transparent);
}
.service-editorial-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.64) sepia(.12) contrast(1.03);
  transition: transform .8s var(--ease-out),filter .5s;
}
.service-editorial-art::before {
  z-index: 1;
  background: linear-gradient(0deg,color-mix(in srgb,var(--tone) 48%,rgba(23,18,24,.68)),transparent 62%);
  border-color: rgba(255,255,255,.3);
}
.service-editorial-art::after { z-index: 1; }
.service-editorial:hover .service-editorial-art > img { transform: scale(1.06); filter: saturate(.78) sepia(.06) contrast(1.04); }
.service-editorial-art span { z-index: 2; }
.service-editorial h3 { color: var(--plum); letter-spacing: -.025em; }
.service-editorial-link { color: var(--plum); }

/* Hizmet detaylarında kart ızgarasını daha rafine ve daha az şablonlu kılar. */
.why-grid {
  gap: 0;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.why-item,
.band-dark .why-item {
  min-height: 250px;
  padding: 32px 28px 34px;
  border: 0;
  border-right: 1px solid var(--line-ink);
  border-radius: 0;
  background: transparent;
}
.why-item:last-child { border-right: 0; }
.why-item i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(118,90,40,.35);
  border-radius: 50%;
}
.why-item h3 {
  margin-top: 54px;
  font-size: clamp(25px,2.3vw,34px);
  line-height: 1;
  color: var(--plum);
}
.why-item p { font-size: 14px; }
.scope-grid { gap: 24px; }
.scope-box {
  position: relative;
  padding: clamp(28px,4vw,46px);
  border: 1px solid rgba(73,52,59,.16);
  border-radius: 2px;
  background: rgba(255,255,255,.28);
}
.scope-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 88px;
  height: 2px;
  background: var(--gold-deep);
}
.scope-box h3 { font-size: clamp(26px,3vw,38px); color: var(--plum); }
.scope-box li { padding: 9px 0; border-bottom: 1px solid rgba(73,52,59,.08); }
.scope-box li:last-child { border-bottom: 0; }

.faq-btn { transition: color .3s,padding .35s var(--ease-out); }
.faq-btn:hover { padding-left: 12px; }
.cta-band { overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  width: 460px;
  aspect-ratio: 1;
  left: -220px;
  bottom: -300px;
  border: 1px solid rgba(107,41,71,.12);
  border-radius: 50%;
}
.contact-editorial address a { transition: color .3s,padding .35s var(--ease-out); }
.contact-editorial address a:hover { color: var(--plum); padding-left: 12px; padding-right: 12px; }

.footer { background: var(--night); }
.footer-invite { background: linear-gradient(125deg,var(--night-deep),#241620 72%,var(--night)); }

@keyframes mobileHeroBreathe {
  0% { transform:scale(1.035) translate3d(0,0,0); }
  50% { transform:scale(1.075) translate3d(-1.5%,1%,0); }
  100% { transform:scale(1.04) translate3d(1%,-1%,0); }
}
@keyframes mobileImageDrift {
  from { transform:scale(1.09) translate3d(0,-2.5%,0); }
  to { transform:scale(1.09) translate3d(0,2.5%,0); }
}
@keyframes mobileSheen {
  0%,62% { transform:translateX(-135%); }
  82%,100% { transform:translateX(135%); }
}

@media (hover:hover) and (pointer:fine) {
  .flower-sculpture { transition: transform .7s var(--ease-out); }
  .brand-reveal-object:hover .flower-sculpture,.venue-story-visual:hover .flower-sculpture { transform: rotate(4deg) scale(1.04); }
}

@media (max-width: 900px) {
  .brand-reveal,.venue-story { grid-template-columns: 1fr; }
  .brand-reveal-object,.venue-story-visual { min-height: 74svh; }
  .brand-flower,.venue-flower { width: min(82vw,620px); }
  .experience-card,.experience-card:nth-child(even) { grid-template-columns: 1fr; min-height: auto; position: relative; top: auto; border-radius: 0; }
  .experience-card:nth-child(even) .experience-card-visual { order: 0; }
  .experience-card-visual { min-height: 62svh; }
  .experience-flower { width: min(78vw,560px); }
  .experience-card-copy { min-height: 58svh; }
  .why-masal ol { grid-template-columns: 1fr 1fr; }
  .why-masal li:nth-child(2) { border-right: 0; }.why-masal li:nth-child(n+3) { border-top: 1px solid var(--line-ink); }
  .journey-shell { grid-template-columns: 1fr; min-height: 100svh; overflow-y: auto; }
  .journey-head { min-height: 34svh; padding: 76px 24px 36px; }
  .journey-form { min-height: 66svh; padding: 80px 24px 110px; }
}

@media (max-width: 760px) {
  .preloader-brand { left: 18px; top: 18px; }.preloader-count { right: 18px; bottom: 22px; }
  .topbar::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:var(--scroll-progress,0%);
    height:2px;
    background:linear-gradient(90deg,var(--plum),var(--gold-light));
    box-shadow:0 0 12px rgba(234,213,167,.4);
    transition:width .12s linear;
  }
  .preloader-flower { width: 82vw; }.preloader > p { font-size: 21px; }
  .bloom-hero { padding: 112px 18px 78px; align-items: flex-end; }
  .bloom-hero::before { background: linear-gradient(0deg,#120e12 0,rgba(24,16,22,.88) 52%,rgba(65,35,49,.2)),radial-gradient(circle at 65% 20%,#714054,#171117 68%); }
  .hero-flower { width: 110vw; right: -29vw; top: 5%; opacity: .78; }
  .hero-real-photo img { object-position: 58% 50%; }
  .hero-real-photo img { animation:mobileHeroBreathe 12s ease-in-out infinite alternate; will-change:transform; }
  .hero-real-photo::after { background: linear-gradient(0deg,rgba(13,10,14,.94) 0%,rgba(19,12,18,.7) 58%,rgba(13,10,14,.18)),linear-gradient(90deg,rgba(13,10,14,.5),transparent); }
  .hero-real-photo figcaption { right: 16px; bottom: 14px; }
  .bloom-hero h1 { font-size: clamp(45px,13.8vw,62px); line-height: .9; text-wrap: balance; }
  .bloom-hero h1 em,.bloom-hero-copy > p,.bloom-hero .hero-cta { margin-left: 0; }
  .bloom-hero-copy > p { font-size: 15px; margin-top: 24px; }
  .brand-reveal-object,.venue-story-visual { min-height: 72svh; }
  .brand-reveal-object,.venue-story-visual { min-height:62svh; }
  .brand-reveal-copy,.venue-story-copy { padding: 78px 22px 92px; }
  .brand-reveal h2,.experience-stack h2,.venue-story h2,.why-masal h2 { font-size: clamp(43px,12.8vw,59px); text-wrap: balance; }
  .experience-stack { padding-top: 80px; }
  .experience-stack-head { padding: 0 22px 64px; }
  .experience-cards { display:grid; gap:18px; padding:0 12px 30px; }
  .experience-card,.experience-card:nth-child(even) {
    display:grid;
    grid-template-columns:1fr;
    min-height:0;
    margin:0;
    border:1px solid rgba(73,52,59,.12);
    border-radius:24px;
    box-shadow:0 18px 48px rgba(45,26,35,.12);
    overflow:hidden;
  }
  .experience-card-visual { min-height:0; aspect-ratio:4/3; }
  .experience-card-copy { min-height:0; padding:36px 22px 46px; }
  .experience-card h3 { font-size: clamp(42px,12.5vw,54px); line-height:.92; text-wrap:balance; }
  .experience-card-copy p { font-size:15px; }
  .experience-card-copy a { margin-top:24px; }
  .why-masal { padding: 84px 22px; }
  .why-masal ol { grid-template-columns: 1fr; }
  .why-masal li,.why-masal li + li { min-height: 0; padding: 32px 0 42px; border-right: 0; border-top: 1px solid var(--line-ink); }
  .why-masal h3 { margin: 38px 0 12px; }
  .process-diary .diary-line { grid-template-columns: 1fr; }
  .journey-head { min-height: 32svh; }
  .journey-head h2 { font-size: 43px; }
  .journey-form { min-height: 68svh; display: flex!important; }
  .journey-form .lead-step { grid-template-columns: 1fr; }
  .journey-kicker { font-size: 37px; }
  .service-picks { grid-template-columns: 1fr; }
  .contact-editorial { grid-template-columns: 1fr; }
  .js .journey-sheet .journey-shell { max-height: 100svh; }
  .js .journey-sheet { background: var(--paper); }
  .band-dark > .page-hero {
    min-height: 74svh;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 72px;
  }
  .band-dark > .page-hero h1 { font-size: clamp(46px,14vw,66px); }
  .band-dark > .page-hero::before { width: 92vw; right: -52vw; top: 14%; opacity: .8; }
  .band-dark > .page-hero::after { width: 66vw; right: -30vw; opacity: .7; }
  .service-page-hero { padding-right: 18px; }
  .page-hero-photo {
    width: 100%;
    height: 100%;
    inset: 0;
    border: 0;
    border-radius: 0;
    opacity: .48;
  }
  .page-hero-photo::after { background: linear-gradient(0deg,rgba(13,10,14,.88),rgba(23,18,24,.44)),linear-gradient(90deg,rgba(13,10,14,.8),transparent); }
  .page-hero-photo figcaption { right: 14px; bottom: 12px; }
  .bloom-hero-copy,.brand-reveal-copy,.experience-card-copy,.venue-story-copy,
  .journey-head,.journey-form,.process-diary-intro,.closing-scene > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .section-label {
    max-width: 100%;
    gap: 8px;
    letter-spacing: .24em;
    line-height: 1.45;
    white-space: normal;
  }
  .section-label::before { width: 22px; flex: 0 0 22px; }
  .closing-scene {
    min-height: 92svh;
    padding: 86px 18px 112px;
  }
  .closing-scene h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(42px,12.2vw,56px);
    line-height: .91;
    letter-spacing: -.035em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }
  .closing-scene h2 br { display:block; }
  .closing-scene .section-label { justify-content:center; }
  .closing-scene .hero-cta { width:100%; max-width:360px; margin-inline:auto; }
  .closing-real-photo img { object-position:70% 50%; }
  .closing-real-photo::after { background:linear-gradient(0deg,rgba(13,10,14,.94),rgba(20,13,19,.58) 58%,rgba(13,10,14,.68)); }
  .closing-real-photo figcaption { right:14px; bottom:78px; }
  .closing-mark { max-width:100vw; overflow:hidden; font-size:84vw; bottom:-8%; }
  .hero-cta { gap:10px; }
  .hero-cta .btn { min-width:0; padding-inline:18px; white-space:normal; }
  h1,h2,h3,.lead,.eyebrow,.section-head,.footer-invite-line {
    max-inline-size: 100%;
    overflow-wrap: break-word;
  }
  .page-cta,.cta-band .hero-cta,.footer-invite-act {
    width:100%;
    max-width:380px;
  }
  .page-cta .btn,.cta-band .btn { width:100%; margin-inline:0; }
  .contact-editorial address a {
    gap:12px;
    padding-inline:0;
    font-size:clamp(21px,7vw,30px);
    overflow-wrap:anywhere;
  }
  .footer-inner,.footer-invite-inner,.footer-base { min-width:0; }
  .footer-col,.footer-brand,.footer-invite-line { min-width:0; }
  .footer-col a,.footer-social a,.prose a { overflow-wrap:anywhere; }
  .journey-form input,.journey-form select,.journey-form textarea,
  .service-picks span { max-width:100%; min-width:0; }
  .mobile-bar a { min-width:0; padding-inline:10px; text-align:center; line-height:1.2; }
  .js .mobile-fx {
    opacity:0;
    transform:translate3d(0,26px,0) scale(.985);
    transition:
      opacity .72s var(--ease-out) var(--mobile-delay,0ms),
      transform .82s var(--ease-out) var(--mobile-delay,0ms),
      clip-path .9s var(--ease-out) var(--mobile-delay,0ms);
  }
  .js .mobile-fx.is-inview { opacity:1; transform:none; }
  .js :is(.brand-reveal-object,.venue-story-visual).mobile-fx {
    clip-path:inset(8% 4% 8% 4% round 28px);
  }
  .js :is(.brand-reveal-object,.venue-story-visual).mobile-fx.is-inview {
    clip-path:inset(0 round 0);
  }
  .btn:active,.service-editorial-link:active { transform:scale(.975); }
  .experience-card:active { transform:scale(.992); }
  .btn-gold::before { animation:mobileSheen 5.2s ease-in-out infinite; }
  @supports (animation-timeline: view()) {
    :is(.brand-real-photo,.venue-real-photo,.experience-card-visual,.closing-real-photo) > img {
      animation:mobileImageDrift linear both;
      animation-timeline:view();
      animation-range:entry 0% exit 100%;
      will-change:transform;
    }
  }
  .why-grid { grid-template-columns: 1fr; }
  .why-item,.why-item:last-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line-ink);
  }
  .why-item:last-child { border-bottom: 0; }
  .why-item h3 { margin-top: 30px; }
  .service-editorial:hover { padding-left: 0; padding-right: 0; }
  .wa-fab { display: none; }
  .mobile-bar { left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); display: flex; }

  /* Mobil tipografi: font yüklenirken ve satır kırılırken yatay kayma oluşmasın. */
  :root {
    --fs-sm: 13px;
    --fs-base: 15px;
    --fs-lead: 16px;
  }
  body {
    width: 100%;
    min-width: 0;
    font-size: var(--fs-base);
    line-height: 1.62;
    overflow-wrap: normal;
  }
  main,header,footer,section,article,nav,form,
  main > *,section > *,article > *,
  .section,.section-inner,.page-hero,.container {
    min-width: 0;
    max-width: 100%;
  }
  h1,h2,h3,h4,p,li,blockquote,address,
  .lead,.section-head,.mobile-menu-label,.btn {
    min-width: 0;
    max-width: 100%;
    word-break: normal;
    hyphens: none;
  }
  h1,h2,h3,h4 {
    font-family: var(--serif);
    font-kerning: normal;
    font-variant-ligatures: common-ligatures;
    text-wrap: balance;
    overflow-wrap: break-word;
  }
  p,li,.lead,.btn,.mobile-menu-foot {
    font-family: var(--sans);
    text-wrap: pretty;
  }
  .bloom-hero h1 {
    width: 100%;
    font-size: clamp(43px,12.5vw,56px);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .brand-reveal h2,.experience-stack h2,.venue-story h2,.why-masal h2 {
    font-size: clamp(40px,11.7vw,52px);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .experience-card h3 {
    font-size: clamp(38px,11vw,48px);
    line-height: .96;
    letter-spacing: -.025em;
  }
  .band-dark > .page-hero h1 {
    font-size: clamp(42px,12.5vw,57px);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .journey-head h2,.journey-kicker {
    font-size: clamp(34px,10vw,43px);
    line-height: .98;
  }
  .closing-scene h2 {
    font-size: clamp(40px,11.4vw,52px);
    line-height: .94;
  }
  .mobile-menu-nav > a {
    grid-template-columns: 28px minmax(0,1fr) 24px;
    transform: translateY(12px);
  }
  .mobile-menu-label {
    font-size: clamp(24px,6.7vw,30px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .mobile-menu-action p { font-family: var(--serif); }
  .mobile-menu-cta {
    min-width: 0;
    gap: 12px;
    font-size: 12.5px !important;
    letter-spacing: .045em;
    text-align: left;
  }
  .mobile-menu-cta > span:first-child { min-width: 0; overflow-wrap: break-word; }
  .btn {
    line-height: 1.35;
    overflow-wrap: break-word;
  }
}

@media (max-width: 380px) {
  .brand-copy strong { font-size: 13px; letter-spacing: .3em; }
  .brand-copy small { font-size: 9px; letter-spacing: .38em; }
  .mobile-menu-inner { padding-inline: 18px; }
  .mobile-menu-heading { gap: 10px; }
  .mobile-menu-heading span { letter-spacing: .22em; }
  .mobile-menu-heading small { font-size: 12px; }
  .mobile-menu-nav > a { min-height: 61px; }
  .mobile-menu-foot { align-items: flex-start; }
  .mobile-menu-foot > div { gap: 10px; }
  .section-label,.eyebrow { letter-spacing: .18em; }
  .bloom-hero,.closing-scene { padding-inline: 16px; }
}

@media (max-width: 900px) {
  .editorial-story-grid,.guide-article-layout,
  .contact-salon-grid,.contact-visit-grid { grid-template-columns: 1fr; }
  .editorial-story-grid > .editorial-mosaic,
  .guide-article-photo { position: relative; top: auto; }
  .guide-article-photo { height: min(62svh,620px); }
  .contact-salon-grid,.contact-visit-grid { gap: 42px; }
}

@media (max-width: 760px) {
  .band-dark > .page-hero:has(.page-hero-photo) { padding-right: 18px; }
  .editorial-mosaic {
    grid-template-rows: repeat(10,34px);
    gap: 8px;
    margin-bottom: 30px;
  }
  .editorial-mosaic-item-1 { grid-column: 1 / 9; grid-row: 1 / 8; }
  .editorial-mosaic-item-2 { grid-column: 9 / 13; grid-row: 2 / 6; }
  .editorial-mosaic-item-3 { grid-column: 7 / 13; grid-row: 6 / 11; }
  .editorial-story-grid { gap: 34px; }
  .editorial-story-grid > .editorial-mosaic { grid-template-rows: repeat(10,34px); }
  .contact-editorial-photo { height: 58svh; margin-top: 28px; }
  .contact-salon-intro h2,.contact-visit-copy h2 {
    font-size: clamp(40px,11.4vw,52px);
    line-height: .95;
    letter-spacing: -.035em;
  }
  .contact-channel { grid-template-columns: 26px minmax(0,1fr) 36px; gap: 10px; padding: 20px 8px; }
  .contact-channel strong { font-size: clamp(23px,7.2vw,30px); line-height: 1.05; }
  .contact-channel b { width: 34px; height: 34px; }
  .contact-visit-photo { height: 60svh; order: 2; }
  .contact-visit-copy { order: 1; min-width: 0; }
  .contact-visit-copy .hero-cta { width: 100%; max-width: 360px; }
  .contact-visit-copy .btn { width: 100%; }
  .content-status { padding: 30px 22px; border-radius: 14px; }
  .content-status::after { font-size: 150px; bottom: -30px; }
  .content-status h3 { font-size: clamp(36px,10.8vw,48px); line-height: .96; }
  .content-status p { font-size: 15px; }
  .content-status-visual { grid-template-columns: 1fr; min-height: 0; padding: 0; }
  .status-photo-stack { min-height: 340px; }
  .status-photo-main { right: 12%; }
  .status-photo-detail { width: 38%; height: 48%; }
  .content-status-visual .status-copy { padding: 30px 22px 36px; }
  .content-status-process { grid-template-columns: 1fr; gap: 26px; }
  .content-status-process .status-copy { padding: 0; }
  .status-process-grid > div { min-height: 150px; padding: 15px 11px; }
  .status-process-grid strong { font-size: 21px; }
  .status-gallery { height: 220px; margin-bottom: 24px; }
  .venue-status-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .venue-status-grid > div,.venue-status-grid > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-ink);
    padding: 22px;
  }
  .venue-status-grid > div:last-child { border-bottom: 0; }
  .venue-status-grid small { margin-top: 24px; }
  .build-status-strip .section { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 24px; }
  .status-track { margin-left: 0; }
  .guide-article-layout { gap: 32px; }
  .guide-article-photo { height: 54svh; }
  .guide-card-photo { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .film-grain,.flower-sculpture,.preloader-flower { animation: none!important; }
  [data-parallax] { transform: none!important; }
}
