/* ==========================================================================
   ESTOR PERDE & TÜL YIKAMA — Tasarım Sistemi
   Konsept: "Işık & Kumaş" → pencereden süzülen ışık, ince tül dokusu
   Palet: Mürdüm (plum) + Şampanya altını, keten-fildişi zemin
   Tipografi: Cormorant Garamond (display serif) + Outfit (sans)
   Not: Referans üç site soğuk mavi/turkuaz; bu site sıcak & editoryal olarak ayrışır.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Mürdüm — ana marka */
  --plum-50:  #faf4f8;
  --plum-100: #f3e6ee;
  --plum-200: #e6cbdd;
  --plum-300: #d1a3c1;
  --plum-400: #b1719c;
  --plum-500: #8f4c79;
  --plum-600: #6d3b5e;
  --plum-700: #58314c;
  --plum-800: #452740;
  --plum-900: #2c1928;

  /* Şampanya altını — vurgu */
  --gold-200: #f2e2bd;
  --gold-300: #e8cf92;
  --gold-400: #d8b25f;
  --gold-500: #c79a4b;
  --gold-600: #a97e35;

  /* Adaçayı — ikincil ferahlık */
  --sage-300: #bcd0c1;
  --sage-500: #7fa389;

  --whatsapp: #25d366;

  /* Nötrler — sıcak */
  --ink:       #241a22;   /* koyu mürdüm-siyah */
  --ink-soft:  #4b3f47;
  --muted:     #8a7c84;
  --line:      #ece4e8;
  --bg:        #fbf8f4;   /* keten-fildişi */
  --bg-alt:    #f5eef2;   /* çok hafif mürdüm */
  --bg-deep:   #2c1928;   /* koyu bölümler */
  --cream:     #fffdfa;

  --font:         'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-full: 999px;

  --shadow-sm: 0 1px 3px rgba(44,25,40,.06), 0 1px 2px rgba(44,25,40,.04);
  --shadow-md: 0 12px 30px -12px rgba(69,39,64,.22);
  --shadow-lg: 0 30px 70px -24px rgba(44,25,40,.32);
  --glow:      0 20px 55px -16px rgba(199,154,75,.55);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Editoryal serif — başlıklarda butik/lüks his */
.hero__title, .section-head h2, .page-hero h1, .cta__title, .stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

::selection { background: var(--gold-300); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
.section--alt { background: var(--bg-alt); }

.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--plum-600);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-500); }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--gold-500); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: .6rem 0 .8rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: var(--r-full);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: linear-gradient(135deg, var(--plum-600), var(--plum-800)); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--ink); box-shadow: var(--glow); }
.btn--gold:hover { transform: translateY(-3px); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 12px 28px -12px rgba(37,211,102,.7); }
.btn--wa:hover { transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--plum-700); border: 1.5px solid var(--plum-200); }
.btn--ghost:hover { background: var(--plum-50); border-color: var(--plum-400); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 1.1rem;
}
.header.scrolled {
  background: rgba(251,248,244,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding-block: .7rem;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.brand__sub { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold-500); transition: width .28s var(--ease); }
.nav a:hover { color: var(--plum-700); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--plum-700); font-weight: 600; }
.nav a.active::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: .8rem; }
.header__phone { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); }
.header__phone svg { width: 18px; height: 18px; color: var(--plum-600); }

.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .3s; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   HERO — imza öğe: perde katmanları + ışık süzülmesi
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(1200px 600px at 78% -10%, var(--plum-100), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--bg));
}
/* Perde katmanları — arka planda düşey ışık şeritleri */
.hero__drapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__drapes::before {
  content: ""; position: absolute; inset: -10% -5%;
  background: repeating-linear-gradient(
    90deg,
    rgba(109,59,94,.05) 0 2px,
    transparent 2px 46px,
    rgba(199,154,75,.06) 46px 48px,
    transparent 48px 92px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
}
/* Işık süzülmesi — yavaş kayan parıltı */
.hero__light {
  position: absolute; top: -30%; left: -20%; width: 55%; height: 160%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-14deg); filter: blur(8px);
  animation: sweep 9s var(--ease) infinite;
}
@keyframes sweep { 0% { left: -30%; opacity: 0; } 25% { opacity: 1; } 55% { opacity: .6; } 100% { left: 120%; opacity: 0; } }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero__inner > *, .hero__content { min-width: 0; }
.hero__title, .page-hero h1, .hero__desc, .cta__title { overflow-wrap: break-word; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: .5rem 1rem; border-radius: var(--r-full);
  font-size: .82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 1.4rem;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--gold-600); }
.hero__badge b { color: var(--plum-700); font-weight: 700; }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; color: var(--ink); }
.hero__title em { font-style: italic; color: var(--plum-600); }
.hero__title .accent { color: var(--gold-600); font-style: italic; }
.hero__desc { font-size: 1.12rem; color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.hero__trust-item svg { width: 22px; height: 22px; color: var(--sage-500); flex-shrink: 0; }
.hero__trust-item b { color: var(--ink); }

/* Hero görsel */
.hero__visual { position: relative; aspect-ratio: 4/5; }
.hero__img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(44,25,40,.28));
  animation: floaty 7s ease-in-out infinite;
}
/* Eski CSS-perde kompozisyonu (foto gerektirmez) — artık kullanılmıyor */
.curtain {
  position: absolute; inset: 0; border-radius: 220px 220px 24px 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), transparent 30%),
    repeating-linear-gradient(90deg,
      var(--plum-500) 0, var(--plum-600) 14px, var(--plum-700) 28px, var(--plum-600) 42px, var(--plum-500) 56px);
}
.curtain::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,.4), transparent 55%);
}
.curtain__sheer {
  position: absolute; inset: 8% 10% 0 10%; border-radius: 180px 180px 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.35));
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 10px, rgba(0,0,0,.4) 10px 20px);
          mask-image: repeating-linear-gradient(90deg, #000 0 10px, rgba(0,0,0,.4) 10px 20px);
  opacity: .55; backdrop-filter: blur(1px);
}
.hero__card {
  position: absolute; bottom: 6%; left: -8%; z-index: 3;
  background: var(--cream); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: .9rem;
  animation: floaty 5.5s ease-in-out infinite;
}
.hero__card svg { width: 34px; height: 34px; color: var(--gold-600); }
.hero__card b { display: block; color: var(--ink); font-size: 1.05rem; }
.hero__card span { font-size: .82rem; color: var(--muted); }
.hero__card--top { top: 8%; right: -6%; bottom: auto; left: auto; animation-delay: -2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats { background: var(--bg-deep); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-size: clamp(2.2rem,4vw,3.2rem); color: var(--gold-400); display: block; line-height: 1; }
.stat__label { font-size: .9rem; color: rgba(255,255,255,.72); margin-top: .5rem; letter-spacing: .02em; }
.stat + .stat { position: relative; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.2rem 1.8rem 2rem; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
/* draped top — kartın üstünde ince perde bandı */
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--plum-500) 0 8px, var(--gold-400) 8px 16px);
  opacity: 0; transition: opacity .3s;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--plum-200); }
.svc:hover::before { opacity: 1; }
.svc__icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
  color: var(--plum-600); margin-bottom: 1.2rem;
}
.svc__icon svg { width: 30px; height: 30px; }
.svc h3 { font-size: 1.3rem; margin-bottom: .5rem; font-family: var(--font-display); font-weight: 600; }
.svc p { font-size: .96rem; color: var(--muted); }
.svc__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 600; color: var(--plum-600); font-size: .92rem; }
.svc__link svg { width: 16px; height: 16px; transition: transform .25s; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step { text-align: center; position: relative; }
.step__num {
  width: 68px; height: 68px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--plum-700); background: var(--cream); border: 2px solid var(--gold-300); box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--muted); }
/* bağlayıcı çizgi */
.process__grid .step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; left: 50%; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-300) 0 6px, transparent 6px 12px); z-index: 1;
}

/* ==========================================================================
   WHY-US (split)
   ========================================================================== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.why__visual {
  aspect-ratio: 5/4; border-radius: var(--r-lg); position: relative; overflow: hidden;
  background: var(--plum-800);
  box-shadow: var(--shadow-lg);
}
.why__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
/* alt kısımda rozet okunurluğu için hafif koyulaştırma */
.why__visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(44,25,40,.55));
}
.why__badge {
  position: absolute; z-index: 2; bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-md); padding: 1rem 1.2rem; color: #fff; display: flex; align-items: center; gap: .9rem;
}
.why__badge svg { width: 34px; height: 34px; color: var(--gold-300); flex-shrink: 0; }
.why__badge b { display: block; font-size: 1.05rem; }
.why__badge span { font-size: .84rem; opacity: .85; }

.feature { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.feature:last-child { border-bottom: none; }
.feature__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--plum-50); color: var(--plum-600); }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.feature p { font-size: .93rem; color: var(--muted); }

/* ==========================================================================
   PRICING / PAKETLER
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.plan {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column;
}
.plan--featured { border: 1.5px solid var(--gold-400); box-shadow: var(--glow); position: relative; }
.plan--featured .plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--gold-400),var(--gold-600)); color: var(--ink);
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem 1rem; border-radius: var(--r-full); }
.plan h3 { font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; }
.plan__price { font-family: var(--font-display); font-size: 2.6rem; color: var(--plum-700); margin: .4rem 0 .2rem; }
.plan__price small { font-size: .95rem; color: var(--muted); font-family: var(--font); }
.plan__note { font-size: .85rem; color: var(--muted); margin-bottom: 1.3rem; }
.plan ul { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.6rem; }
.plan li { display: flex; gap: .6rem; font-size: .93rem; align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; color: var(--sage-500); flex-shrink: 0; margin-top: 3px; }
.plan .btn { margin-top: auto; width: 100%; }

/* ==========================================================================
   GALLERY (before/after)
   ========================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.gcard {
  border-radius: var(--r-md); overflow: hidden; position: relative; aspect-ratio: 4/3;
  box-shadow: var(--shadow-md); background: var(--bg-alt);
}
.gcard::after {
  content: attr(data-label); position: absolute; left: .8rem; bottom: .8rem;
  background: rgba(44,25,40,.82); color: #fff; font-size: .78rem; font-weight: 600;
  padding: .3rem .8rem; border-radius: var(--r-full); backdrop-filter: blur(4px);
}
.gcard > div { position: absolute; inset: 0; }
.g-plum  { background: repeating-linear-gradient(120deg, var(--plum-500) 0 20px, var(--plum-700) 20px 40px); }
.g-gold  { background: repeating-linear-gradient(120deg, var(--gold-300) 0 20px, var(--gold-500) 20px 40px); }
.g-sage  { background: linear-gradient(135deg, var(--sage-300), var(--sage-500)); }
.g-cream { background: repeating-linear-gradient(90deg, #fff 0 12px, var(--bg-alt) 12px 24px); }
.g-deep  { background: radial-gradient(circle at 30% 30%, var(--plum-400), var(--plum-800)); }
.g-mix   { background: conic-gradient(from 120deg, var(--gold-400), var(--plum-500), var(--gold-400)); }

/* ==========================================================================
   BEFORE / AFTER SLIDER (öncesi & sonrası)
   ========================================================================== */
.ba {
  position: relative; max-width: 960px; margin-inline: auto;
  aspect-ratio: 1600 / 977; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none; cursor: ew-resize;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-select: none; pointer-events: none;
}
.ba__top { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__label {
  position: absolute; top: 1rem; z-index: 3; pointer-events: none;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--r-full); backdrop-filter: blur(4px);
}
.ba__label--before { left: 1rem; background: rgba(44,25,40,.82); color: #fff; }
.ba__label--after  { right: 1rem; background: rgba(199,154,75,.92); color: var(--ink); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: #fff; transform: translateX(-50%); z-index: 2; pointer-events: none;
  box-shadow: 0 0 14px rgba(0,0,0,.35);
}
.ba__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--plum-600);
}
.ba__handle svg { width: 22px; height: 22px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.ba__range:focus-visible ~ .ba__divider .ba__handle { outline: 3px solid var(--gold-400); outline-offset: 3px; }

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.areas__list { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.area {
  display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  font-weight: 500; transition: .25s;
}
.area:hover { border-color: var(--plum-300); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.area svg { width: 20px; height: 20px; color: var(--gold-600); }
.areas__note { margin-top: 1.4rem; font-size: .92rem; color: var(--muted); display: flex; gap: .6rem; align-items: center; }
.areas__note svg { width: 20px; height: 20px; color: var(--sage-500); }

/* Mahalle grid — kendiliğinden responsive (media query gerektirmez) */
.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .7rem; }
.mgrid .area { justify-content: center; text-align: center; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0; font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.acc__q svg { width: 22px; height: 22px; color: var(--plum-600); flex-shrink: 0; transition: transform .3s; }
.acc.open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__a p { padding-bottom: 1.3rem; color: var(--muted); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta { position: relative; overflow: hidden; background: var(--bg-deep); color: #fff; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 8px, transparent 8px 40px);
  -webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent);
          mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent);
}
.cta__inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta__title { font-size: clamp(2rem,4.5vw,3.2rem); color: #fff; margin-bottom: .8rem; }
.cta__title em { color: var(--gold-400); font-style: italic; }
.cta p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.cinfo { display: flex; gap: 1rem; padding: 1.2rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); }
.cinfo__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--plum-50); color: var(--plum-600); flex-shrink: 0; }
.cinfo__ic svg { width: 24px; height: 24px; }
.cinfo b { display: block; color: var(--ink); }
.cinfo span, .cinfo a { color: var(--muted); font-size: .95rem; }
.cinfo a:hover { color: var(--plum-600); }

.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--bg); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--plum-400); box-shadow: 0 0 0 3px var(--plum-100);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--plum-900); color: rgba(255,255,255,.72); padding-block: 4rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--gold-400); }
.footer__links { display: flex; flex-direction: column; gap: .6rem; font-size: .93rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { font-size: .92rem; margin: 1rem 0; max-width: 30ch; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: .25s; }
.footer__social a:hover { background: var(--gold-500); color: var(--ink); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }

/* ==========================================================================
   PAGE HERO (iç sayfalar)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(9rem,15vw,12rem) 0 clamp(3.5rem,6vw,5rem);
  background:
    radial-gradient(900px 500px at 50% -20%, var(--plum-100), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--bg));
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(109,59,94,.05) 0 2px, transparent 2px 46px, rgba(199,154,75,.06) 46px 48px, transparent 48px 92px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, transparent);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,3.8rem); color: var(--ink); }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 1rem auto 0; }
.crumb { display: inline-flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.crumb a { color: var(--plum-600); font-weight: 500; }
.crumb span { color: var(--gold-600); }

/* ---------- Hizmet detay banner görseli ---------- */
.svc-banner-wrap { margin-top: -1rem; margin-bottom: 1rem; }
.svc-banner { display: block; width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ---------- Prose (blog / metin sayfaları) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: var(--ink); margin-top: 2.4rem; }
.prose h3 { font-size: 1.3rem; color: var(--ink); margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.05rem; }
.prose ul { padding-left: 0; display: flex; flex-direction: column; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.7rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 2px; background: linear-gradient(135deg,var(--gold-400),var(--plum-500)); }
.prose blockquote { border-left: 3px solid var(--gold-400); padding: .3rem 0 .3rem 1.3rem; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--plum-700); }
.prose img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.prose__meta { display: flex; gap: 1rem; align-items: center; justify-content: center; color: var(--muted); font-size: .9rem; margin-top: 1rem; }
.prose__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }

/* ---------- Blog list ---------- */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.post {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s;
}
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post__thumb { aspect-ratio: 16/10; position: relative; }
.post__thumb::after { content: attr(data-tag); position: absolute; left: .8rem; top: .8rem; background: rgba(44,25,40,.82); color: #fff; font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--r-full); }
.post__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post__body h3 { font-size: 1.2rem; font-family: var(--font-display); font-weight: 600; margin-bottom: .5rem; }
.post__body p { color: var(--muted); font-size: .93rem; flex: 1; }
.post__more { margin-top: 1rem; font-weight: 600; color: var(--plum-600); font-size: .9rem; display: inline-flex; gap: .4rem; align-items: center; }

/* ---------- About team / values ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.7rem; text-align: center; }
.value__ic { width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg,var(--plum-100),var(--plum-50)); color: var(--plum-600); }
.value__ic svg { width: 28px; height: 28px; }
.value h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: .4rem; }
.value p { color: var(--muted); font-size: .95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split__visual { aspect-ratio: 4/3; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  background: repeating-linear-gradient(90deg, var(--plum-500) 0 16px, var(--plum-700) 16px 32px); }
.split__visual::after { content: ""; position: absolute; inset: 10% 12% 0; border-radius: 140px 140px 0 0; background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.2)); -webkit-mask-image: repeating-linear-gradient(90deg,#000 0 8px, rgba(0,0,0,.4) 8px 16px); mask-image: repeating-linear-gradient(90deg,#000 0 8px, rgba(0,0,0,.4) 8px 16px); opacity: .5; }
.split h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem,4vw,2.7rem); color: var(--ink); margin-bottom: 1rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Hizmet detay tablosu ---------- */
.svc-detail { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.svc-detail .svc { padding-top: 2.4rem; }

/* Kart üstü küçük görsel */
.svc__thumb { margin: -2.4rem -1.8rem 1.4rem; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-alt); }
.svc__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.svc:hover .svc__thumb img { transform: scale(1.06); }
.svc__thumb--leke { display: grid; place-items: center; background: linear-gradient(135deg, var(--plum-500), var(--plum-800)); }
.svc__thumb--leke svg { width: 54px; height: 54px; color: rgba(255,255,255,.9); }
.svc:has(.svc__thumb)::before { display: none; }
.svc:has(.svc__thumb) .svc__icon { display: none; }

@media (max-width: 960px) {
  .posts { grid-template-columns: repeat(2,1fr); }
  .values { grid-template-columns: 1fr; }
  .split, .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) { .posts { grid-template-columns: 1fr; } }

/* ==========================================================================
   FLOATING WHATSAPP + MOBILE BAR
   ========================================================================== */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--whatsapp); animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

.mbar { display: none; }

/* ==========================================================================
   REVEAL ANIM — "perde açılışı"
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .why, .areas, .contact { grid-template-columns: 1fr; gap: 2rem; }
  .services__grid, .plans, .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .process__grid { grid-template-columns: repeat(2,1fr); }
  .process__grid .step::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex; position: fixed; inset: 0 0 auto 0; top: 68px; flex-direction: column;
    background: var(--cream); padding: 1.5rem; gap: 1.2rem; box-shadow: var(--shadow-lg); border-top: 1px solid var(--line);
  }
  .nav.open a { font-size: 1.1rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .header__cta .btn { display: none; }
  .mbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 91;
    background: var(--cream); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .mbar a { flex: 1; padding: .9rem; text-align: center; font-weight: 600; font-size: .95rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }
  .mbar a svg { width: 20px; height: 20px; }
  .mbar__call { color: var(--plum-700); }
  .mbar__wa { background: var(--whatsapp); color: #fff; }
  .wa-float { bottom: 4.6rem; }
  body { padding-bottom: 3.4rem; }
}
@media (max-width: 560px) {
  .services__grid, .plans, .gallery__grid, .process__grid, .areas__list, .footer__grid, .form__row { grid-template-columns: 1fr; }
  .hero__card, .hero__card--top { display: none; }
  .hero__title { font-size: 2.2rem; }
  .hero__title br { display: none; }        /* mobilde doğal sarma */
  .page-hero h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero .hero__actions { align-items: center; }
  .hero__actions .btn { width: 100%; }       /* dikey yığın: taşma yok */
}
