/* ==========================================================================
   Delmece Yaylası Tabiat Parkı — Design System v3
   Kurumsal palet ve Poppins korunur. Bu sürüm yerleşimi havalandırır,
   çerçeveli hero + yüzen menü kurar ve hareketi zenginleştirir.
   Tüm hareket prefers-reduced-motion tercihine saygı duyar.
   ========================================================================== */

:root {
  /* Kurumsal renkler — değiştirilmedi */
  --olive: #555A4B;
  --sage: #807D61;
  --sage-light: #CBCBB7;
  --cream: #CBCBB7;
  --orange: #844243;
  --orange-dark: #7A6958;
  --white: #FEFEFE;
  --text: #606161;

  /* Kurumsal renklerden türetilen yüzey tonları */
  --paper: #F2F2EC;          /* --sage-light'ın açık tonu: sayfa zemini */
  --paper-2: #E8E9DF;        /* ara zemin */
  --olive-deep: #3E4237;     /* --olive'in koyu tonu: gece bölümleri */
  --line: rgba(128, 125, 97, 0.22);
  --line-strong: rgba(128, 125, 97, 0.38);

  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1240px;
  --radius-sm: 0.65rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.25rem;
  --radius-2xl: 2.75rem;

  --shadow-soft: 0 20px 45px -20px rgba(52, 54, 47, 0.22);
  --shadow-card: 0 14px 34px -18px rgba(52, 54, 47, 0.26);
  --shadow-lift: 0 36px 70px -30px rgba(52, 54, 47, 0.45);
  --shadow-float: 0 18px 40px -22px rgba(30, 32, 27, 0.55);

  --header-h: 4.25rem;
  --mobile-bar-h: 4rem;
  --frame: 0.75rem;          /* çerçeveli hero boşluğu */

  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.22, .9, .3, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; text-wrap: pretty; }
button { font: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--olive);
  margin: 0 0 0.6em;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.35rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); line-height: 1.12; }
h3 { font-size: 1.2rem; line-height: 1.3; }

/* Sabit menünün altına kayan çapa hedefleri */
[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

.container {
  width: min(100% - 2.5rem, var(--container-w));
  margin-inline: auto;
}

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

/* Yönetim panelinde içeriği boşaltılan alanlar sayfada boş bir kutu
   bırakmasın diye tamamen gizlenir (bkz. main.js applyContent). */
.is-empty { display: none !important; }

.skip-link {
  position: fixed; left: 1rem; top: -4rem;
  background: var(--olive); color: var(--white);
  padding: 0.7rem 1.1rem; border-radius: var(--radius-sm);
  z-index: 400; transition: top 0.18s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection { background: rgba(132, 66, 67, 0.2); }

/* ==========================================================================
   Butonlar
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }

.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #8E4A4B 0%, var(--orange) 60%, #77393A 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px -14px rgba(132, 66, 67, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn--secondary {
  position: relative;
  background: var(--white);
  color: var(--olive);
  border-color: var(--line-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.btn--secondary:hover { border-color: var(--olive); color: var(--olive); }

.btn--on-dark {
  background: rgba(254, 254, 254, 0.08);
  color: var(--cream);
  border-color: rgba(203, 203, 183, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--on-dark:hover { border-color: var(--cream); color: var(--white); background: rgba(254,254,254,0.14); }

/* ==========================================================================
   Yüzen üst menü
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: var(--frame) 0 0;
  pointer-events: none;
}
.site-header .container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-inline: 1.15rem;
  border-radius: var(--radius-xl);
  /* Hero fotoğrafı yeşil bir orman dokusu olduğu için menü, aynı ton
     aralığına düşüp erimesin diye belirgin biçimde koyu ve nötr tutulur;
     ince açık kenarlık + gölge onu fotoğraftan ayırır. Beyaz alt sayfa
     panellerinde de aynı koyuluk okunurluğu korur. */
  background: linear-gradient(180deg, rgba(26, 29, 24, 0.86), rgba(26, 29, 24, 0.76));
  border: 1px solid rgba(203, 203, 183, 0.26);
  box-shadow: 0 14px 34px -20px rgba(16, 18, 14, 0.8);
  /* saturate < 1: camdan sızan yeşil doygunluğu düşürülür, menü nötr kalır */
  backdrop-filter: blur(18px) saturate(0.75);
  -webkit-backdrop-filter: blur(18px) saturate(0.75);
}
.site-header.is-scrolled .container {
  min-height: 3.6rem;
  background: rgba(22, 25, 20, 0.93);
  border-color: rgba(203, 203, 183, 0.24);
  box-shadow: var(--shadow-float);
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand__mark { width: auto; height: 2.35rem; flex-shrink: 0; }
.brand__word { display: flex; flex-direction: column; line-height: 1.12; }
.brand__word strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand__word span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(203, 203, 183, 0.8);
  text-transform: uppercase;
}

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0.35rem; }
.main-nav a {
  position: relative;
  display: block;
  color: rgba(203, 203, 183, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
.main-nav a:hover { color: var(--white); background: rgba(254, 254, 254, 0.1); }
/* Aktif sayfa kurumsal bordo ile işaretlenir: yeşil fotoğrafın üstünde
   menüye sıcak bir renk çıpası verir. */
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--orange);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  color: var(--cream);
  flex-shrink: 0;
  border: 1px solid rgba(203, 203, 183, 0.22);
}
.nav-toggle svg { width: 1.45rem; height: 1.45rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav-panel { pointer-events: auto; }
.mobile-nav-panel .container {
  /* ÖNEMLİ: yukarıdaki ".site-header .container" kuralı bu paneli de
     yakalar. Flex satır düzeni ve menü yüksekliği burada sıfırlanmazsa
     menü bağlantıları ile buton yan yana dizilip panelden taşar. */
  display: block;
  min-height: 0;
  margin-top: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(26, 29, 24, 0.95);
  border: 1px solid rgba(203, 203, 183, 0.22);
  backdrop-filter: blur(18px) saturate(0.75);
  -webkit-backdrop-filter: blur(18px) saturate(0.75);
  box-shadow: var(--shadow-float);
}
.mobile-nav-panel ul { display: grid; gap: 0.15rem; margin-bottom: 0.85rem; }
.mobile-nav-panel a {
  display: block;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
}
.mobile-nav-panel a:hover { background: rgba(254, 254, 254, 0.07); }
/* Bordo yalnızca eylem butonuna ayrılır; aktif sayfa daha sakin bir
   vurguyla işaretlenir ki iki bordo blok üst üste yığılmasın. */
.mobile-nav-panel a[aria-current="page"] {
  color: var(--white);
  background: rgba(254, 254, 254, 0.1);
  box-shadow: inset 3px 0 0 var(--orange);
}
/* Panel içindeki eylem butonu tam genişlikte durur */
.mobile-nav-panel .btn {
  display: flex;
  width: 100%;
  white-space: normal;
  text-align: center;
  margin-top: 0.15rem;
}
.mobile-nav-panel ul { border-bottom: 1px solid rgba(203, 203, 183, 0.14); padding-bottom: 0.85rem; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav-panel { display: none !important; }
}

/* ==========================================================================
   Hero — çerçeveli, sinematik
   ========================================================================== */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88svh, 52rem);
  margin: var(--frame);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--olive-deep);
  isolation: isolate;
}
.hero .photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  will-change: transform;
}
.hero .photo-frame img { height: 100%; }

/* Işık perdesi: metnin okunduğu sol taraf koyu, sağ taraf açık kalır */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    /* Üst bant: yüzen menünün arkası, hangi fotoğraf yüklenirse yüklensin
       hafifçe koyulaşır; menü fotoğrafın içinde kaybolmaz. */
    linear-gradient(180deg, rgba(16,18,14,0.6) 0%, rgba(16,18,14,0.28) 12%, rgba(16,18,14,0) 22%),
    linear-gradient(180deg, rgba(30,32,27,0.5) 0%, rgba(30,32,27,0.35) 40%, rgba(24,26,21,0.9) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background-image: var(--grain);
  background-size: 220px;
  opacity: 0.07;
  pointer-events: none;
}
@media (min-width: 900px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(16,18,14,0.62) 0%, rgba(16,18,14,0.3) 11%, rgba(16,18,14,0) 20%),
      linear-gradient(95deg, rgba(24,26,21,0.88) 0%, rgba(24,26,21,0.6) 38%, rgba(24,26,21,0.14) 72%, rgba(24,26,21,0.04) 100%),
      linear-gradient(180deg, rgba(30,32,27,0.3) 0%, rgba(30,32,27,0.1) 45%, rgba(24,26,21,0.72) 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  /* İçerik uzun olduğunda yüzen menünün altına girmesin */
  padding-block: calc(var(--header-h) + 2.25rem) 3.75rem;
  color: var(--white);
}
.hero-content .eyebrow { color: rgba(203, 203, 183, 0.92); }
.hero-content h1 {
  color: var(--white);
  max-width: 17ch;
  margin-bottom: 0.5em;
}
.hero-content h1 .word { display: inline-block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero-content h1 .word > span { display: inline-block; }
.hero-content p {
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(254, 254, 254, 0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.9rem;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.09);
  border: 1px solid rgba(254, 254, 254, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-meta svg { width: 1rem; height: 1rem; opacity: 0.85; }

.scroll-cue {
  display: none;
  position: absolute;
  right: 2.75rem; bottom: 2.5rem;
  z-index: 4;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(203, 203, 183, 0.72);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.scroll-cue__line {
  width: 1px; height: 3rem;
  background: linear-gradient(180deg, rgba(203,203,183,0), rgba(203,203,183,0.85));
}
@media (min-width: 900px) {
  .scroll-cue { display: flex; }
  .hero-content { padding-block: calc(var(--header-h) + 3rem) 4.5rem; }
}
@media (max-width: 639px) {
  .hero-meta { display: none; }
  .hero { min-height: min(86svh, 40rem); border-radius: var(--radius-xl); }
}

/* ==========================================================================
   Alt sayfa girişi
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  margin: var(--frame);
  border-radius: var(--radius-2xl);
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -8%; top: -60%;
  width: 42rem; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 203, 183, 0.55), rgba(203, 203, 183, 0) 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); max-width: 22ch; }
.page-hero p.lead { color: var(--sage); max-width: 46rem; font-size: 1.08rem; }

/* ==========================================================================
   Bölümler
   ========================================================================== */
.section { padding-block: clamp(3.75rem, 7vw, 7rem); }
.section--alt { background: var(--white); }
.section--dark {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: rgba(203, 203, 183, 0.85); }
.section--dark p { color: rgba(203, 203, 183, 0.85); }
.section--dark::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image: var(--grain);
  background-size: 220px;
  opacity: 0.05;
  pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 2; }

/* Gece bölümü: hafif yıldız dokusu */
.section--stars { position: relative; overflow: hidden; }
.section--stars::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1.4px 1.4px at 34% 12%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.8px 1.8px at 58% 28%, rgba(255,255,255,0.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 76% 8%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.6px 1.6px at 88% 34%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.3px 1.3px at 24% 68%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 66% 82%, rgba(255,255,255,0.55), transparent 60%);
  opacity: 0.7;
}

/* İnce ayraç — eski dalgalı SVG'nin sade hâli */
.divider {
  display: block;
  width: min(100% - 2.5rem, 34rem);
  margin-inline: auto;
  height: 1.75rem;
  color: var(--sage-light);
  opacity: 0.5;
}

.eyebrow {
  display: block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.55;
}
.hero-content .eyebrow::before { width: 2.2rem; }

.section-head { max-width: 46rem; margin-bottom: 2.9rem; }
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.6rem;
  width: 100%; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(132,66,67,0));
}
.section-head p.lead { color: var(--sage); font-size: 1.06rem; max-width: 44rem; margin-top: 1.35rem; }
.section--dark .section-head p.lead { color: rgba(203, 203, 183, 0.85); }

/* ==========================================================================
   Fotoğraf çerçeveleri
   ========================================================================== */
.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  background: var(--paper-2);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame--4-3 { aspect-ratio: 4 / 3; }
.photo-frame--16-9 { aspect-ratio: 16 / 9; }
.photo-frame--square { aspect-ratio: 1 / 1; }

/* ==========================================================================
   Giriş metni
   ========================================================================== */
.intro-text {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--sage);
  max-width: 60rem;
  line-height: 1.7;
}
.intro-text p + p { margin-top: 0.4em; }

/* ==========================================================================
   Kartlar
   ========================================================================== */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
/* İmleci izleyen yumuşak ışık */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(20rem 20rem at var(--mx, 50%) var(--my, 0%),
              rgba(132, 66, 67, 0.09), transparent 70%);
  opacity: 0;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card .photo-frame { border-radius: 0; box-shadow: none; }
.card .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,32,27,0) 45%, rgba(30,32,27,0.5) 100%);
  opacity: 0;
  pointer-events: none;
}
.card:hover .photo-frame::after { opacity: 1; }
.card__body {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.card__body h3 { font-size: 1.35rem; margin-bottom: 0; }
.card__body p { color: var(--sage); margin-bottom: 0.25rem; flex: 1; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--orange);
}
.card__link .arrow {
  display: grid;
  place-items: center;
  width: 2.05rem; height: 2.05rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}
.card__link .arrow svg { width: 0.95rem; height: 0.95rem; }

.slogan {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.card__body p.slogan,
.split__text p.slogan,
.section-head p.slogan { color: var(--orange); flex: none; }
.section--dark .split__text p.slogan { color: var(--sage-light); }

/* ==========================================================================
   İkili yerleşim (görsel + metin)
   ========================================================================== */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.02fr 0.98fr; gap: 3.5rem; }
  .split--reverse .split__media { order: 2; }
  .split--reverse .split__text { order: 1; }
}
.split__text p { color: var(--sage); }
.section--dark .split__text p { color: rgba(203, 203, 183, 0.85); }
.split__text .btn { margin-top: 0.5rem; }

.split__media.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(254, 254, 254, 0.4);
  border-radius: calc(var(--radius-xl) - 0.6rem);
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   İstatistik bandı
   ========================================================================== */
.stat-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}
@media (min-width: 900px) { .stat-band { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.stat {
  position: relative;
  overflow: hidden;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
}
.stat::before {
  content: "";
  position: absolute;
  left: -20%; bottom: -55%;
  width: 75%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,66,67,0.16), rgba(132,66,67,0) 70%);
}
.stat__num {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  line-height: 1;
  color: var(--olive);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  margin: 0;
}
.stat__num small { font-size: 0.42em; margin-left: 0.15em; color: var(--sage); font-weight: 500; }
.stat__label {
  position: relative;
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.45;
}

/* ==========================================================================
   Kayan şerit
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: var(--olive-deep);
  color: var(--cream);
  padding-block: 1.35rem;
  border-block: 1px solid rgba(203, 203, 183, 0.12);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; width: max-content; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex: 0 0 auto;
}
.marquee__group span {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
/* Bir dolu, bir içi boş: editoryal ritim */
.marquee__group span:nth-child(4n+3) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(203, 203, 183, 0.55);
}
.marquee__group i {
  color: var(--orange);
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ==========================================================================
   Olanak ikonları
   ========================================================================== */
.icon-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .icon-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .icon-grid { grid-template-columns: repeat(6, 1fr); } }
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.6rem 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: rgba(203, 203, 183, 0.18);
}
.icon-item .icon {
  width: 3.1rem; height: 3.1rem;
  padding: 0.72rem;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--olive);
  stroke-width: 1.6;
  box-shadow: 0 4px 12px -6px rgba(52, 54, 47, 0.3);
}
.icon-item span { font-size: 0.85rem; line-height: 1.35; color: var(--text); font-weight: 500; }

/* ==========================================================================
   Delmece'de bir gün — zaman çizelgesi
   ========================================================================== */
.day-flow {
  display: grid;
  gap: 0;
  counter-reset: day-step;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 860px) {
  .day-flow { grid-template-columns: repeat(2, 1fr); column-gap: 3.5rem; }
}
.day-flow li {
  counter-increment: day-step;
  position: relative;
  padding: 1rem 0 1rem 3.9rem;
  color: rgba(203, 203, 183, 0.9);
  border-bottom: 1px solid rgba(203, 203, 183, 0.12);
}
.day-flow li:last-child { border-bottom: 0; }
@media (min-width: 860px) {
  .day-flow li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}
/* Numara rozeti */
.day-flow li::before {
  content: counter(day-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(203, 203, 183, 0.32);
  background: rgba(203, 203, 183, 0.07);
  color: var(--sage-light);
  z-index: 1;
}
/* Rozetleri birleştiren dikey çizgi */
.day-flow li::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 3.25rem;
  bottom: -0.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(203,203,183,0.3), rgba(203,203,183,0.05));
}
.day-flow li:last-child::after { display: none; }
@media (min-width: 860px) {
  .day-flow li:nth-last-child(2):nth-child(odd)::after { display: none; }
}

/* ==========================================================================
   Galeri
   ========================================================================== */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid--showcase .photo-frame:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}
.gallery-grid .photo-frame { border-radius: var(--radius-md); }
.gallery-grid .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,32,27,0) 55%, rgba(30,32,27,0.5) 100%);
  opacity: 0;
  pointer-events: none;
}
.gallery-grid .photo-frame:hover::after { opacity: 1; }

/* ==========================================================================
   Değerlendirmeler / harita
   ========================================================================== */
.review-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }
.review-links a { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.review-links svg { width: 1.2rem; height: 1.2rem; }

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
@media (min-width: 860px) { .map-frame { aspect-ratio: auto; height: 100%; min-height: 23rem; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Durum şeridi
   ========================================================================== */
.status-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.status-strip .container { padding-block: 1.75rem; }
.status-strip__note { font-size: 0.85rem; color: var(--sage); margin-bottom: 1.1rem; }
.status-grid { display: grid; gap: 0.85rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .status-grid { grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); } }
.status-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.15rem;
  background: var(--paper);
}
.status-chip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.45rem;
}
.status-chip__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--olive);
}
.status-dot {
  position: relative;
  width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
}
.status-dot--ok { background: #6f8f5c; }
.status-dot--warn { background: var(--orange); }
.status-dot--closed { background: #a24b3f; }

/* ==========================================================================
   Bilgi kartları / listeler
   ========================================================================== */
.info-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .info-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .info-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.plain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.75rem;
  box-shadow: var(--shadow-card);
}
.plain-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.plain-card p { color: var(--sage); margin-bottom: 0; }
.plain-card .btn { margin-top: 1.15rem; }

.rules-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.rules-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--orange);
}

.spec-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list__label { font-weight: 600; color: var(--olive); }
.spec-list__value { color: var(--sage); }
.fine-print { font-size: 0.85rem; color: var(--sage); margin-top: 1.1rem; }
.split__text p.fine-print { color: var(--sage); }

/* ==========================================================================
   SSS akordeonu
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  max-width: 56rem;
}
.faq-item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.3rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--olive);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--orange); }
.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.9rem; height: 1.9rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0.72rem; height: 1.5px;
  border-radius: 2px;
  background: var(--olive);
  transform: translate(-50%, -50%);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--orange); border-color: var(--orange); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: var(--white); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(180deg); }
.faq-item__body { overflow: hidden; }
.faq-item__body p {
  margin: 0;
  padding-bottom: 1.35rem;
  color: var(--sage);
  max-width: 64ch;
}

/* ==========================================================================
   İletişim kartları
   ========================================================================== */
.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: var(--shadow-card);
}
.contact-card .icon { width: 1.6rem; height: 1.6rem; color: var(--orange); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 1.02rem; color: var(--olive); }
.contact-card span { color: var(--sage); font-size: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
  padding-block: 3.25rem 2rem;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 220px;
  opacity: 0.05;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-motif {
  display: block;
  width: 100%;
  height: 1.5rem;
  color: var(--sage-light);
  opacity: 0.28;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.25rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: inline-flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.footer-brand__logo { width: auto; height: 9rem; max-width: 100%; object-fit: contain; }
.site-footer h3 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer address { font-style: normal; color: rgba(203,203,183,0.82); line-height: 1.7; }
.site-footer a { color: rgba(203,203,183,0.82); }
.site-footer a:hover { color: var(--white); }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { position: relative; }
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
}
.footer-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.site-footer .footer-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 100%;
  padding: 0.6rem 1.05rem;
  border: 1px solid rgba(203, 203, 183, 0.28);
  border-radius: 999px;
  background: rgba(203, 203, 183, 0.06);
  color: rgba(203, 203, 183, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.footer-contact__btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.footer-contact__btn span { overflow-wrap: anywhere; }
.site-footer .footer-contact__btn:hover,
.site-footer .footer-contact__btn:focus-visible {
  background: rgba(203, 203, 183, 0.15);
  border-color: rgba(203, 203, 183, 0.55);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(203,203,183,0.16);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(203,203,183,0.68);
}

/* ==========================================================================
   Yüzen kontroller
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 300;
  background: linear-gradient(90deg, var(--orange) 0%, var(--sage-light) 100%);
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
  pointer-events: none;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--mobile-bar-h) + 1rem + env(safe-area-inset-bottom, 0px));
  z-index: 140;
  width: 3rem; height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  color: var(--olive);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.to-top svg { width: 1.15rem; height: 1.15rem; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.wa-float { display: none; }
@media (min-width: 900px) {
  .to-top { right: 1.75rem; bottom: 1.75rem; }
  .wa-float {
    display: grid;
    place-items: center;
    position: fixed;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 140;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 16px 32px -14px rgba(132, 66, 67, 0.7);
  }
  .wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(132, 66, 67, 0.5);
  }
  .wa-float:hover { background: var(--orange-dark); }
  .wa-float svg { width: 1.7rem; height: 1.7rem; position: relative; z-index: 1; }
  .to-top { bottom: 5.9rem; }
}

.mobile-actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  gap: 0.4rem;
  box-shadow: 0 -10px 28px -20px rgba(52,54,47,0.5);
}
.mobile-actionbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--olive);
}
.mobile-actionbar a:nth-child(2) { color: var(--orange); }
.mobile-actionbar svg { width: 1.3rem; height: 1.3rem; }

@media (min-width: 900px) {
  .mobile-actionbar { display: none; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   Durum sınıfları / yardımcılar
   ========================================================================== */
.tbd {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage);
  font-style: italic;
  border-bottom: 1px dashed var(--line-strong);
  cursor: default;
}

/* site-config.json'da karşılığı girilmemiş iletişim kontrolleri hiç gösterilmez;
   değer girildiği anda main.js bu sınıfı kaldırır. */
.is-disabled { display: none !important; }
.hero-actions:not(:has(> :not(.is-disabled))) { display: none; }

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.stack { display: grid; gap: 1rem; }

/* ==========================================================================
   Hareket katmanı
   İçerik JS olmadan da tam görünür başlar (.reveal varsayılanı opacity:1).
   ========================================================================== */
.reveal { opacity: 1; transform: none; }

.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.mobile-nav-panel.is-open { max-height: 34rem; opacity: 1; }
@media (min-width: 900px) {
  .mobile-nav-panel.is-open { max-height: 0; opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-nav-panel { transition: max-height 0.4s var(--ease-out), opacity 0.3s ease; }

  .site-header .container {
    transition: min-height 0.35s var(--ease-out), background 0.35s ease,
                box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .brand__mark { transition: transform 0.35s var(--ease-spring); }
  .site-header.is-scrolled .brand__mark { transform: scale(0.88); }
  .main-nav a { transition: background 0.25s ease, color 0.25s ease; }

  /* Kademeli beliriş — JS her çocuğa --reveal-delay atar */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal--left { transform: translateX(-28px); }
  .reveal--right { transform: translateX(28px); }
  .reveal--left.is-visible,
  .reveal--right.is-visible { transform: none; }

  /* Perde efekti: kırpma çerçeveye DEĞİL içindeki görsele uygulanır.
     Çerçeve clip-path ile tamamen kırpılırsa IntersectionObserver onu
     "ekranda değil" sayar ve görsel kalıcı olarak görünmez kalır. */
  .reveal--wipe { opacity: 1; transform: none; }
  .reveal--wipe.photo-frame img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.1s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s), 0s;
  }
  .reveal--wipe.photo-frame.is-visible img { clip-path: inset(0 0 0 0); }

  /* Hero girişi */
  .hero-content .eyebrow { animation: hero-up 0.85s var(--ease-out) both; }
  .hero-content h1 { animation: hero-up 0.85s 0.08s var(--ease-out) both; }
  .hero-content p { animation: hero-up 0.85s 0.16s var(--ease-out) both; }
  .hero-actions { animation: hero-up 0.85s 0.24s var(--ease-out) both; }
  .hero-meta { animation: hero-up 0.85s 0.34s var(--ease-out) both; }
  .scroll-cue { animation: hero-up 0.85s 0.5s var(--ease-out) both; }
  @keyframes hero-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Başlık kelime kelime yukarı akar */
  .hero-content h1.is-split { animation: none; }
  .hero-content h1.is-split .word > span {
    transform: translateY(115%);
    animation: word-up 1s var(--ease-spring) both;
    animation-delay: calc(var(--w, 0) * 65ms + 0.14s);
  }
  @keyframes word-up {
    from { transform: translateY(115%); }
    to { transform: translateY(0); }
  }

  .hero .photo-frame img { animation: hero-zoom 24s var(--ease-out) both; }
  @keyframes hero-zoom {
    from { transform: scale(1.12); }
    to { transform: scale(1.02); }
  }

  .scroll-cue__line { animation: cue-slide 2.4s ease-in-out infinite; transform-origin: 50% 0; }
  @keyframes cue-slide {
    0%, 100% { transform: scaleY(0.35); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  /* Kayan şerit */
  .marquee__track { animation: marquee 48s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* Bölüm başlığı vurgusu */
  .section-head h2::after {
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 1s var(--ease-out) 0.2s;
  }
  .section-head.is-visible h2::after { transform: scaleX(1); }

  /* Kartlar */
  .card { transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease, border-color 0.45s ease; }
  .card::before { transition: opacity 0.45s ease; }
  .card:hover {
    transform: translateY(-8px);
    border-color: rgba(132, 66, 67, 0.35);
    box-shadow: var(--shadow-lift);
  }
  .card .photo-frame::after,
  .gallery-grid .photo-frame::after { transition: opacity 0.45s ease; }
  .card__link .arrow {
    transition: transform 0.35s var(--ease-spring), background 0.3s ease,
                color 0.3s ease, border-color 0.3s ease;
  }
  .card:hover .card__link .arrow {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateX(5px);
  }

  /* Görsel yakınlaşmaları */
  .split__media.photo-frame img,
  .card .photo-frame img,
  .gallery-grid .photo-frame img { transition: transform 0.75s var(--ease-out); }
  .card:hover .photo-frame img,
  .split__media.photo-frame:hover img,
  .gallery-grid .photo-frame:hover img { transform: scale(1.07); }
  .split__media.photo-frame::before { transition: opacity 0.45s ease, inset 0.6s var(--ease-out); }
  .split__media.photo-frame:hover::before { opacity: 1; inset: 1.4rem; }

  /* İkon kutuları */
  .icon-item {
    transition: transform 0.35s var(--ease-spring), background 0.35s ease,
                border-color 0.35s ease, box-shadow 0.35s ease;
  }
  .icon-item .icon { transition: transform 0.35s var(--ease-spring), background 0.35s ease, color 0.35s ease; }
  .icon-item:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: var(--line);
    box-shadow: var(--shadow-card);
  }
  .icon-item:hover .icon { background: var(--orange); color: var(--white); transform: scale(1.06); }

  /* Akış rozetleri */
  .day-flow li::before {
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, transform 0.35s var(--ease-spring);
  }
  .day-flow li:hover::before {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: scale(1.08);
  }

  /* Yıldızlar */
  .section--stars::before { animation: twinkle 6.5s ease-in-out infinite; }
  @keyframes twinkle {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.9; }
  }

  /* Butonlar */
  .btn { transition: transform 0.2s var(--ease-out), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
  .btn--primary::after { transition: left 0.7s var(--ease-out); }
  .btn--primary:hover::after { left: 130%; }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(132, 66, 67, 0.7); }
  .btn--secondary:hover, .btn--on-dark:hover { transform: translateY(-2px); }

  /* Kart benzeri yüzeyler */
  .plain-card, .contact-card, .status-chip {
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .plain-card:hover,
  .contact-card:not(.is-disabled):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--line-strong);
  }

  /* Durum noktası nabzı */
  .status-dot--ok::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #6f8f5c;
    opacity: 0.55;
    animation: status-pulse 2.2s ease-out infinite;
  }
  @keyframes status-pulse {
    0% { transform: scale(0.7); opacity: 0.55; }
    100% { transform: scale(2.1); opacity: 0; }
  }

  /* Footer bağlantı altı çizgisi */
  .footer-links a::after { transition: transform 0.35s var(--ease-out); }
  .site-footer .footer-contact__btn {
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out);
  }
  .site-footer .footer-contact__btn:hover { transform: translateX(3px); }

  /* İlerleme çubuğu / yukarı çık */
  .scroll-progress { transition: transform 0.12s linear; }
  .to-top { transition: opacity 0.35s ease, transform 0.35s var(--ease-spring), visibility 0.35s, border-color 0.3s ease, color 0.3s ease; }
  .to-top:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange); }
  .wa-float { transition: background 0.3s ease, transform 0.3s var(--ease-spring), box-shadow 0.3s ease; }
  .wa-float:hover { transform: translateY(-3px) scale(1.05); }
  .wa-float::after { animation: wa-ring 2.8s ease-out infinite; }
  @keyframes wa-ring {
    0% { transform: scale(1); opacity: 0.7; }
    70%, 100% { transform: scale(1.55); opacity: 0; }
  }

  /* SSS */
  .faq-item > summary { transition: color 0.25s ease; }
  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after {
    transition: transform 0.35s var(--ease-spring), background 0.3s ease, border-color 0.3s ease;
  }
  .faq-item__body { transition: height 0.4s var(--ease-out); }
}

/* ==========================================================================
   Modern tarayıcı katmanı — desteklenmeyen yerlerde sessizce devre dışı
   ========================================================================== */

/* Sayfalar arası yumuşak geçiş */
@view-transition { navigation: auto; }

/* Kaydırmaya bağlı derinlik: bölüm görselleri ekrandan geçerken çerçevesi
   içinde hafifçe kayar. Hover yakınlaşmasıyla çakışmaması için transform
   yerine yalnızca --drift değişkeni animasyona bağlanır. */
@property --drift {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --img-zoom {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .split__media.photo-frame img {
      --img-zoom: 1.09;
      transform: scale(var(--img-zoom)) translateY(var(--drift));
      /* transform yerine değişken geçişi: kaydırma sürüklemesi kesintiye uğramaz */
      transition: --img-zoom 0.7s var(--ease-out);
      animation: frame-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    .split__media.photo-frame:hover img { --img-zoom: 1.15; }
    @keyframes frame-drift {
      from { --drift: -2.2%; }
      to { --drift: 2.2%; }
    }
  }
}
