/* =========================================================
   BAŞAK BAHÇE — Premium Tek Sayfa
   Sıcak Editöryal mood (Mood B). Logo paletinden türetilmiş.
   ========================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; display: block; }
/* <picture> wrapper layout'a karışmasın — img kuralları img'e uygulansın */
picture { display: contents; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Palette */
  --cream-50: #FCF6EC;
  --cream-100: #F7EFE1;
  --cream-200: #F0E7D4;
  --orange-500: #FF7D24;
  --orange-600: #E66A0F;
  --amber-700: #BA6E1C;
  --green-200: #C0DD97;
  --green-400: #86C846;
  --green-600: #5A9024;
  --green-700: #3B6D11;
  --anthracite: #2C2E35;
  --gray-500: #866D4B;
  --gray-700: #5C5240;
  --border: #ECE4D6;
  --white: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(60,40,10,0.06);
  --shadow-md: 0 6px 20px rgba(60,40,10,0.08);
  --shadow-lg: 0 14px 40px rgba(60,40,10,0.12);

  /* Radii */
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(16px, 4vw, 40px);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream-50);
  color: var(--anthracite);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'DM Serif Display', Georgia, serif; }

.label-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-700);
}
.label-eyebrow.green { color: var(--green-600); }

h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--anthracite);
}
h2.section-title em { color: var(--amber-700); font-style: italic; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== HEADER ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(252, 246, 236, 0.65);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
header.site-header.scrolled {
  background: rgba(252, 246, 236, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  /* logo viewBox 3996×892 ≈ 4.48:1 — height kontrolü aspect-ratio'yu korur */
}
@media (max-width: 900px) {
  .brand-logo { height: 36px; }
}
nav.primary { display: flex; align-items: center; gap: 28px; }
nav.primary a {
  font-size: 13.5px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav.primary a:hover { color: var(--amber-700); }
nav.primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--orange-500);
  transition: width 0.3s var(--ease-out);
}
nav.primary a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 125, 36, 0.28);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 125, 36, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--anthracite);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--amber-700); color: var(--amber-700); }

@media (max-width: 900px) {
  nav.primary { display: none; }
  .header-cta .btn-ghost { display: none; }
  .header-inner { height: 64px; }
}

/* ===== HERO HOST — birden fazla şablon barındırır ===== */
.hero-host {
  position: relative;
  min-height: clamp(560px, 82vh, 860px);
  overflow: hidden;
  background: var(--cream-50);
}
/* .hero-host > .hero-template ile specificity = (0,1,1) → .hero (0,1,0) override edemez */
.hero-host > .hero-template {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out);
}
.hero-host > .hero-template.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Progress bar (auto-advance indicator) — hero üstünde */
.hero-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(0,0,0,0.06);
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}
.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-700));
  box-shadow: 0 0 8px rgba(255,125,36,0.5);
  transform-origin: left center;
  /* Animation JS tarafından duration ve restart ayarlanır */
}
.hero-progress-fill.run {
  animation: hero-progress-fill linear forwards;
}
.hero-host:hover .hero-progress-fill { animation-play-state: paused; }
@keyframes hero-progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-progress-fill { animation: none !important; width: 0; }
}

/* Şablon seçici dots (alt orta) */
.hero-template-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}
.hero-template-dots:empty { display: none; }
.hero-template-dots button {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(44,46,53,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-template-dots button.active {
  background: var(--orange-500);
  width: 48px;
}

/* ===== TEMPLATE 1: Magazine (mevcut yapı + poster-fill ürün) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(40px, 6vh, 70px) 0 clamp(60px, 8vh, 100px);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 125, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(134, 200, 70, 0.10) 0%, transparent 55%),
    var(--cream-50);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: 100%;
}
.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 30px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 8vw, 96px);
  /* line-height 1.05 + per-word padding-bottom: Türkçe descender'lar (ç, ğ, j, y)
     için yer açar. background-clip:text ile kombinasyonda gradient kelimenin
     line-box'ına bağlı; descender'ları korumak için bu boşluk şart. */
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title .word {
  display: block;
  padding-bottom: 0.08em;
  opacity: 0;
  transform: translateY(20px);
  animation: word-reveal 0.9s var(--ease-out) forwards;
}
.hero-title .word.w1 { animation-delay: 0.5s; }
.hero-title .word.w2 { animation-delay: 0.65s; }
.hero-title .word.w3 { animation-delay: 0.8s; }
.hero-title .grad-green {
  background: linear-gradient(180deg, var(--green-400) 0%, var(--green-700) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-title .anthracite { color: var(--anthracite); }
.hero-title .grad-orange {
  background: linear-gradient(180deg, var(--orange-500) 0%, var(--amber-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
@keyframes word-reveal { to { opacity: 1; transform: translateY(0); } }

.hero-slogan {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 1s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 1.15s forwards;
}

.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 1.3s forwards;
}
.issue-tag {
  align-self: flex-end;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--amber-700);
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
}
/* Hero ürün featured-frame:
   1:1 oran, beyaz alt strip ile premium boutique kart.
   Dark gradient overlay yerine ayrı text alanı — Aesop/Loro Piana stili. */
.feature-frame {
  flex: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: 560px;
  box-shadow: var(--shadow-md);
  background: var(--white);
  cursor: pointer;
}
.hero-feature {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  pointer-events: none;
}
.hero-feature.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* Üst: görsel alanı (kartın yaklaşık %75'i) */
.hero-feature-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-100) 0%, #f3f8ec 100%);
}
.hero-feature-img picture,
.hero-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-feature-img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5%;  /* SVG illüstrasyonlar daha az boşluklu, alanı dolduruyor */
}
.hero-feature.active .hero-feature-img {
  animation: ken-burns 14s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.04) translateY(-4px); }
}
/* Koleksiyon etiketi: görsel üzerinde sol-üst köşe */
.hero-feature-collection {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  color: var(--white);
  background: var(--orange-500);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 4;
}
/* Alt strip: beyaz zemin, ürün metni */
.hero-feature-meta {
  flex-shrink: 0;
  padding: 16px 20px 18px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.hero-feature-meta .meta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-feature-meta .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.hero-feature-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.15;
  color: var(--anthracite);
  flex: 1;
}
.hero-feature-price {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--amber-700);
  white-space: nowrap;
}
.hero-feature-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  gap: 6px;
}
.hero-feature-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--amber-700);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.hero-feature-dots button:hover {
  background: rgba(186,110,28,0.4);
}
.hero-feature-dots button.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(255,125,36,0.5);
}

/* ===== TEMPLATE 2: Video Hero ===== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* YouTube/Vimeo iframe için: object-fit yok → over-size + crop */
.hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--anthracite);
}
.hero-video-bg-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;       /* 16/9 oranında yükseklik kadar geniş */
  height: 56.25vw;       /* 9/16 oranında genişlik kadar yüksek */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

/* === fit_mode = "contain" (orantı korunur, letterbox kabul) ===
   iframe over-size'ı bypass eder, bg-wrap'ı parent kutusuna sığdırır.
   YouTube/Vimeo native 16:9 oranını korur, kenarlarda boşluk olabilir. */
.hero-video[data-fit="contain"] .hero-video-bg-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
  top: 0;
  left: 0;
}
.hero-video[data-fit="contain"] video.hero-video-bg {
  object-fit: contain;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0.30) 0%, rgba(26,26,24,0.20) 40%, rgba(26,26,24,0.65) 100%);
  z-index: 1;
  pointer-events: none;  /* video kontrolleri tıklanabilir kalsın */
}
.hero-video-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-video-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--orange-500);
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.hero-video-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  white-space: pre-line;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-video-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-video-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .hero-video-title { font-size: clamp(32px, 9vw, 48px); }
}

/* ===== CUSTOM VIDEO CONTROLS ===== */
.video-controls {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  /* Default: alt orta */
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: auto;
}
.hero-video:hover .video-controls,
.video-controls:focus-within {
  opacity: 1;
}
.video-controls .vc-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.video-controls .vc-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: scale(1.06);
}
.video-controls .vc-btn svg { width: 16px; height: 16px; pointer-events: none; }
.video-controls .vc-btn .icon-on { display: block; }
.video-controls .vc-btn .icon-off { display: none; }
.video-controls .vc-btn[data-state="off"] .icon-on { display: none; }
.video-controls .vc-btn[data-state="off"] .icon-off { display: block; }

/* Layout-specific control positions */
.hero-video[data-layout="split"] .video-controls {
  bottom: 22px; left: 22px; transform: none;
}
.hero-video[data-layout="card"] .video-controls,
.hero-video[data-layout="aside"] .video-controls {
  bottom: 14px; right: 14px; left: auto; transform: none;
}

/* Mobil/touch device: kontroller her zaman görünür (hover yok)
   Hem (hover: none) hem max-width 900: chrome desktop resize'da pointer:fine
   kalsa bile küçük viewport'ta görünsün. */
@media (hover: none), (max-width: 900px) {
  .video-controls {
    opacity: 1;
    bottom: 14px;
  }
  /* Mobilde butonlar biraz daha büyük (touch target ≥ 44px) */
  .video-controls .vc-btn {
    width: 44px; height: 44px;
  }
}

/* ===== VIDEO LAYOUT: SPLIT (sol video / sağ tipografi) ===== */
.hero-video[data-layout="split"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
}
.hero-video[data-layout="split"] .hv-split-video {
  position: relative;
  overflow: hidden;
  background: var(--anthracite);
}
.hero-video[data-layout="split"] .hv-split-video video,
.hero-video[data-layout="split"] .hv-split-video .hero-video-bg-wrap {
  position: absolute;
  inset: 0;
}
.hero-video[data-layout="split"] .hv-split-text {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 125, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(134, 200, 70, 0.10) 0%, transparent 55%),
    var(--cream-50);
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 70px);
  color: var(--anthracite);
}
.hero-video[data-layout="split"] .hv-split-inner { max-width: 540px; }
.hero-video[data-layout="split"] .hero-video-eyebrow {
  background: var(--white);
  color: var(--amber-700);
  border: 1px solid var(--border);
  backdrop-filter: none;
}
.hero-video[data-layout="split"] .hero-video-title {
  color: var(--anthracite);
  text-shadow: none;
  font-size: clamp(36px, 5vw, 64px);
}
.hero-video[data-layout="split"] .hero-video-subtitle {
  color: var(--gray-700);
}
@media (max-width: 800px) {
  .hero-video[data-layout="split"] {
    grid-template-columns: 1fr;
    grid-template-rows: 50% 1fr;
  }
}

/* ===== VIDEO LAYOUT: CARD (krem zemin, merkez büyük yuvarlatılmış video kartı) ===== */
.hero-video[data-layout="card"] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vh, 60px) clamp(20px, 4vw, 60px);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 125, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(134, 200, 70, 0.10) 0%, transparent 55%),
    var(--cream-50);
}
.hero-video[data-layout="card"] .hv-card-stage {
  width: 100%;
  max-width: var(--max-w);
}
.hero-video[data-layout="card"] .hv-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: calc(100vh - 200px);
  border-radius: clamp(14px, 2vw, 28px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--anthracite);
}
.hero-video[data-layout="card"] .hv-card video,
.hero-video[data-layout="card"] .hv-card .hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.hero-video[data-layout="card"] .hero-video-overlay {
  border-radius: inherit;
}
.hero-video[data-layout="card"] .hv-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 4vw, 50px);
  z-index: 2;
  color: var(--white);
}
.hero-video[data-layout="card"] .hero-video-title {
  font-size: clamp(32px, 5vw, 64px);
}
@media (max-width: 720px) {
  .hero-video[data-layout="card"] .hv-card { aspect-ratio: 4/5; }
}

/* ===== VIDEO LAYOUT: ASIDE (Magazine-tarzı, sağ köşe video kartı) ===== */
.hero-video[data-layout="aside"] {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vh, 70px) 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 125, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(134, 200, 70, 0.10) 0%, transparent 55%),
    var(--cream-50);
}
.hero-video[data-layout="aside"] .hv-aside {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}
.hero-video[data-layout="aside"] .hv-aside-text {
  color: var(--anthracite);
}
.hero-video[data-layout="aside"] .hv-aside-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 28px 0 24px;
  white-space: pre-line;
  color: var(--anthracite);
}
.hero-video[data-layout="aside"] .hv-aside-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-video[data-layout="aside"] .hv-aside-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  /* aspect-ratio: 9/10 → text yüksekliğine yakın, kırpma minimum */
  aspect-ratio: 9/10;
  min-height: 380px;
  max-height: 560px;
  box-shadow: var(--shadow-lg);
  background: var(--anthracite);
}
.hero-video[data-layout="aside"] .hv-aside-card video,
.hero-video[data-layout="aside"] .hv-aside-card .hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.hero-video[data-layout="aside"] .hero-video-overlay {
  border-radius: inherit;
}
@media (max-width: 900px) {
  .hero-video[data-layout="aside"] .hv-aside {
    grid-template-columns: 1fr;
  }
  .hero-video[data-layout="aside"] .hv-aside-card {
    /* min-height kaldırıldı: 16/9 oran × 320px min-height = 569px width
       container 460px → 109px taşma. Şimdi aspect-ratio width'ten hesaplar. */
    min-height: 0;
    max-height: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--amber-700);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 0.6s ease-out 1.6s forwards;
}
.scroll-cue::before {
  content: '↓';
  font-size: 14px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { order: 2; }
  .feature-frame { min-height: 280px; }
  .scroll-cue { display: none; }
}

/* ===== SECTION HEADER (shared) ===== */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.sec-head .left h2 { margin-top: 6px; }
.sec-head .right {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== FEATURED SHOWCASE (cinematic poster cards) ===== */
.featured { padding: clamp(60px, 8vh, 100px) 0; background: var(--cream-50); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Featured Showcase kartları: 1:1 oran, görsel üst, beyaz strip alt
   Aesop/Loro Piana boutique pattern (dark gradient overlay yok). */
.feat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-200);
}
/* Üst: görsel alanı (kartın yaklaşık %72'si) */
.feat-card .feat-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-100) 0%, #f3f8ec 100%);
  transition: none;
}
.feat-card .feat-img img,
.feat-card .feat-img picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.feat-card .feat-img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.7s var(--ease-out);
}
.feat-card:hover .feat-img img,
.feat-card:hover .feat-img picture,
.feat-card:hover .feat-img svg { transform: scale(1.06); }

/* Sol-üst: YENİ rozeti (varsa) */
.feat-card .badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 9.5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* Alt strip: beyaz zemin, kategori + ad + fiyat */
.feat-card .feat-content {
  flex-shrink: 0;
  padding: 14px 18px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feat-card .feat-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
}
.feat-card .feat-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 2px;
}
.feat-card .feat-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  color: var(--anthracite);
  flex: 1;
}
.feat-card .feat-price {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--amber-700);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-card { aspect-ratio: 4/3; }
}

/* ===== BRIDGE (Bahçe / Tarla split) ===== */
.bridge { padding: clamp(50px, 7vh, 80px) 0; }
.bridge-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.bridge-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  padding: 36px clamp(22px, 4vw, 40px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.4s var(--ease-out);
  isolation: isolate;
  width: 100%;
}
.bridge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}
.bridge-card:hover { transform: translateY(-3px); }
.bridge-card:hover::before { transform: scale(1.04); }

.bridge-card.bahce::before {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #d8eab8 0%, #b1ce82 100%);
}
.bridge-card.tarla::before {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
    linear-gradient(135deg, #f0c89a 0%, #d18a3e 100%);
}
.bridge-card .label-eyebrow { color: var(--anthracite); opacity: 0.7; }
.bridge-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  color: var(--anthracite);
  margin-top: 8px;
}
.bridge-card p {
  font-size: 13.5px;
  color: var(--anthracite);
  opacity: 0.78;
  margin-top: 10px;
  max-width: 320px;
  line-height: 1.5;
}
.bridge-card .arrow-pill {
  align-self: flex-start;
  margin-top: 24px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--anthracite);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  transition: all 0.25s var(--ease-out);
}
.bridge-card:hover .arrow-pill { background: var(--white); gap: 14px; }

@media (max-width: 720px) {
  .bridge-split { grid-template-columns: 1fr; }
  .bridge-card { min-height: 180px; }
}

/* ===== MAIN PRODUCT GRID (B - modern premium cards) ===== */
.products-section {
  padding: clamp(50px, 7vh, 80px) 0 clamp(70px, 10vh, 120px);
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.filters-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px clamp(16px, 3vw, 24px);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.search-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search-input {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: 30px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus-within {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255, 125, 36, 0.12);
  background: var(--white);
}
.search-input input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--anthracite);
  outline: none;
}
.search-input input::placeholder { color: var(--gray-500); }
.search-input .icon { color: var(--gray-500); flex-shrink: 0; }

.tabs-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tab {
  padding: 7px 16px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--gray-700);
  font-weight: 600;
  transition: all 0.2s;
}
.tab:hover { border-color: var(--amber-700); color: var(--amber-700); }
.tab.active {
  background: var(--anthracite);
  color: var(--white);
  border-color: var(--anthracite);
}
/* Şemsiyeli filtreler (Bahçe / Tarla) — sıcak amber rengi ile diğerlerinden ayrışır */
.tab-group {
  border-color: var(--amber-700);
  color: var(--amber-700);
  font-style: italic;
}
.tab-group.active {
  background: var(--amber-700);
  color: var(--white);
  border-color: var(--amber-700);
}

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(20px);
}
.pcard.in { opacity: 1; transform: translateY(0); }
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-200);
}
.pcard .pcard-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-100) 0%, #f3f8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard .pcard-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.pcard .pcard-img-wrap svg {
  width: 60%; max-height: 70%;
  transition: transform 0.6s var(--ease-out);
}
.pcard:hover .pcard-img-wrap img,
.pcard:hover .pcard-img-wrap svg { transform: scale(1.06); }

.pcard .pcard-rozet {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.pcard .pcard-rozet.yeni { background: var(--green-400); color: var(--white); }
.pcard .pcard-rozet.indirim { background: var(--orange-500); color: var(--white); }

.pcard .pcard-body {
  padding: 16px 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard .pcard-cat {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
}
.pcard .pcard-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.25;
  margin-top: 8px;
  flex: 1;
}
.pcard .pcard-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 14px;
}
.pcard .pcard-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--anthracite);
  line-height: 1;
}
.pcard .pcard-price small {
  display: block;
  font-size: 9.5px;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.pcard .pcard-cta {
  padding: 7px 14px;
  background: var(--cream-50);
  color: var(--amber-700);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.25s;
}
.pcard:hover .pcard-cta { background: var(--orange-500); color: var(--white); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.empty-state .icon { font-size: 36px; margin-bottom: 10px; }

/* ===== BRAND FILTER (kategori sekmelerinin altında) ===== */
.brand-filter-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 10px; margin-top: 4px;
  border-top: 1px dashed var(--border);
  align-items: center;
}
.brand-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--cream-50);
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 32px;
}
.brand-chip:hover { border-color: var(--orange-500); color: var(--orange-500); }
.brand-chip.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255,125,36,0.25);
}
.brand-chip img {
  height: 18px; width: auto; max-width: 60px;
  object-fit: contain; display: block;
}
.brand-chip.active img { filter: brightness(0) invert(1); }

/* ===== BRANDS SECTION (marquee carousel) ===== */
.brands-section {
  padding: clamp(40px, 6vh, 70px) 0;
  background: var(--cream-50);
  overflow: hidden;
}
.brand-strip {
  position: relative;
  overflow: hidden;            /* taşan kartları gizle, container içinde kalır */
  margin-top: 24px;
  padding: 18px 0;
}
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* CSS variable'lar: JS dinamik set eder
     --marquee-end: -100% / copyCount (tam bir set boyu kayma → seamless)
     --marquee-duration: copyCount * 6s (sabit hız) */
  --marquee-end: -33.3333%;
  --marquee-duration: 36s;
  animation: brand-marquee var(--marquee-duration) linear infinite;
}
.brand-track .brand-card { margin-right: 40px; }
.brand-strip:hover .brand-track { animation-play-state: paused; }
@keyframes brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-end)); }
}
.brand-card {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  height: 80px;
  min-width: 160px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--anthracite);
  font-style: italic;
}
.brand-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(60,40,10,0.08);
}
.brand-card img {
  max-height: 56px; max-width: 140px;
  width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(0.3); transition: filter 0.3s;
}
.brand-card:hover img { filter: grayscale(0); }
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; transform: none; }
}

/* ===== STORY (Hikayemiz) ===== */
.story { padding: clamp(70px, 9vh, 110px) 0; background: var(--cream-50); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1/1;
}
.story-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cream-200);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.story-img.tall { grid-row: span 2; }
.story-img.wide { grid-column: span 1; }
.story-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  font-weight: 700;
  text-transform: uppercase;
}
.story-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}
.story-content h2 em { color: var(--amber-700); font-style: italic; }
.story-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.story-content p strong { color: var(--anthracite); }
.story-content p em { color: var(--amber-700); font-style: italic; }

.timeline {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tl-step { flex: 1; text-align: center; position: relative; }
.tl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.tl-step .year {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gray-500);
  transition: color 0.3s;
}
.tl-step.active .year { color: var(--amber-700); }
.tl-step.now .year { color: var(--orange-500); font-style: normal; }
.tl-step .desc {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-images { aspect-ratio: 1.4/1; }
}

/* ===== STATS (count-up strip) ===== */
.stats {
  padding: clamp(40px, 6vh, 70px) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(134,200,70,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,125,36,0.10), transparent 50%),
    var(--cream-100);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-cell { padding: 12px 8px; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--amber-700);
  letter-spacing: -0.02em;
}
.stat-num .suffix {
  font-size: 0.55em;
  color: var(--orange-500);
  margin-left: 2px;
  font-style: normal;
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ===== SHOWROOM ===== */
.showroom { padding: clamp(60px, 8vh, 100px) 0; }
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.showroom-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  position: relative;
  background: var(--cream-100);
  box-shadow: var(--shadow-md);
}
.showroom-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}
.map-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--anthracite);
  box-shadow: var(--shadow-sm);
}
.map-label small {
  display: block;
  font-weight: 400;
  color: var(--gray-500);
  font-size: 10px;
  margin-top: 2px;
}

.showroom-info { display: flex; flex-direction: column; gap: 18px; }
.showroom-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  height: 180px;
}
.showroom-photos > div {
  border-radius: var(--radius-md);
  background-color: var(--cream-200);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.showroom-photos > div::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 8.5px;
  color: var(--white);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  padding: 3px 8px;
  border-radius: 12px;
}

.showroom-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showroom-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.05;
  color: var(--anthracite);
}
.showroom-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.5;
}
.showroom-row .row-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--amber-700);
  margin-top: 2px;
}
.showroom-row b { color: var(--anthracite); }
.showroom-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

@media (max-width: 800px) {
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-map { min-height: 280px; }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--cream-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info {
  background: linear-gradient(160deg, var(--cream-100) 0%, #f3f8ec 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px clamp(20px, 3vw, 32px);
}
.contact-info .form-subtitle {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 20px;
}
.contact-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.contact-info-row svg { color: var(--amber-700); flex-shrink: 0; margin-top: 2px; }
.contact-info-row a { color: var(--anthracite); font-weight: 600; transition: color 0.2s; }
.contact-info-row a:hover { color: var(--orange-500); }
.contact-info-row small { color: var(--gray-500); font-size: 12px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form .cf-row { display: flex; flex-direction: column; }
.contact-form .cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream-50);
  font: inherit;
  color: var(--anthracite);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255,125,36,0.12);
  background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .cf-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 6px;
}
.contact-status { font-size: 13px; margin: 0; line-height: 1.4; }
.contact-status.success { color: var(--green-700); font-weight: 600; }
.contact-status.error { color: #C73B1F; font-weight: 600; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .cf-row-2 { grid-template-columns: 1fr; }
}

/* ===== FAQ (SSS accordion) ===== */
.faq { padding: clamp(60px, 8vh, 100px) 0; background: var(--cream-100); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--amber-700);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--anthracite);
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--amber-700); }
.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s;
  color: var(--amber-700);
  font-weight: 700;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 360px; }

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--orange-500); }
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  /* siyah footer üzerinde beyaz/kontrast ihtiyacı için arka plana hafif beyaz katman ver */
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 8px;
  box-sizing: content-box;
}
.footer-brand p { margin-top: 12px; max-width: 320px; }
.footer-list { display: flex; flex-direction: column; gap: 6px; }

.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--orange-500); }
.social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.85); }
.social-icon:hover svg { color: var(--white); }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ===== MODAL =====
   Compact 2-column layout on desktop, stacked on mobile.
   Designed to ALWAYS fit viewport height — no scrollbar. */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: clamp(8px, 2vw, 20px);
  opacity: 0;
  transition: opacity 0.25s;
}
.modal-overlay.open { display: flex; opacity: 1; }

.modal {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: calc(100vh - 24px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s var(--ease-out);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  font-size: 18px;
  color: var(--gray-700);
  transition: all 0.2s;
  z-index: 5;
}
.modal-close:hover { color: var(--anthracite); border-color: var(--anthracite); }

.modal-img-wrap {
  background: linear-gradient(135deg, var(--cream-100), #f3f8ec);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 240px;
  padding: 18px;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.modal-img-wrap svg {
  width: 70%;
  max-height: 70%;
  filter: drop-shadow(0 14px 24px rgba(60,40,10,0.18));
}

.modal-content {
  padding: 22px clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-200) transparent;
}
.modal-content::-webkit-scrollbar { width: 4px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--cream-200); border-radius: 4px; }

.modal-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
}
.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.1;
  color: var(--anthracite);
  margin-top: 2px;
}
.modal-desc {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.55;
}

.modal-specs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.modal-specs h5 {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-700);
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.modal-specs .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 11.5px;
}
.modal-specs .row dt { color: var(--gray-500); }
.modal-specs .row dd {
  color: var(--anthracite);
  font-weight: 600;
  text-align: right;
}

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.modal-price {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--amber-700);
  line-height: 1;
}
.modal-price small {
  display: block;
  font-size: 9px;
  font-style: normal;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 720px) {
  .modal {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, auto) 1fr;
    max-height: calc(100vh - 16px);
  }
  .modal-img-wrap { min-height: 0; max-height: 32vh; padding: 14px; }
  .modal-content { padding: 16px 18px; gap: 10px; }
  .modal-title { font-size: 19px; }
  .modal-desc { font-size: 13px; }
  .modal-specs dl { grid-template-columns: 1fr; gap: 2px; }
  .modal-price { font-size: 22px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.05ms !important;
    scroll-behavior: auto !important;
  }
  .hero-title .word { opacity: 1; transform: none; }
  .hero-slogan, .hero-actions, .hero-right, .scroll-cue { opacity: 1; }
}

/* ===== REVEAL ON SCROLL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KVKK / ÇEREZ BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--anthracite);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 4px;
  font-weight: 700;
}
.cookie-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.cookie-actions { flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}
