/* ============================================================
   CASABA VOGUE — Koyu Lüks Tema (Dark Edition)
   Marka: #23272a · #e3e3e3 · bronz vurgu
   Tasarım yönü: ovio koyu emlak teması + LAON off-canvas menü
   ============================================================ */

/* ---------- DEĞİŞKENLER ---------- */
:root {
  /* arka planlar — katmanlı koyu */
  --bg:         #141619;
  --bg-soft:    #1a1d21;
  --surface:    #1e2228;
  --surface-2:  #262b32;
  --ink:        #23272a;
  --ink-deep:   #0f1113;

  /* metin */
  --paper:      #e3e3e3;
  --white:      #ffffff;
  --muted:      #9aa0a7;
  --muted-2:    #6c7178;

  /* vurgu — yeşil (yeni marka rengi) */
  --bronze:     #a2cb42;   /* eski adı korunuyor: geriye dönük uyum için */
  --bronze-d:   #87af32;
  --bronze-l:   #c3de82;
  --brand:      #a2cb42;   /* tercih edilen yeni ad */
  --brand-d:    #87af32;
  --brand-l:    #c3de82;

  /* çizgiler */
  --line:       rgba(255,255,255,.09);
  --line-soft:  rgba(255,255,255,.055);
  --line-strong:rgba(255,255,255,.16);

  /* geriye dönük uyumluluk (eski şablon değişkenleri) */
  --cream:      #1a1d21;
  --cream-2:    #1e2228;
  --muted-l:    #6c7178;

  --f-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1320px;
  --container-wide: 1500px;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
  --header-h: 92px;

  --shadow-sm: 0 6px 22px rgba(0,0,0,.32);
  --shadow:    0 20px 50px rgba(0,0,0,.45);
  --shadow-lg: 0 36px 80px rgba(0,0,0,.6);
  --glow:      0 0 0 1px var(--line), 0 24px 60px rgba(0,0,0,.5);

  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-io: cubic-bezier(.65,0,.35,1);
  --t-fast: .25s var(--ease);
  --t-med:  .45s var(--ease);
  --t-slow: .8s var(--ease);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
::selection { background: var(--bronze); color: var(--ink-deep); }

/* ---------- TİPOGRAFİ ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.13; letter-spacing: -.01em; color: #fff; }
.display-1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; line-height: 1.04; }
.display-2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
.h-eyebrow {
  font-family: var(--f-body);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex; align-items: center; gap: 12px;
}
.h-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--bronze);
  display: inline-block;
}
.h-eyebrow.center::after {
  content: ''; width: 28px; height: 1px; background: var(--bronze);
  display: inline-block;
}
em { font-style: normal; color: var(--bronze-l); }
.lead { font-size: 1.15rem; color: var(--muted); font-weight: 300; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 36px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(72px, 9vw, 150px) 0; position: relative; }
.section-sm { padding: clamp(52px, 6vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .h-eyebrow { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); margin-bottom: 20px; }
.section-head p { color: var(--muted); font-size: 1.06rem; font-weight: 300; }

/* arka plan sınıfları (eski şablon uyumu) — hepsi koyu tonlarda */
.bg-ink    { background: var(--ink-deep); }
.bg-cream2 { background: var(--bg-soft); }
.bg-white  { background: var(--surface); }

/* Müşteri rev. 06/2025 — Marka koyu yeşil arka plan (fresh his için)
   Beyaz/açık metinleri AA kontrastta tutmak için seçildi. */
.bg-brand-dark {
  background: #5e7920;
  color: #f0f6dc;
}
.bg-brand-dark h1, .bg-brand-dark h2, .bg-brand-dark h3, .bg-brand-dark h4 { color: #ffffff; }
.bg-brand-dark .h-eyebrow,
.bg-brand-dark .h-eyebrow::before,
.bg-brand-dark .h-eyebrow.center::after { color: #e8f3c2; background: transparent; }
.bg-brand-dark .h-eyebrow::before,
.bg-brand-dark .h-eyebrow.center::after { background: #e8f3c2; }
.bg-brand-dark em { color: #ffffff; }
.bg-brand-dark p,
.bg-brand-dark .lead { color: #f0f6dc; }
.bg-brand-dark .btn-primary { background: #ffffff; color: #2f3d10; border-color: #ffffff; }
.bg-brand-dark .btn-primary:hover { background: #2f3d10; color: #ffffff; border-color: #2f3d10; }
.bg-brand-dark .btn-ghost-light { border-color: rgba(255,255,255,.5); }
.bg-brand-dark .btn-ghost-light:hover { background: #ffffff; color: #2f3d10; }
.bg-ink::after, .section.bg-soft-glow::after { content: ''; }
.text-center { text-align: center; }

/* hafif bronz parıltı — vurgulu koyu bölümler için */
.glow-section { position: relative; overflow: hidden; }
.glow-section::before {
  content: ''; position: absolute; width: 60%; height: 60%;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(162,203,66,.10), transparent 70%);
  pointer-events: none;
}

/* ---------- BUTONLAR ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 17px 38px;
  font-family: var(--f-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 50px;
  cursor: pointer; transition: all var(--t-fast); position: relative;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--bronze); color: var(--ink-deep); border-color: var(--bronze); }
.btn-primary:hover { background: var(--bronze-l); border-color: var(--bronze-l); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(162,203,66,.3); }
.btn-dark { background: #fff; color: var(--ink-deep); border-color: #fff; }
.btn-dark:hover { background: var(--bronze-l); border-color: var(--bronze-l); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--bronze); background: var(--bronze); color: var(--ink-deep); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn-ghost-light:hover { background: #fff; color: var(--ink-deep); border-color: #fff; }
.btn-lg { padding: 20px 46px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bronze-l); padding-bottom: 5px;
  border-bottom: 1px solid rgba(162,203,66,.4);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.link-arrow:hover { color: #fff; border-color: #fff; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER / NAVİGASYON
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t-med), height var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header.scrolled {
  height: 72px; background: rgba(15,17,19,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; flex-shrink: 0; z-index: 2; }
/* Logo: yeni dosya (Casaba beyaz + VOGUE yeşil, transparan PNG) ile uyumlu — filtre kaldırıldı. */
.brand img { height: 46px; width: auto; transition: height var(--t-med); }
.site-header.scrolled .brand img { height: 36px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  position: relative; padding: 11px 17px;
  font-size: .82rem; font-weight: 500; letter-spacing: .03em;
  color: rgba(255,255,255,.78);
  transition: color var(--t-fast);
}
.main-nav a::after {
  content: ''; position: absolute; left: 17px; right: 17px; bottom: 6px;
  height: 1px; background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-switch { display: flex; align-items: center; gap: 2px; font-size: .78rem; letter-spacing: .04em; }
.lang-switch a { padding: 4px 7px; color: rgba(255,255,255,.5); border-radius: 3px; transition: color var(--t-fast); }
.lang-switch a.active { color: var(--bronze-l); font-weight: 600; }
.lang-switch a:hover { color: #fff; }
.lang-switch span { color: rgba(255,255,255,.22); }

.header-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; background: var(--bronze); color: var(--ink-deep);
  font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 50px; transition: all var(--t-fast);
}
.header-cta:hover { background: var(--bronze-l); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(162,203,66,.34); }
.header-cta svg { width: 15px; height: 15px; }

/* hamburger */
.nav-toggle {
  width: 48px; height: 48px; position: relative; z-index: 2; flex-shrink: 0;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav-toggle:hover { border-color: var(--bronze); }
.nav-toggle span {
  position: absolute; left: 14px; right: 14px; height: 1.5px;
  background: #fff; transition: all .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open { background: var(--bronze); border-color: var(--bronze); }
.nav-toggle.open span { background: var(--ink-deep); }
.nav-toggle.open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
/* masaüstünde hamburger gizli — sadece mobilde */
@media (min-width: 981px) {
  .nav-toggle { display: none; }
  /* sağ kenardaki tam-yükseklik MENÜ sekmesi için içeriğe sağ pay */
  .container { padding-right: 98px; }
}

/* ---------- SAĞ KENAR DİKEY MENÜ SEKMESİ (tam yükseklik, belirgin) ---------- */
.menu-tab {
  position: fixed; right: 0; top: 0; bottom: 0;
  z-index: 205; width: 62px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background: var(--bronze);
  border-left: 1px solid rgba(0,0,0,.2);
  cursor: pointer;
  box-shadow: -18px 0 48px rgba(0,0,0,.45);
  transition: background var(--t-fast), opacity var(--t-med), visibility var(--t-med);
}
.menu-tab:hover { background: var(--bronze-d); }
.menu-tab-lines { display: flex; flex-direction: column; gap: 6px; }
.menu-tab-lines span { width: 28px; height: 3px; background: var(--ink-deep); border-radius: 2px; transition: width var(--t-fast); }
.menu-tab:hover .menu-tab-lines span:nth-child(2) { width: 18px; }
.menu-tab-label {
  writing-mode: vertical-rl; text-orientation: upright;
  font-size: .86rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-deep);
}
/* off-canvas açıkken sekmeyi gizle */
body.oc-open .menu-tab { opacity: 0; visibility: hidden; }
/* mobilde dikey sekme gizli — hamburger kullanılır */
@media (max-width: 980px) { .menu-tab { display: none; } }

/* ---------- OFF-CANVAS MENÜ (sağdan açılır) ---------- */
.oc-overlay {
  position: fixed; inset: 0; z-index: 280;
  background: rgba(10,11,13,.6); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility 0s linear .4s;
}
.oc-overlay.open { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 290;
  width: 420px; max-width: 90vw;
  background: var(--ink-deep);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 38px 40px 40px;
  transform: translateX(105%);
  transition: transform .5s var(--ease);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .oc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.mobile-nav .oc-head img { height: 40px; }
.oc-close {
  width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; color: #fff; transition: all var(--t-fast);
}
.oc-close:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink-deep); transform: rotate(90deg); }
.oc-close svg { width: 18px; height: 18px; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  font-family: var(--f-display); font-size: 1.55rem; font-weight: 500;
  color: rgba(255,255,255,.62);
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 14px;
  transition: color var(--t-fast), padding var(--t-fast);
}
.mobile-nav nav a::before {
  content: ''; width: 0; height: 1px; background: var(--bronze);
  transition: width var(--t-fast);
}
.mobile-nav nav a:hover, .mobile-nav nav a.active { color: #fff; padding-left: 4px; }
.mobile-nav nav a:hover::before, .mobile-nav nav a.active::before { width: 22px; }
.mobile-nav-foot {
  margin-top: auto; padding-top: 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-nav-foot a {
  color: var(--muted); display: flex; align-items: center; gap: 13px; font-size: .95rem;
  transition: color var(--t-fast);
}
.mobile-nav-foot a:hover { color: #fff; }
.mobile-nav-foot a svg { width: 18px; height: 18px; color: var(--bronze); flex-shrink: 0; }
.mobile-nav-foot .btn { margin-top: 10px; }
.mobile-nav-foot .btn-primary, .mobile-nav-foot .btn-primary:hover { color: #000; }
.oc-social { display: flex; gap: 10px; margin-top: 8px; }
.oc-social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--muted);
}
.oc-social a:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink-deep); }
.oc-social a svg { width: 16px; height: 16px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 660px;
  overflow: hidden; background: var(--ink-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 0s linear 1.4s;
}
.hero-slide.active { opacity: 1; visibility: visible; transition: opacity 1.4s var(--ease); z-index: 1; }
/* hero-slide::after gradient kaldırıldı (müşteri rev. 06/2025) */
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1); }

.hero-content {
  position: relative; z-index: 5; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 60px;
}
.hero-inner { max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .8rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--bronze-l); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--bronze-l); }
.hero h1 {
  color: #fff; font-size: clamp(2.7rem, 6.4vw, 5.6rem); font-weight: 700; line-height: 1.03;
  letter-spacing: -.02em; margin-bottom: 26px;
}
.hero h1 em { color: var(--bronze-l); }
.hero p {
  color: rgba(227,227,227,.84); font-size: 1.14rem; font-weight: 300;
  max-width: 560px; margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-slide .hero-anim { opacity: 0; transform: translateY(38px); }
.hero-slide.active .hero-anim {
  opacity: 1; transform: translateY(0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero-slide.active .hero-eyebrow.hero-anim { transition-delay: .35s; }
.hero-slide.active h1.hero-anim { transition-delay: .5s; }
.hero-slide.active p.hero-anim { transition-delay: .65s; }
.hero-slide.active .hero-actions.hero-anim { transition-delay: .8s; }

/* slider kontrol */
.hero-nav { position: absolute; z-index: 6; bottom: 46px; left: 0; right: 0; }
.hero-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero-dots { display: flex; gap: 12px; }
.hero-dots button {
  width: 44px; height: 3px; background: rgba(255,255,255,.2); border-radius: 2px;
  position: relative; overflow: hidden;
}
.hero-dots button.active::after {
  content: ''; position: absolute; inset: 0; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  animation: dotfill 6s linear forwards;
}
@keyframes dotfill { to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 10px; }
.hero-arrows button {
  width: 54px; height: 54px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: #fff; border-radius: 50%;
  transition: all var(--t-fast); background: rgba(20,22,25,.4);
}
.hero-arrows button:hover { background: var(--bronze); color: var(--ink-deep); border-color: var(--bronze); }
.hero-arrows svg { width: 18px; height: 18px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.62); font-size: 1.02rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 33px; height: 54px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 18px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: ''; position: absolute; top: 10px; left: 50%; width: 4px; height: 11px;
  background: var(--bronze-l); border-radius: 3px; transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,18px)} 100%{opacity:0} }

/* sayfa içi mini hero */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 100px) 0 100px;
  background: var(--ink-deep); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .68; transform: scale(1.05);
}
/* page-hero::after gradient kaldırıldı (müşteri rev. 06/2025) */
.page-hero .container { position: relative; z-index: 2; }
.page-hero .h-eyebrow { color: var(--bronze-l); margin-bottom: 18px; }
.page-hero .h-eyebrow::before { background: var(--bronze-l); }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 16px; letter-spacing: -.02em; }
.page-hero p { color: rgba(227,227,227,.78); max-width: 600px; font-weight: 300; font-size: 1.08rem; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center; margin-top: 28px;
  font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.5);
}
.breadcrumb a:hover { color: var(--bronze-l); }
.breadcrumb span { color: rgba(255,255,255,.28); }

/* ============================================================
   SPLIT BÖLÜM
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); }
.split-media .media-stack { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.split-media .media-badge {
  position: absolute; background: var(--bronze); color: var(--ink-deep);
  padding: 26px 32px; border-radius: var(--radius-lg);
  bottom: -32px; right: -26px; max-width: 240px; box-shadow: var(--shadow);
}
.split-media .media-badge .num { font-family: var(--f-display); font-size: 2.7rem; line-height: 1; font-weight: 700; }
.split-media .media-badge .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; font-weight: 600; }
.split-media .media-frame {
  position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--bronze);
  border-radius: var(--radius-lg); z-index: -1; opacity: .5;
}
.split-body h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 20px 0 22px; }
.split-body > p { color: var(--muted); font-weight: 300; margin-bottom: 18px; }
.split-body p strong { color: var(--paper); font-weight: 600; }
.split-body .sign {
  margin-top: 32px; font-family: var(--f-display); font-style: italic;
  font-size: 1.4rem; color: var(--bronze-l); font-weight: 500;
}

.tick-list { margin: 28px 0; display: grid; gap: 15px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; }
.tick-list li svg { width: 20px; height: 20px; color: var(--bronze); flex-shrink: 0; margin-top: 3px; }
.tick-list li span { font-size: .98rem; color: var(--paper); }
.tick-list li strong { color: #fff; font-weight: 600; }

/* ============================================================
   İSTATİSTİK SAYAÇLAR
   ============================================================ */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* 4 veya 5 stat olabilir — esnek auto-fit ile sığar */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat { padding: 58px 30px; text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 26%; bottom: 26%; width: 1px;
  background: var(--line);
}
.stat .num {
  font-family: var(--f-display); font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.05;
  display: inline-flex; align-items: baseline; gap: 3px; flex-wrap: wrap; justify-content: center;
}
.stat .num .suffix { color: var(--bronze); font-size: .56em; font-weight: 600; }
.stat .lbl {
  margin-top: 14px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ÖZELLİK KARTLARI
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature {
  background: var(--surface); padding: 42px 36px;
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.feature:hover { transform: translateY(-6px); border-color: rgba(162,203,66,.35); background: var(--surface-2); }
.feature .ic {
  width: 58px; height: 58px; display: grid; place-items: center;
  border: 1px solid var(--bronze); border-radius: 50%; color: var(--bronze-l);
  margin-bottom: 24px; transition: all var(--t-med);
  font-family: var(--f-display); font-size: 1.05rem; font-weight: 600;
}
.feature:hover .ic { background: var(--bronze); color: var(--ink-deep); transform: rotate(-6deg); }
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 11px; }
.feature p { font-size: .96rem; color: var(--muted); font-weight: 300; }

/* ============================================================
   TİP / PROJE KARTLARI
   ============================================================ */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.type-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex; flex-direction: column;
}
.type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(162,203,66,.3); }
.type-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.type-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.type-card:hover .thumb img { transform: scale(1.07); }
.type-card .thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,17,19,.55));
}
.type-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(15,17,19,.78); color: var(--bronze-l);
  padding: 7px 15px; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 50px; font-weight: 600; border: 1px solid var(--line);
}
.type-card .body { padding: 30px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.type-card .body h3 { font-size: 1.4rem; margin-bottom: 9px; }
.type-card .body p { font-size: .94rem; color: var(--muted); font-weight: 300; margin-bottom: 20px; flex: 1; }
.type-card .meta { display: flex; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.type-card .meta div { font-size: .78rem; color: var(--muted); }
.type-card .meta div strong { display: block; font-family: var(--f-display); font-size: 1.05rem; color: #fff; font-weight: 600; margin-bottom: 2px; }

/* ============================================================
   GALERİ
   ============================================================ */
.gallery-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.gallery-filter button {
  padding: 12px 28px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 50px;
  transition: all var(--t-fast); font-weight: 600;
}
.gallery-filter button:hover { border-color: var(--bronze); color: #fff; }
.gallery-filter button.active { background: var(--bronze); border-color: var(--bronze); color: var(--ink-deep); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer;
  background: var(--surface-2);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,17,19,.82));
  opacity: 0; transition: opacity var(--t-med);
}
.g-item:hover img { transform: scale(1.09); }
.g-item:hover::after { opacity: 1; }
.g-item .g-cap {
  position: absolute; left: 22px; bottom: 18px; z-index: 2; color: #fff;
  opacity: 0; transform: translateY(12px); transition: all var(--t-med);
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-item .g-cap .t { font-family: var(--f-display); font-size: 1.18rem; font-weight: 600; }
.g-item .g-cap .s { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-l); }
.g-item .g-zoom {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px;
  background: rgba(15,17,19,.55); backdrop-filter: blur(6px); border: 1px solid var(--line);
  border-radius: 50%; display: grid; place-items: center; color: #fff; z-index: 2;
  opacity: 0; transform: scale(.7); transition: all var(--t-med);
}
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }
.g-item .g-zoom svg { width: 18px; height: 18px; }
.gallery-grid.fixed .g-item { aspect-ratio: 4/3; }

/* yatay kayan galeri */
.gallery-marquee {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  overflow: hidden; padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.gallery-marquee-track { display: flex; gap: 22px; width: max-content; animation: marquee 64s linear infinite; will-change: transform; }
.gallery-marquee:hover .gallery-marquee-track { animation-play-state: paused; }
.gallery-marquee .g-item { flex: 0 0 auto; width: 440px; height: 300px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(8,9,10,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.lightbox-stage { max-width: 90vw; max-height: 84vh; position: relative; }
.lightbox-stage img { max-width: 90vw; max-height: 84vh; width: auto; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox-cap { text-align: center; color: rgba(255,255,255,.8); margin-top: 18px; font-size: .85rem; letter-spacing: .06em; }
.lightbox-cap .num { color: var(--bronze-l); margin-left: 8px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: #fff; width: 56px; height: 56px;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%; transition: all var(--t-fast); z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--bronze); color: var(--ink-deep); border-color: var(--bronze); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; }

/* ============================================================
   VAZİYET PLANI
   ============================================================ */
.siteplan-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--ink-deep); cursor: zoom-in;
  border: 1px solid var(--line);
}
.siteplan-wrap img { width: 100%; }
.siteplan-wrap .zoom-hint {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(15,17,19,.85); color: #fff; padding: 11px 19px; border-radius: 50px;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 9px; backdrop-filter: blur(6px);
  border: 1px solid var(--line);
}
.zoom-hint svg { width: 16px; height: 16px; }

.block-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.block-legend .bl {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 20px 22px; display: flex; align-items: center; gap: 16px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.block-legend .bl:hover { border-color: var(--bronze); transform: translateY(-3px); }
.block-legend .bl .code {
  width: 46px; height: 46px; flex-shrink: 0; background: var(--bronze); color: var(--ink-deep);
  display: grid; place-items: center; font-family: var(--f-display); font-size: 1.15rem;
  border-radius: var(--radius); font-weight: 700;
}
.block-legend .bl .info strong { display: block; font-size: .96rem; color: #fff; }
.block-legend .bl .info span { font-size: .8rem; color: var(--muted); }

/* ============================================================
   YENİ VAZİYET PLANI — Çok adımlı navigasyon (Müşteri rev. 05/2025)
   ============================================================ */
.block-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 24px;
}
.block-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none; color: inherit;
}
.block-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
}
.block-card .bc-cover {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
}
.block-card .bc-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.block-card:hover .bc-cover img { transform: scale(1.06); }
.block-card .bc-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--brand); color: var(--ink-deep);
  padding: 6px 14px; border-radius: 50px;
  font-family: var(--f-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.block-card .bc-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.block-card .bc-eyebrow {
  font-family: var(--f-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brand-l);
  margin-bottom: 10px;
}
.block-card h3 { font-size: 1.32rem; margin-bottom: 10px; color: #fff; }
.block-card p { font-size: .92rem; color: var(--muted); margin-bottom: 18px; font-weight: 300; flex: 1; }
.block-card .bc-action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-l);
}
.block-card .bc-action svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.block-card:hover .bc-action svg { transform: translateX(5px); }

/* Blok detay paneli — varsayılan gizli, :target ile açılır */
.block-detail { display: none; padding-top: 100px; padding-bottom: 100px; scroll-margin-top: 80px; }
.block-detail:target,
.block-detail.is-open { display: block; animation: fadeUp .6s var(--ease); }

/* A-B-C için sub-block (alt blok) detay paneli — JS hash routing ile açılır */
.sub-block-detail { display: none; padding-top: 80px; padding-bottom: 100px; scroll-margin-top: 80px; }
.sub-block-detail.is-open { display: block; animation: fadeUp .6s var(--ease); }

/* A-B-C 3'lü blok kartları (A, B, C seçenekleri) */
.block-cards.block-cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .block-cards.block-cards-3 { grid-template-columns: 1fr; } }

.block-detail-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.block-detail-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }

.back-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border: 1px solid var(--line-strong);
  border-radius: 50px; font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78);
  transition: all var(--t-fast); background: transparent;
}
.back-btn svg { width: 15px; height: 15px; }
.back-btn:hover { border-color: var(--brand); color: #fff; background: rgba(162,203,66,.08); }

.block-hero {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 40px; max-height: 480px;
}
.block-hero img { width: 100%; height: 100%; object-fit: cover; max-height: 480px; }

.empty-state {
  text-align: center; padding: 60px 20px;
  background: var(--surface); border-radius: var(--radius-lg);
}
.empty-state p { color: var(--muted); margin-bottom: 22px; font-size: 1.05rem; }

/* Stil seçim kartları — 5'li grid (5. sarkmasın) */
.style-cards {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  margin-bottom: 30px;
}
@media (max-width: 1180px) { .style-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px)  { .style-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .style-cards { grid-template-columns: 1fr; } }
.style-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 26px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: all var(--t-fast);
}
.style-card:hover {
  border-color: var(--brand); background: var(--surface-2);
  transform: translateY(-3px);
}
.style-card .style-num {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.4rem; color: var(--brand);
}
.style-card h3 { font-size: 1.08rem; color: #fff; margin: 0; }
.style-card .style-action {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-l); padding-top: 12px;
}
.style-card .style-action svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.style-card:hover .style-action svg { transform: translateX(4px); }

/* Stil detay (planlar) — varsayılan gizli, :target ile açılır */
.style-detail { display: none; padding-top: 30px; }
.style-detail:target,
.style-detail.is-open { display: block; animation: fadeUp .6s var(--ease); }

.style-detail-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 22px;
}
.style-detail-head h3 { margin: 0; font-size: 1.4rem; color: #fff; }

.plan-grid-2col { grid-template-columns: repeat(2, 1fr); }

.style-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.style-actions-grid { margin-top: 28px; padding-top: 28px; }

/* Proje sayfası — "Kat Planları" mini blok rozetleri (vaziyet planına link) */
.block-mini-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.block-mini-grid a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px; padding: 10px 16px;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px;
  font-family: var(--f-display); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em;
  transition: all var(--t-fast);
}
.block-mini-grid a:hover {
  background: #fff; color: #2f3d10;
  border-color: #fff; transform: translateY(-2px);
}

/* Genel kat planları (stil detayında daire kartlarından önce) */
.general-plans { margin-bottom: 34px; }
.general-plans-title {
  font-family: var(--f-display); font-size: 1.1rem; color: var(--brand-l);
  margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
  font-weight: 500; letter-spacing: .04em;
}

/* ============================================================
   ADIM 4 — Bireysel daire grid + daire detayı (Müşteri rev. 05/2025)
   ============================================================ */
.style-detail-lead {
  font-size: 1.04rem; color: var(--muted); margin: 10px 0 26px;
}
.style-detail-lead strong { color: var(--brand-l); font-weight: 600; }

.apt-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-bottom: 30px;
}
.apt-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: all var(--t-fast); position: relative;
}
.apt-card:hover {
  border-color: var(--brand); background: var(--surface-2); transform: translateY(-2px);
}
.apt-card .apt-no {
  flex-shrink: 0;
  min-width: 52px; height: 52px;
  padding: 0 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: var(--ink-deep);
  border-radius: 50px;                    /* uzun metinlerde pill formu, kısa metinlerde çember */
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  white-space: nowrap;
  text-align: center; line-height: 1.15;
}
.apt-card .apt-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.apt-card .apt-meta strong { color: #fff; font-size: .98rem; font-weight: 500; }
.apt-card .apt-meta span { color: var(--muted); font-size: .82rem; }
.apt-card .apt-arrow {
  width: 18px; height: 18px; color: var(--brand-l); flex-shrink: 0;
  transition: transform var(--t-fast);
}
.apt-card:hover .apt-arrow { transform: translateX(4px); }

/* Daire detay paneli — varsayılan gizli, :target / is-open ile açılır */
.apt-detail { display: none; padding-top: 26px; margin-top: 26px; border-top: 1px solid var(--line); }
.apt-detail:target,
.apt-detail.is-open { display: block; animation: fadeUp .55s var(--ease); }

.apt-detail-head {
  display: flex; gap: 22px; align-items: flex-end;
  flex-wrap: wrap; margin-bottom: 26px;
}
.apt-detail-head h3 {
  margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.apt-detail-head h3 small {
  font-size: .65em; color: var(--muted); font-weight: 400;
}
.apt-detail-eyebrow {
  display: block;
  font-family: var(--f-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-l); margin-bottom: 6px;
}

/* Alt + Üst kat planı yan yana */
.apt-plans {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  margin-bottom: 30px;
}
.apt-plans:has(.apt-plan:only-child) { grid-template-columns: 1fr; max-width: 720px; margin-left: auto; margin-right: auto; }
.apt-plan {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: zoom-in; transition: border-color var(--t-fast), transform var(--t-fast);
}
.apt-plan:hover { border-color: var(--brand); transform: translateY(-3px); }
.apt-plan .ap-img {
  background: #fff;                    /* kat planı görselleri genelde beyaz zeminli */
  padding: 16px;
  display: grid; place-items: center;
  aspect-ratio: 4/3;
}
.apt-plan .ap-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.apt-plan figcaption {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; gap: 10px;
}
.ap-level {
  font-family: var(--f-display); font-size: 1rem; color: #fff; font-weight: 500;
}
.ap-zoom {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-l);
}
.ap-zoom svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .apt-plans { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .apt-cards { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .block-cards { grid-template-columns: 1fr 1fr; }
  .plan-grid-2col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .block-cards { grid-template-columns: 1fr; }
  .style-cards { grid-template-columns: 1fr; }
  .style-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ESKİ block-tabs / block-legend — geriye dönük uyum için tutuldu
   ============================================================ */
.block-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; justify-content: center; }
.block-tabs button {
  padding: 13px 30px; font-family: var(--f-display); font-size: 1rem; font-weight: 500;
  color: var(--muted); border: 1px solid var(--line); border-radius: 50px;
  transition: all var(--t-fast);
}
.block-tabs button:hover { border-color: var(--bronze); color: #fff; }
.block-tabs button.active { background: var(--bronze); color: var(--ink-deep); border-color: var(--bronze); }
.block-panel { display: none; }
.block-panel.active { display: block; animation: fadeUp .6s var(--ease); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); cursor: pointer;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(162,203,66,.3); }
.plan-card .pc-img {
  aspect-ratio: 3/4; background: #fff; overflow: hidden;
  display: grid; place-items: center;
}
.plan-card .pc-img img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--t-med); }
.plan-card:hover .pc-img img { transform: scale(1.04); }
.plan-card .pc-body { padding: 20px 22px 24px; }
.plan-card .pc-body .style { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.plan-card .pc-body h4 { font-size: 1.1rem; margin: 6px 0 5px; }
.plan-card .pc-body p { font-size: .82rem; color: var(--muted); }

/* ============================================================
   VİDEO
   ============================================================ */
.video-feature {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/7; box-shadow: var(--shadow); cursor: pointer; background: var(--ink-deep);
  border: 1px solid var(--line);
}
.video-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.video-feature:hover img { transform: scale(1.05); }
.video-feature::after { content: ''; position: absolute; inset: 0; background: rgba(15,17,19,.4); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 94px; height: 94px; border-radius: 50%; background: rgba(162,203,66,.2);
  backdrop-filter: blur(8px); display: grid; place-items: center; color: #fff;
  border: 1px solid rgba(255,255,255,.45); transition: all var(--t-med);
}
.video-feature:hover .video-play { background: var(--bronze); border-color: var(--bronze); color: var(--ink-deep); transform: translate(-50%,-50%) scale(1.08); }
.video-play::before {
  content: ''; position: absolute; inset: -14px; border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; animation: ripple 2.6s var(--ease) infinite;
}
@keyframes ripple { 0%{transform:scale(.85);opacity:1} 100%{transform:scale(1.4);opacity:0} }
.video-play svg { width: 30px; height: 30px; margin-left: 5px; }
.video-feature .v-label { position: absolute; left: 32px; bottom: 28px; z-index: 2; color: #fff; }
.video-feature .v-label .t { font-family: var(--f-display); font-size: 1.6rem; font-weight: 600; }
.video-feature .v-label .s { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-l); }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); }
.video-embed { position: relative; aspect-ratio: 16/9; background: var(--ink-deep); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .vc-body { padding: 26px 28px 30px; }
.video-card .vc-body .style { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.video-card .vc-body h3 { font-size: 1.32rem; margin: 7px 0 9px; }
.video-card .vc-body p { font-size: .92rem; color: var(--muted); font-weight: 300; }

.video-modal {
  position: fixed; inset: 0; z-index: 500; background: rgba(8,9,10,.97);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.video-modal.open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.video-modal .vm-stage { width: 100%; max-width: 1040px; aspect-ratio: 16/9; position: relative; }
.video-modal iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-lg); }
.video-modal .lb-close { top: -58px; right: 0; }

/* ============================================================
   PROJE BİLGİLERİ KUTUSU
   ============================================================ */
.proj-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.pf-item { background: var(--surface); padding: 30px 26px; transition: background var(--t-fast); }
.pf-item:hover { background: var(--surface-2); }
.pf-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); font-weight: 600; margin-bottom: 11px; }
.pf-value { font-family: var(--f-display); font-size: 1.05rem; color: #fff; font-weight: 300; line-height: 1.45; letter-spacing: .005em; }

/* ============================================================
   MMS PROJECT BANDI
   ============================================================ */
.mms-band {
  padding: 86px 0; text-align: center; position: relative; overflow: hidden;
  background: var(--ink-deep);
}
.mms-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(162,203,66,.1), transparent 55%),
    radial-gradient(circle at 78% 70%, rgba(162,203,66,.07), transparent 55%);
  pointer-events: none;
}
.mms-band > .container { position: relative; z-index: 2; }
.mms-band .mms-logo { height: 62px; width: auto; margin: 0 auto 24px; display: block; filter: brightness(0) invert(1); opacity: .92; }
.mms-band .mms-text-mark { font-family: var(--f-display); font-size: 2rem; font-weight: 700; letter-spacing: .14em; color: var(--bronze-l); margin: 0 auto 20px; display: block; }
.mms-band .h-eyebrow { color: var(--bronze); margin-bottom: 20px; }
.mms-band .h-eyebrow::before, .mms-band .h-eyebrow::after { background: var(--bronze); }
.mms-band h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.mms-band h2 em { color: var(--bronze-l); }
.mms-band p { color: var(--muted); max-width: 660px; margin: 0 auto 30px; font-weight: 300; font-size: 1.05rem; }

/* ============================================================
   TALEP FORMU
   ============================================================ */
.cta-form-section { position: relative; overflow: hidden; }
.cta-form-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../img/gallery/exterior/dis-08.jpg');
  background-size: cover; background-position: center; opacity: .14;
}
.cta-form-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--ink-deep) 35%, rgba(15,17,19,.6));
}
.cta-form-wrap {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px);
  align-items: center; position: relative; z-index: 2;
}
.cta-form-intro h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin: 18px 0 18px; }
.cta-form-intro > p { color: var(--muted); font-weight: 300; margin-bottom: 32px; }
.cta-contact-mini { display: grid; gap: 16px; margin-top: 30px; }
.cta-contact-mini a, .cta-contact-mini div { display: flex; align-items: center; gap: 16px; color: var(--paper); }
.cta-contact-mini .ic {
  width: 48px; height: 48px; flex-shrink: 0; border: 1px solid var(--line-strong);
  border-radius: 50%; display: grid; place-items: center; color: var(--bronze-l);
  transition: all var(--t-fast);
}
.cta-contact-mini a:hover .ic { background: var(--bronze); color: var(--ink-deep); border-color: var(--bronze); }
.cta-contact-mini .ic svg { width: 18px; height: 18px; }
.cta-contact-mini .tx small { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.cta-contact-mini .tx strong { font-weight: 500; font-size: 1.04rem; color: #fff; }

.form-card {
  background: var(--surface); border-radius: var(--radius-xl); padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.form-card .fc-head { margin-bottom: 28px; }
.form-card .fc-head h3 { font-size: 1.7rem; }
.form-card .fc-head p { font-size: .9rem; color: var(--muted); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.field label .req { color: var(--bronze); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--bg); color: #fff;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select option { background: var(--surface); color: #fff; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bronze); background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(162,203,66,.14);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 22px; }
.field-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--bronze); }
.field-consent label { font-size: .82rem; color: var(--muted); text-transform: none; letter-spacing: 0; line-height: 1.6; }
.field-consent a { color: var(--bronze-l); text-decoration: underline; }
.form-note { font-size: .78rem; color: var(--muted-2); margin-top: 16px; text-align: center; }
.form-feedback { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 18px; display: none; }
.form-feedback.ok { display: block; background: rgba(74,143,106,.16); color: #7fce9f; border-left: 3px solid #4a8f6a; }
.form-feedback.err { display: block; background: rgba(192,91,77,.16); color: #e09b90; border-left: 3px solid #c05b4d; }

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 70px); }
.contact-info-card {
  background: var(--surface); border-radius: var(--radius-xl); padding: clamp(28px,3.5vw,44px);
  border: 1px solid var(--line);
}
.contact-line { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ic {
  width: 50px; height: 50px; flex-shrink: 0; background: var(--bg);
  border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--bronze-l);
}
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line .tx small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.contact-line .tx strong { display: block; font-weight: 500; font-size: 1.05rem; margin-top: 3px; color: #fff; }
.contact-line .tx p { font-size: .95rem; color: var(--muted); }
.map-frame {
  border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/10; background: var(--surface-2); position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.92) contrast(.85) hue-rotate(180deg); }

/* Harita üzerine tıklanınca Google Maps'i açan overlay */
.map-frame-clickable .map-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 22px;
  background: transparent;
  transition: background var(--t-fast);
}
.map-frame-clickable .map-overlay:hover { background: rgba(15,17,19,.18); }
.map-overlay-inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; background: var(--brand); color: var(--ink-deep);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 50px; box-shadow: 0 14px 30px rgba(0,0,0,.4);
  transition: all var(--t-fast);
}
.map-overlay-inner svg { width: 16px; height: 16px; }
.map-frame-clickable .map-overlay:hover .map-overlay-inner {
  background: var(--brand-l); transform: translateY(-2px);
}

.map-actions {
  display: flex; gap: 14px; justify-content: center; margin-top: 28px;
  flex-wrap: wrap;
}

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.fw-right { position: fixed; right: 24px; bottom: 28px; z-index: 210; display: flex; flex-direction: column; gap: 14px; }
.fw-left  { position: fixed; left:  24px; bottom: 28px; z-index: 210; }
/* Masaüstünde sağdaki tam-yükseklik MENÜ sekmesi (62px) ile çakışmasın */
@media (min-width: 981px) {
  .fw-right { right: 86px; }
}
.fw-btn {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.45); position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fw-btn:hover { transform: scale(1.08); }
.fw-btn svg { width: 30px; height: 30px; }
.fw-wa { background: #25d366; }
.fw-wa svg { width: 32px; height: 32px; }
.fw-tel { background: var(--bronze); color: var(--ink-deep); }
.fw-top {
  background: #fff; color: var(--ink-deep); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s, background var(--t-fast), color var(--t-fast);
}
.fw-top.show { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.fw-top:hover { background: var(--bronze); color: var(--ink-deep); }
.fw-top svg { width: 22px; height: 22px; }
.fw-btn[data-tip-left]::after {
  content: attr(data-tip-left); position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--ink-deep); color: #fff; padding: 9px 14px; border-radius: var(--radius);
  font-size: .78rem; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast); letter-spacing: .04em; border: 1px solid var(--line);
}
.fw-btn[data-tip-right]::after {
  content: attr(data-tip-right); position: absolute; left: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--ink-deep); color: #fff; padding: 9px 14px; border-radius: var(--radius);
  font-size: .78rem; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast); letter-spacing: .04em; border: 1px solid var(--line);
}
.fw-btn:hover::after { opacity: 1; }
.fw-pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; z-index: -1; animation: fwpulse 2.4s var(--ease) infinite;
}
@keyframes fwpulse { 0%{transform:scale(1);opacity:.55} 100%{transform:scale(1.7);opacity:0} }

.fw-social {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 170; display: flex; flex-direction: column; gap: 6px;
}
.fw-social a {
  width: 46px; height: 46px; display: grid; place-items: center; color: #fff;
  transition: filter var(--t-fast), transform var(--t-fast); position: relative;
  border-radius: 0 var(--radius) var(--radius) 0; box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.fw-social a svg { width: 22px; height: 22px; }
.fw-social a:hover { filter: brightness(1.15); transform: translateX(4px); }
.fw-social a.fw-ig { background: linear-gradient(135deg,#feda75 0%,#fa7e1e 25%,#d62976 50%,#962fbf 75%,#4f5bd5 100%); }
.fw-social a.fw-yt { background: #FF0000; }
.fw-social a.fw-fb { background: #1877F2; }
.fw-social a.fw-in { background: #0A66C2; }
.fw-social a[data-tip-right]::after {
  content: attr(data-tip-right); position: absolute; left: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--ink-deep); color: #fff; padding: 7px 14px; border-radius: var(--radius);
  font-size: .76rem; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast); letter-spacing: .04em; border: 1px solid var(--line);
}
.fw-social a:hover::after { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-deep); color: var(--muted); border-top: 1px solid var(--line); }
.footer-top { padding: 86px 0 58px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 46px; }
.footer-brand img { height: 48px; margin-bottom: 24px; }
.footer-brand p { font-size: .92rem; font-weight: 300; max-width: 290px; }
.footer-col h4 {
  color: #fff; font-family: var(--f-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { font-size: .92rem; transition: color var(--t-fast), padding var(--t-fast); }
.footer-col ul a:hover { color: var(--bronze-l); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: .92rem; margin-bottom: 15px; }
.footer-contact li svg { width: 17px; height: 17px; color: var(--bronze); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; transition: all var(--t-fast); color: var(--muted);
}
.footer-social a:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink-deep); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 28px 0;
  font-size: .82rem;
}
.footer-bottom .pw {
  display: inline-flex; align-items: center; gap: 8px; color: var(--muted-2);
  transition: color var(--t-fast);
}
.footer-bottom .pw img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .55; transition: opacity var(--t-fast); }
.footer-bottom .pw:hover { color: var(--bronze-l); }
.footer-bottom .pw:hover img { opacity: 1; }
.footer-bottom a:hover { color: var(--bronze-l); }

/* ============================================================
   ÇEREZ ONAYI
   ============================================================ */
.cookie-bar {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 300;
  background: var(--surface); color: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 22px 26px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 24px; max-width: 780px; margin: 0 auto;
  transform: translateY(150%); transition: transform .55s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: .88rem; font-weight: 300; flex: 1; }
.cookie-bar p a { color: var(--bronze-l); text-decoration: underline; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 12px 24px; }

/* ============================================================
   404
   ============================================================ */
.page-404 {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  background: var(--ink-deep); color: var(--paper); padding: 40px;
  position: relative; overflow: hidden;
}
.page-404::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../img/gallery/exterior/dis-01.jpg');
  background-size: cover; background-position: center; opacity: .14;
}
.page-404 .inner { position: relative; z-index: 2; max-width: 560px; }
.page-404 .big {
  font-family: var(--f-display); font-size: clamp(7rem, 20vw, 16rem); font-weight: 700;
  color: #fff; line-height: .9; letter-spacing: -.03em;
}
.page-404 .big em { color: var(--bronze-l); }
.page-404 h1 { font-size: clamp(1.6rem,3vw,2.4rem); margin: 10px 0 16px; }
.page-404 p { color: var(--muted); font-weight: 300; margin-bottom: 32px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="left"].is-visible, [data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="scale"].is-visible { transform: scale(1); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.parallax { overflow: hidden; }
.parallax img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2)::after { display: none; }
  .proj-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .main-nav, .header-cta, .lang-switch { display: none; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .type-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .gallery-grid.fixed { grid-template-columns: 1fr 1fr; }
  .cta-form-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .block-legend { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  .section { padding: 66px 0; }
  .hero { min-height: 580px; }
  .hero p { font-size: 1rem; }
  .hero-actions .btn { flex: 1; padding: 16px 18px; font-size: .72rem; }
  .hero-nav { bottom: 26px; }
  .hero-arrows, .hero-scroll { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.fixed { grid-template-columns: 1fr; }
  .gallery-marquee .g-item { width: 280px; height: 200px; }
  .gallery-marquee-track { gap: 14px; animation-duration: 46s; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 38px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 16px; }
  .block-legend, .plan-grid { grid-template-columns: 1fr; }
  .proj-facts { grid-template-columns: 1fr; }
  .split-media .media-badge { position: static; max-width: none; margin-top: 18px; }
  .split-media .media-frame { display: none; }
  .cookie-bar { flex-direction: column; text-align: center; left: 14px; right: 14px; bottom: 14px; }
  .cookie-bar .cookie-actions { width: 100%; }
  .cookie-bar .btn { flex: 1; }
  .fw-right { right: 14px; bottom: 16px; }
  .fw-left  { left: 14px;  bottom: 16px; }
  .fw-btn { width: 56px; height: 56px; }
  .fw-btn svg { width: 26px; height: 26px; }
  .fw-wa svg { width: 28px; height: 28px; }
  .fw-social { display: none; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; } .lb-close { top: 14px; right: 14px; }
  .mobile-nav { padding: 28px 28px 32px; }
}
