/* ============================================================
   DERİNGÖL İNŞAAT — ANA STİL DOSYASI (mobil öncelikli)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: var(--lh-body);
  color: var(--ink-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-700); text-decoration: none; }
a:hover { color: var(--gold-500); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: var(--lh-tight); color: var(--ink-900); margin: 0 0 var(--sp-4); font-weight: 700; }
h1 { font-size: var(--fs-800); }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-600); }
p { margin: 0 0 var(--sp-4); }
ul { padding-left: 1.2rem; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink-900); color: #fff; padding: var(--sp-2) var(--sp-4); z-index: 200; }
.skip-link:focus { left: 0; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-300); letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer; transition: all .25s ease;
}
.btn-gold { background: var(--gold-grad); background-size: 200% 200%; color: var(--ink-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background-position: 100% 100%; color: var(--ink-900); transform: translateY(-2px); }
.btn-dark { background: var(--ink-900); color: var(--gold-300); }
.btn-dark:hover { background: var(--ink-700); color: var(--gold-300); }
.btn-outline { border-color: var(--gold-500); color: var(--gold-700); background: transparent; }
.btn-outline:hover { background: var(--gold-500); color: var(--ink-900); }
.btn-wa { background: var(--wa-500); color: #fff; }
.btn-wa:hover { background: #1faf55; color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: var(--fs-400); }

/* ---------- Üst Bar (topbar) ---------- */
.topbar {
  background: var(--ink-900); color: #b9b3a8;
  font-size: var(--fs-200); letter-spacing: .02em;
  position: relative; z-index: 101;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: 40px; padding-top: .3rem; padding-bottom: .3rem;
}
.topbar-left { display: flex; align-items: center; gap: var(--sp-5); min-width: 0; }
.topbar a {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold-300); font-weight: 600; white-space: nowrap;
}
.topbar a:hover { color: var(--gold-400); }
.topbar-wa { color: #cfc9bf !important; }
.topbar-wa:hover { color: #fff !important; }
.topbar-hours { display: none; color: #8d877c; white-space: nowrap; }
@media (min-width: 900px) { .topbar-hours { display: inline; } }

/* Dil seçici: segmentli kapsül */
.lang-switch {
  display: inline-flex; align-items: stretch; flex-shrink: 0;
  border: 1px solid rgba(236, 210, 142, .3); border-radius: 999px;
  overflow: hidden; background: rgba(255, 255, 255, .04);
}
.lang-switch a {
  padding: .28rem .75rem; color: #cfc9bf;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; line-height: 1.4;
  white-space: nowrap; transition: background .2s, color .2s;
}
.lang-switch a + a { border-left: 1px solid rgba(236, 210, 142, .18); }
.lang-switch a:hover { color: var(--gold-300); background: rgba(236, 210, 142, .08); }
.lang-switch a.active { background: var(--gold-grad); color: var(--ink-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 249, .94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-200);
}
.header-inner { display: flex; align-items: center; gap: var(--sp-5); height: var(--header-h); }
.brand { flex-shrink: 0; }
.brand img { width: 148px; height: auto; }
.main-nav { display: none; }
.header-cta { display: none; white-space: nowrap; flex-shrink: 0; }
.nav-toggle {
  margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm); background: #fff; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink-900); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü (hamburger açılınca) */
.main-nav.open {
  display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--cream-50); border-bottom: 1px solid var(--cream-200);
  padding: var(--sp-3) var(--sp-5) var(--sp-5); gap: 0; box-shadow: var(--shadow-md);
}
.main-nav.open a {
  color: var(--ink-800); font-weight: 500; font-size: var(--fs-400);
  padding: .8rem 0; border-bottom: 1px solid var(--cream-200);
}
.main-nav.open a:last-child { border-bottom: 0; }
.main-nav.open a:hover { color: var(--gold-600); }

/* Masaüstü menü */
@media (min-width: 1180px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: flex; align-items: center; margin-left: auto;
    gap: clamp(.9rem, 1.6vw, 1.7rem);
  }
  .main-nav a {
    color: var(--ink-800); font-weight: 500; font-size: .9rem;
    white-space: nowrap; padding: .4rem 0; position: relative;
  }
  .main-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--gold-grad); transition: right .25s ease;
  }
  .main-nav a:hover { color: var(--ink-900); }
  .main-nav a:hover::after { right: 0; }
  .header-cta { display: inline-flex; margin-left: var(--sp-4); }
}

/* ---------- Hero (imza animasyon: altın boya sürme) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 500px at 80% -10%, #2e2a23 0%, var(--ink-900) 55%);
  color: #efece6; padding: var(--sp-8) 0 var(--sp-8);
}
.hero::before {
  /* zemine ince altın doku çizgileri */
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, var(--gold-300) 0 1px, transparent 1px 90px);
}
.hero-inner { position: relative; display: grid; gap: var(--sp-6); }
.hero h1 { color: #fff; font-size: var(--fs-900); margin-bottom: var(--sp-4); }
.hero .gold-sweep {
  position: relative; display: inline-block; white-space: nowrap;
  color: var(--ink-900); padding: 0 .35em; z-index: 1;
}
.hero .gold-sweep::before {
  /* fırça darbesi: yüklemede soldan sağa süpürülür */
  content: ""; position: absolute; inset: .06em -.1em .02em; z-index: -1;
  background: var(--gold-grad);
  border-radius: .35em .6em .4em .7em / .7em .35em .8em .4em;
  transform: scaleX(0); transform-origin: left center;
  animation: paintSweep 1.1s cubic-bezier(.7, 0, .25, 1) .35s forwards;
}
@keyframes paintSweep { to { transform: scaleX(1); } }
.hero-sub { max-width: 640px; color: #cfc9bf; font-size: var(--fs-500); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.hero-badges span {
  border: 1px solid rgba(236, 210, 142, .35); color: var(--gold-300);
  padding: .35rem .8rem; border-radius: 999px; font-size: var(--fs-200); letter-spacing: .04em;
}
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: 0 18px 50px rgba(0,0,0,.45); }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
}

/* ---------- Bölüm düzeni ---------- */
.section { padding: var(--sp-8) 0; }
.section-alt { background: var(--cream-100); }
.section-dark { background: var(--ink-900); color: #e9e5dd; }
.section-dark h2 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: var(--sp-6); }
.section-head .kicker {
  display: inline-block; color: var(--gold-600); font-size: var(--fs-200);
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.section-head .kicker::before { content: "— "; color: var(--gold-400); }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--radius-md);
  padding: var(--sp-5); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 a { color: var(--ink-900); }
.card h3 a:hover { color: var(--gold-600); }
.card .card-link { margin-top: auto; font-weight: 600; font-size: var(--fs-300); }
.card .card-link::after { content: " →"; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); margin-bottom: var(--sp-3);
  background: var(--gold-grad); display: flex; align-items: center; justify-content: center;
  color: var(--ink-900); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
}
.card-img { border-radius: var(--radius-sm); margin-bottom: var(--sp-3); aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--cream-200); }

/* görsel placeholder (AI görselleri hazır olana kadar) */
.ph {
  aspect-ratio: 16/10; width: 100%; border-radius: var(--radius-sm); margin-bottom: var(--sp-3);
  background:
    linear-gradient(150deg, rgba(196,154,44,.18), rgba(196,154,44,0) 60%),
    repeating-linear-gradient(115deg, var(--cream-200) 0 2px, transparent 2px 26px),
    var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
}
.ph-wide { aspect-ratio: 21/9; }

/* ---------- Süreç adımları ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding: var(--sp-5); background: #fff; border: 1px solid var(--cream-200); border-radius: var(--radius-md); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: var(--sp-3);
}
.step h3 { font-size: var(--fs-500); font-family: var(--font-body); font-weight: 700; }
.step p { margin: 0; font-size: var(--fs-300); color: var(--ink-500); }

/* ---------- Önce/Sonra kaydırıcı (imza etkileşim #2) ---------- */
.ba-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.ba {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16/9; box-shadow: var(--shadow-md); touch-action: none; user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
/* Gerçek fotoğraf varsa dolgu desenleri görünmez kalır (img üstte durur) */
.ba-before {
  background:
    radial-gradient(420px 200px at 30% 25%, rgba(0,0,0,.16), transparent 70%),
    radial-gradient(380px 230px at 75% 70%, rgba(0,0,0,.13), transparent 70%),
    linear-gradient(180deg, #b8b0a2 0%, #a99f8e 100%);
}
.ba-before::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(90px 26px at 22% 38%, rgba(74,69,62,.35), transparent 75%),
    radial-gradient(140px 30px at 64% 22%, rgba(74,69,62,.3), transparent 75%),
    radial-gradient(110px 36px at 80% 58%, rgba(74,69,62,.32), transparent 75%);
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  background:
    radial-gradient(700px 360px at 60% 20%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(165deg, #e8d196 0%, #d9b452 45%, #c49a2c 100%);
}
.ba-label {
  position: absolute; top: var(--sp-3); padding: .25rem .7rem; border-radius: 999px;
  font-size: var(--fs-200); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(14,13,11,.65); color: #fff; z-index: 2;
}
.ba-label-before { left: var(--sp-3); }
.ba-label-after { right: var(--sp-3); background: rgba(196,154,44,.92); color: var(--ink-900); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  cursor: ew-resize; z-index: 3; box-shadow: 0 0 14px rgba(0,0,0,.35);
}
.ba-handle::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink-900);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700;
  box-shadow: var(--shadow-md);
}
.ba-hint { text-align: center; color: var(--ink-500); font-size: var(--fs-300); margin-top: var(--sp-3); }

/* ---------- Hizmet bölgeleri sayfası ---------- */
.city-banner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  background: var(--ink-900); color: #cfc9bf;
  border-radius: var(--radius-lg); padding: var(--sp-6) var(--sp-6);
  margin-bottom: var(--sp-7); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.city-banner::before {
  content: ""; position: absolute; inset: -30% -10%; opacity: .14; pointer-events: none;
  background: radial-gradient(circle at 85% 30%, var(--gold-400), transparent 45%),
              radial-gradient(circle at 15% 80%, var(--gold-600), transparent 40%);
}
.city-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #cfc9bf; }
.city-banner-kicker {
  display: inline-block; color: var(--gold-300); font-size: var(--fs-200);
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.city-banner h2 { color: #fff; margin-bottom: var(--sp-2); }
.city-banner p { margin: 0; max-width: 720px; font-size: var(--fs-300); position: relative; }
.city-banner-arrow {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; position: relative;
}
.area-grid { gap: var(--sp-6); }
.area-card { padding: var(--sp-6); gap: var(--sp-3); }
.area-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  border-bottom: 1px solid var(--cream-200); padding-bottom: var(--sp-3);
}
.area-card-top h3 { margin: 0; font-size: var(--fs-600); }
.area-count {
  flex-shrink: 0; padding: .25rem .7rem; border-radius: 999px;
  background: linear-gradient(135deg, rgba(196,154,44,.14), rgba(236,210,142,.22));
  border: 1px solid var(--gold-300); color: var(--gold-700);
  font-size: var(--fs-200); font-weight: 700; letter-spacing: .03em; white-space: nowrap;
}
.area-mahalle { color: var(--ink-500); font-size: var(--fs-300); margin: 0 0 var(--sp-2); line-height: 1.6; }
@media (max-width: 699px) { .city-banner { flex-direction: column; align-items: flex-start; } }

/* ---------- Bölge çipleri ---------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0; list-style: none; margin: 0 0 var(--sp-4); }
.chips a, .chips span {
  display: inline-block; padding: .42rem .95rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--cream-200); color: var(--ink-800);
  font-size: var(--fs-300); transition: all .2s;
}
.chips a:hover { border-color: var(--gold-500); color: var(--gold-700); background: #fffdf5; }
.chips .chip-static { color: var(--ink-500); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: var(--ink-900); border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-5); text-align: center; color: #d9d4ca;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10%; opacity: .12; pointer-events: none;
  background: radial-gradient(circle at 30% 50%, var(--gold-500), transparent 45%),
              radial-gradient(circle at 75% 40%, var(--gold-300), transparent 40%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { max-width: 560px; margin: 0 auto var(--sp-5); position: relative; }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--fs-300); color: var(--ink-500); padding: var(--sp-4) 0 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--gold-500); }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--gold-600); }

/* ---------- Sayfa başlığı ---------- */
.page-head { padding: var(--sp-6) 0 var(--sp-2); }
.page-head .lead { font-size: var(--fs-500); color: var(--ink-500); max-width: 760px; }

/* ---------- İçerik blokları ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: var(--sp-6); }
.prose ul li { margin-bottom: var(--sp-2); }
.benefits { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.benefits li { padding-left: 1.9rem; position: relative; }
.benefits li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}

/* ---------- SSS akordeon ---------- */
.faq-list { max-width: 820px; }
.faq-item { border: 1px solid var(--cream-200); border-radius: var(--radius-md); background: #fff; margin-bottom: var(--sp-3); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: var(--sp-4) var(--sp-5); font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-500); transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 var(--sp-5) var(--sp-4); color: var(--ink-500); }

/* ---------- Blog ---------- */
.post-meta { color: var(--ink-500); font-size: var(--fs-300); margin-bottom: var(--sp-4); }
.post-content { max-width: 760px; }
.post-content h2 { margin-top: var(--sp-6); }
.post-content h3 { margin-top: var(--sp-5); }
.post-content img { border-radius: var(--radius-md); }
.post-cover { border-radius: var(--radius-lg); margin-bottom: var(--sp-5); width: 100%; aspect-ratio: 21/9; object-fit: cover; }

/* ---------- Form ---------- */
.form-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 700px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
label { font-weight: 600; font-size: var(--fs-300); display: block; margin-bottom: var(--sp-1); }
input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select, textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--cream-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--fs-400); background: #fff; color: var(--ink-800);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold-400); border-color: var(--gold-500); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: var(--fs-200); color: var(--ink-500); }
.alert { padding: var(--sp-4); border-radius: var(--radius-sm); margin-bottom: var(--sp-4); font-weight: 500; }
.alert-ok { background: #e8f5ee; color: var(--ok-600); border: 1px solid #bfe3cf; }
.alert-err { background: #fbeae8; color: var(--err-600); border: 1px solid #f0c5c0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- İletişim sayfası ---------- */
.contact-cards { gap: var(--sp-5); }
.contact-card { padding: var(--sp-5); gap: .35rem; align-items: flex-start; }
.contact-card .contact-ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
}
.contact-card .contact-ico-wa { background: var(--wa-500); color: #fff; }
.contact-card strong {
  font-size: var(--fs-200); color: var(--ink-500); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}
.contact-card a { font-size: var(--fs-400); font-weight: 700; color: var(--ink-900); }
.contact-card a:hover { color: var(--gold-600); }
.contact-card p { margin: 0; font-size: var(--fs-300); font-weight: 600; color: var(--ink-800); }
.contact-card .contact-hours { color: var(--ink-500); font-weight: 500; }

.contact-main {
  display: grid; gap: var(--sp-6); margin-top: var(--sp-7); align-items: stretch;
}
@media (min-width: 980px) { .contact-main { grid-template-columns: 1.05fr .95fr; } }

.contact-form-card, .contact-map-card {
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--radius-lg);
  padding: var(--sp-6); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.contact-form-card h2, .contact-map-card h2 { margin-bottom: var(--sp-2); }
.contact-form-sub { color: var(--ink-500); font-size: var(--fs-300); margin-bottom: var(--sp-5); }
.map-shell { flex: 1; min-height: 380px; border-radius: var(--radius-md); overflow: hidden; margin-top: var(--sp-3); }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 380px; display: block; }
.map-footer {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-4); flex-wrap: wrap;
}
.map-footer span { font-size: var(--fs-300); color: var(--ink-500); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #b9b3a8; margin-top: var(--sp-8); }
.footer-grid { display: grid; gap: var(--sp-6); padding: var(--sp-8) var(--sp-5) var(--sp-6); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-col h3 { color: var(--gold-300); font-size: var(--fs-400); font-family: var(--font-body); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer-col a { color: #b9b3a8; font-size: var(--fs-300); }
.footer-col a:hover { color: var(--gold-300); }
.footer-brand img { width: 160px; margin-bottom: var(--sp-3); }
.footer-brand p { font-size: var(--fs-300); }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.footer-badges span { border: 1px solid rgba(236,210,142,.3); color: var(--gold-300); padding: .2rem .6rem; border-radius: 999px; font-size: var(--fs-200); }
.footer-links { margin-top: var(--sp-4) !important; padding-top: var(--sp-3); border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: var(--sp-4) var(--sp-5); font-size: var(--fs-200); }

/* ---------- Yapışkan alt bar (mobil) ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr 1.3fr;
  background: var(--ink-900); border-top: 1px solid rgba(236,210,142,.25);
}
.sticky-item {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem .5rem; font-size: var(--fs-300); font-weight: 600; color: #fff;
}
.sticky-call { color: var(--gold-300); }
.sticky-wa { color: #fff; background: rgba(37, 211, 102, .14); }
.sticky-quote { background: var(--gold-grad); color: var(--ink-900); }
body { padding-bottom: 52px; }
@media (min-width: 1024px) { .sticky-bar { display: none; } body { padding-bottom: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .gold-sweep::before { animation: none; transform: scaleX(1); }
  html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */
.nf { text-align: center; padding: var(--sp-9) 0; }
.nf .nf-code { font-family: var(--font-display); font-size: 6rem; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }

/* ---------- Tablolar (genel) ---------- */
table.data { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
table.data th, table.data td { padding: .7rem 1rem; text-align: left; border-bottom: 1px solid var(--cream-200); font-size: var(--fs-300); }
table.data th { background: var(--cream-100); font-weight: 700; }
