/* ============================================================
   VADİ RESTORAN — Tasarım sistemi
   Rustik & bohem · orman yeşili + toprak/krem · dere kenarı
   ============================================================ */

:root {
  /* Zemin & nötrler — fildişi (marka: lacivert + altın) */
  --cream:        #F1EFE7;   /* ana zemin */
  --cream-2:      #E7E4D8;   /* paneller / kartlar */
  --cream-3:      #D8D4C4;   /* daha koyu panel / placeholder */
  --paper:        #F8F6F0;   /* açık yüzey */

  /* Lacivert — koyu bölümler (PDF marka rengi #131736) */
  --forest:       #131736;   /* lacivert — koyu bölümler */
  --forest-deep:  #0C0F26;   /* en koyu lacivert */
  --olive:        #8A7338;   /* koyu altın — fiyat / italik aksan (açık zemin) */
  --sage:         #C9B47A;   /* açık altın — koyu zemin üstü aksan */

  /* Altın aksanlar (PDF marka rengi #A38C54) */
  --terra:        #A38C54;   /* marka altını — ana aksan */
  --terra-soft:   #C2A968;
  --terra-text:   #76622F;   /* açık zeminde erişilebilir altın metin */
  --bark:         #836E3F;   /* koyu altın — hover */

  /* Metin */
  --ink:          #1A1E33;   /* lacivert mürekkep gövde metni */
  --ink-soft:     #50556B;
  --on-dark:      #F0ECDD;   /* lacivert zemin üstü metin */
  --on-dark-soft: #BDBBA6;

  /* Çizgiler */
  --line:         rgba(26, 30, 51, 0.16);
  --line-dark:    rgba(240, 236, 221, 0.18);

  /* Tipografi */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 360;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--terra-soft);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 3px;
  background: var(--paper);
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- Yardımcılar ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }

/* Görsel placeholder — gerçek foto gelene kadar */
.ph {
  position: relative;
  background-color: var(--cream-3);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(122,79,46,0.12) 0px,
      rgba(122,79,46,0.12) 2px,
      transparent 2px,
      transparent 11px);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--olive);
}
.ph::after {
  content: attr(data-label);
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--olive);
  background: rgba(243, 238, 225, 0.82);
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  max-width: 80%;
  text-align: center;
  line-height: 1.4;
}
.ph-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: block;
  opacity: 0; transition: opacity 0.9s var(--ease);
}
.ph-img.loaded { opacity: 1; }
.ph.on-dark {
  background-color: #2A1C12;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(237,230,214,0.07) 0px,
      rgba(237,230,214,0.07) 2px,
      transparent 2px,
      transparent 11px);
  border-color: var(--line-dark);
}
.ph.on-dark::after {
  color: var(--on-dark-soft);
  background: rgba(30, 20, 14, 0.7);
  border-color: var(--line-dark);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.solid {
  background: rgba(243, 238, 225, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 13px;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--on-dark); transition: color 0.4s var(--ease); }
.nav.solid .brand { color: var(--ink); }
.brand .mark { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: 0.02em; }
.brand .sub { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; margin-top: 4px; opacity: 0.78; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--on-dark); position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav.solid .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--terra); transition: right 0.35s var(--ease);
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { right: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 44px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em;
  padding: 12px 22px; border-radius: 2px; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-primary { background: var(--terra); color: var(--forest); }
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn-ghost { border-color: currentColor; color: var(--on-dark); }
.nav.solid .btn-ghost { color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--on-dark); border-color: var(--forest); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--forest); color: var(--on-dark); border-color: var(--forest); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: rgba(12, 15, 38, 0.62);
  border: 1px solid rgba(240, 236, 221, 0.34);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 46px;
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--on-dark); transition: 0.3s var(--ease); }
.nav.solid .nav-toggle { background: var(--paper); border-color: var(--line); }
.nav.solid .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; background: #131736; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* Slider katmanları */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.07);
  transition: opacity 1.4s var(--ease);
  will-change: opacity, transform;
}
.hero-slide:first-child { background-image: url("img/hero-1.webp"); }
.hero-slide.is-active {
  opacity: 1; transform: scale(1);
  transition: opacity 1.4s var(--ease), transform 6.5s var(--ease);
}
/* Okunurluk için karartma — alt ve sol-alt köşe koyu, orta açık */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,10,26,0.55) 0%, rgba(10,12,30,0.12) 30%, rgba(8,10,26,0.44) 60%, rgba(6,8,22,0.94) 100%),
    linear-gradient(72deg, rgba(6,8,22,0.68) 0%, rgba(6,8,22,0.18) 42%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(54px, 9vh, 110px); }
.hero h1, .hero-tag { text-shadow: 0 2px 32px rgba(6,8,22,0.6); }
.hero-eyebrow, .hero-meta span { text-shadow: 0 1px 14px rgba(6,8,22,0.7); }
/* Hero slider noktaları */
.hero-dots { display: flex; gap: 0; margin-top: 24px; margin-left: -12px; }
.hero-dots button {
  width: 40px; height: 40px; padding: 0; border: 0; border-radius: 999px;
  background: transparent; cursor: pointer; position: relative;
  display: grid; place-items: center;
  transition: width 0.4s var(--ease);
}
.hero-dots button::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(241,231,213,0.72); background: transparent;
  transition: width 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.hero-dots button:hover::before { border-color: var(--terra-soft); }
.hero-dots button.is-active { width: 52px; }
.hero-dots button.is-active::before { width: 30px; border-radius: 5px; background: var(--terra); border-color: var(--terra); }
.hero-eyebrow { color: var(--terra-soft); margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(76px, 17vw, 230px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.86;
  margin: 0;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 3.4vw, 38px); font-weight: 400;
  color: var(--on-dark); max-width: 30ch; margin-top: 26px; line-height: 1.3;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 34px; }
.hero-meta span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-dark-soft); display: inline-flex; align-items: center; gap: 11px;
}
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-soft);
}
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(var(--on-dark-soft), transparent); animation: cueDrop 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cueDrop { 0% { transform: scaleY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ============================================================
   HİKAYE
   ============================================================ */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.story-copy h2 { font-size: clamp(38px, 5.4vw, 70px); margin: 22px 0 0; }
.story-copy h2 em { font-style: italic; color: var(--olive); }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); margin: 26px 0 0; max-width: 46ch; }
.story-copy p + p { margin-top: 18px; }
.story-sign { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--forest); margin-top: 30px; }
.story-media { position: relative; }
.story-media .ph.main { aspect-ratio: 4 / 5; border-radius: 3px; }
.story-media .ph.inset {
  position: absolute; bottom: -34px; left: -34px; width: 46%; aspect-ratio: 1 / 1;
  border-radius: 3px; box-shadow: 0 24px 50px -22px rgba(28,38,28,0.5); border-width: 4px; border-color: var(--cream);
}
.story-stats { display: flex; gap: clamp(28px, 5vw, 60px); margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat .n { font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); color: var(--forest); line-height: 1; }
.stat .l { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   ÖZELLİKLER
   ============================================================ */
.features { background: var(--forest); color: var(--on-dark); }
.features .eyebrow { color: var(--terra-soft); }
.features h2 { color: var(--on-dark); font-size: clamp(34px, 4.6vw, 58px); max-width: 18ch; margin-top: 18px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); margin-top: 60px; }
.feat {
  background: rgba(237,230,214,0.04); border: 1px solid var(--line-dark);
  border-radius: 3px; overflow: hidden; transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.feat:hover { transform: translateY(-8px); background: rgba(237,230,214,0.07); }
.feat .ph { aspect-ratio: 5 / 4; border: 0; border-bottom: 1px solid var(--line-dark); }
.feat-body { padding: 28px 28px 32px; }
.feat .num { font-family: var(--serif); font-size: 15px; color: var(--terra-soft); letter-spacing: 0.1em; }
.feat h3 { font-size: 30px; margin: 10px 0 0; color: var(--on-dark); }
.feat p { font-size: 15.5px; color: var(--on-dark-soft); margin: 12px 0 0; }
.features .feat-sub { margin-top: clamp(56px, 8vw, 92px); }

/* ============================================================
   MENÜ
   ============================================================ */
.menu { background: var(--paper); }
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.menu-head h2 { font-size: clamp(40px, 5.6vw, 74px); }
.menu-head h2 em { font-style: italic; color: var(--olive); }
.menu-head p { max-width: 36ch; color: var(--ink-soft); margin: 0; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); margin-top: 64px; }
.menu-cat + .menu-cat { margin-top: 52px; }
.menu-cat h3 {
  font-size: 14px; font-family: var(--sans); font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra-text); display: flex; align-items: center; gap: 16px; margin-bottom: 8px;
}
.menu-cat h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.m-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.m-item:last-child { border-bottom: 0; }
.m-name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); }
.m-desc { font-size: 14px; color: var(--ink-soft); grid-column: 1 / 2; margin-top: 3px; max-width: 42ch; }
.m-price { font-family: var(--serif); font-size: 22px; color: var(--terra-text); white-space: nowrap; }
.m-tag { display: inline-block; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra-text); border: 1px solid var(--terra-text); border-radius: 2px; padding: 2px 6px; margin-left: 9px; vertical-align: middle; }
.menu-note {
  margin-top: 64px; padding: 30px 34px; background: var(--cream-2); border-left: 3px solid var(--terra); border-radius: 2px;
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: space-between;
}
.menu-note p { margin: 0; max-width: 52ch; }
.menu-note .t { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--forest); }

/* ============================================================
   GALERİ
   ============================================================ */
.gallery { background: var(--cream); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 56px; }
.gal-item { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.gal-item:focus-visible { outline-color: var(--terra-text); outline-offset: 4px; }
.gal-item .ph { width: 100%; height: 100%; border: 0; transition: transform 0.7s var(--ease); }
.gal-item:hover .ph { transform: scale(1.05); }
.gal-item::after {
  content: "↗"; position: absolute; top: 14px; right: 16px; color: var(--on-dark);
  opacity: 0; transform: translateY(-6px); transition: 0.4s var(--ease); font-size: 18px;
  background: rgba(28,38,28,0.5); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
}
.gal-item:hover::after { opacity: 1; transform: none; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(26,16,10,0.93); display: none; place-items: center; padding: 5vw; }
.lightbox.open { display: grid; animation: fade 0.3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox .ph { width: min(80vw, 1000px); height: min(72vh, 720px); background: transparent; }
.lightbox .ph-img { object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 20px; width: 48px; height: 48px; background: rgba(12,15,38,0.68); border: 1px solid var(--line-dark); border-radius: 50%; color: var(--on-dark); font-size: 34px; line-height: 1; }

/* ============================================================
   İLETİŞİM & KONUM
   ============================================================ */
.contact { background: var(--forest-deep); color: var(--on-dark); }
.contact .eyebrow { color: var(--terra-soft); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 88px); margin-top: 14px; align-items: start; }
.contact h2 { color: var(--on-dark); font-size: clamp(38px, 5.2vw, 66px); margin-top: 18px; }
.contact h2 em { font-style: italic; color: var(--sage); }
.info-row { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.info-row:first-of-type { border-top: 1px solid var(--line-dark); margin-top: 30px; }
.info-row .k { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-soft); width: 96px; flex-shrink: 0; padding-top: 4px; }
.info-row .v { font-size: 17px; color: var(--on-dark); min-width: 0; overflow-wrap: anywhere; }
.info-row .v a:hover { color: var(--terra-soft); }
.info-row .v .small { font-size: 14px; color: var(--on-dark-soft); }

/* Rezervasyon formu */
.res-card { background: rgba(237,230,214,0.05); border: 1px solid var(--line-dark); border-radius: 4px; padding: clamp(26px, 4vw, 44px); }
.res-card h3 { font-size: 30px; color: var(--on-dark); }
.res-card > p { color: var(--on-dark-soft); margin: 8px 0 26px; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); }
.field input, .field select {
  font-family: var(--sans); font-size: 15px; color: var(--on-dark);
  background: rgba(26,16,10,0.4); border: 1px solid var(--line-dark); border-radius: 2px;
  padding: 13px 14px; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder { color: var(--on-dark-soft); opacity: 0.6; }
.field input:focus, .field select:focus { outline: none; border-color: var(--terra); background: rgba(26,16,10,0.6); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23CBB698' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
.res-submit { width: 100%; justify-content: center; margin-top: 22px; padding-block: 15px; }
.res-success { display: none; text-align: center; padding: 20px 0; }
.res-success.show { display: block; animation: fade 0.4s var(--ease); }
.res-success .t { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--sage); }
.res-success p { color: var(--on-dark-soft); margin-top: 8px; }

.map-wrap { margin-top: 24px; }
.map-wrap .ph { aspect-ratio: 16 / 7; border-radius: 4px; }

.contact-options {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 56px -36px rgba(12, 15, 38, 0.5);
}
.contact-options.on-dark {
  border-color: var(--line-dark);
  background: rgba(240, 236, 221, 0.055);
  color: var(--on-dark);
  box-shadow: none;
}
.contact-options .contact-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-text);
}
.contact-options.on-dark .contact-kicker { color: var(--terra-soft); }
.contact-options h3 { font-size: clamp(30px, 4vw, 46px); color: inherit; }
.contact-options p { margin: 0; color: var(--ink-soft); max-width: 42ch; }
.contact-options.on-dark p { color: var(--on-dark-soft); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.contact-actions .btn { justify-content: center; }
.contact-note { font-size: 13px; color: var(--ink-soft); }
.contact-options.on-dark .contact-note { color: var(--on-dark-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-deep); color: var(--on-dark-soft); padding: 54px var(--gutter) 40px; border-top: 1px solid var(--line-dark); }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 28px; }
.footer .mark { font-family: var(--serif); font-size: 40px; color: var(--on-dark); line-height: 1; }
.footer .mark .sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; display: block; margin-top: 8px; color: var(--on-dark-soft); }
.footer-social { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 26px; max-width: 100%; }
.footer-social a { min-height: 44px; display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; }
.footer-social a:hover { color: var(--terra-soft); }
.footer-bottom { max-width: var(--maxw); margin: 36px auto 0; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; letter-spacing: 0.04em; }

/* ============================================================
   MOBİL
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--forest-deep); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; transform: translateY(-100%); visibility: hidden; pointer-events: none; transition: transform 0.5s var(--ease), visibility 0s linear 0.5s; }
.mobile-menu.open { transform: none; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.mobile-menu a { font-family: var(--serif); font-size: 38px; color: var(--on-dark); }
.mobile-menu a:hover { color: var(--terra-soft); }
.mobile-menu .btn { margin-top: 20px; }
.mobile-close { position: absolute; top: 18px; right: 20px; width: 48px; height: 48px; background: none; border: 0; color: var(--on-dark); font-size: 40px; line-height: 1; }

.subnav-toggle,
.subnav-close { display: none; }
.subnav.menu-open .brand,
.subnav.menu-open .subnav-toggle { opacity: 0; pointer-events: none; }

@media (max-width: 900px) {
  .nav-links, .nav .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 480px; margin: 0 auto; }
  .story-media .ph.inset { width: 42%; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .eyebrow { letter-spacing: 0.23em; }
  .eyebrow::before, .eyebrow.center::after { width: 18px; }
  .hero h1 { font-size: clamp(64px, 22vw, 110px); }
  .story-stats { flex-wrap: wrap; gap: 26px; }
  .story-media .ph.inset { left: 0; }
  .gal-grid { gap: 10px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-social { justify-content: flex-start; gap: 4px 18px; }
  .info-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .info-row .k { width: auto; }
  .m-item { grid-template-columns: minmax(0, 1fr) auto; }
}

@media (max-width: 760px) {
  .subnav {
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-block: 10px;
  }
  .subnav .brand { z-index: 102; }
  .subnav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .subnav nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 72px 24px 34px;
    background: var(--forest-deep);
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
  }
  .subnav nav.open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .subnav nav a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    font-family: var(--serif);
    font-size: clamp(30px, 10vw, 42px);
    color: var(--on-dark);
  }
  .subnav nav a.active { color: var(--terra-soft); }
  .subnav nav .btn {
    margin-top: 14px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--forest-deep);
    border-color: var(--terra);
    background: var(--terra);
  }
  .subnav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: transparent;
    color: var(--on-dark);
    font-size: 36px;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  .hero-slide:first-child { background-image: url("img/hero-1-mobile.webp"); }
}

/* ============================================================
   MARKA LOGOSU
   ============================================================ */
/* Anasayfa nav: hero üstünde altın, katı (solid) zeminde lacivert logo */
.brand .logo-img { display: block; height: 46px; width: auto; }
.brand .logo-dark { display: none; }
.nav.solid .brand .logo-light { display: none; }
.nav.solid .brand .logo-dark { display: block; }
/* Alt sayfa nav + menü nav: lacivert logo (açık zemin) */
.subnav .brand .logo-img,
.menu-page-nav .brand .logo-img { display: block; height: 42px; width: auto; }
/* Footer: altın logo (lacivert zemin) */
.footer .brand-logo { height: 58px; width: auto; display: block; }

/* ============================================================
   ÖZEL ALANLAR (Aile · Toplantı · VIP Fanus)
   ============================================================ */
.spaces { background: var(--paper); }
.spaces .eyebrow { color: var(--terra); }
.spaces h2 { font-size: clamp(34px, 4.8vw, 60px); color: var(--ink); margin-top: 16px; max-width: 20ch; }
.spaces h2 em { font-style: italic; color: var(--olive); }
.spaces .sub { color: var(--ink-soft); max-width: 56ch; margin-top: 18px; }
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); margin-top: 56px; }
.space-card { background: var(--cream); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.space-card:hover { transform: translateY(-7px); box-shadow: 0 28px 54px -32px rgba(28,38,28,0.5); }
.space-card .ph { aspect-ratio: 4 / 5; border: 0; border-bottom: 1px solid var(--line); }
.space-body { padding: 24px 24px 28px; }
.space-body .k { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); }
.space-body h3 { font-size: 27px; margin: 9px 0 0; color: var(--ink); }
.space-body p { font-size: 15px; color: var(--ink-soft); margin: 11px 0 0; }
.space-body .fit { margin-top: 16px; font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; }
.space-body .fit::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex: 0 0 auto; }

/* ============================================================
   WHATSAPP SABİT BUTON
   ============================================================ */
.wa-fab { position: fixed; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); z-index: 80; min-height: 50px; display: inline-flex; align-items: center; gap: 10px; background: #147A3A; color: #fff; padding: 13px 19px 13px 15px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.42); font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.wa-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 38px -8px rgba(0,0,0,0.48); color: #fff; }
.wa-fab svg { display: block; }
.wa-fab span { line-height: 1; }

@media (max-width: 900px) {
  .space-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 540px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: 14px; }
}
