/* ============================================================
   HABİBE TÜRKER GÜZELLİK SALONU — Tasarım Sistemi
   Rich black + şampanya altın · Marcellus + Manrope
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Renkler */
  --black:        #0a0a0b;   /* sayfa zemini — rich black */
  --black-2:      #101013;   /* alternatif bölüm zemini */
  --black-3:      #16161a;   /* kart zemini */
  --black-4:      #1d1d22;   /* yükseltilmiş yüzey */
  --gold:         #c9a35f;   /* ana vurgu — şampanya altın */
  --gold-2:       #e6cf9b;   /* açık altın (hover / vurgu) */
  --gold-deep:    #a07f41;   /* koyu altın */
  --gold-soft:    rgba(201, 163, 95, 0.10);
  --line:         rgba(201, 163, 95, 0.16);  /* ince altın çizgi */
  --line-strong:  rgba(201, 163, 95, 0.38);
  --cream:        #f3ecdf;   /* başlık rengi */
  --text:         #c7c2b8;   /* gövde metni — sıcak gri */
  --muted:        #8f8a80;   /* ikincil metin */
  --wa:           #25d366;   /* WhatsApp yeşili */

  /* Tipografi */
  --font-serif: "Marcellus", "Georgia", serif;
  --font-sans:  "Manrope", "Segoe UI", -apple-system, sans-serif;

  /* Ölçüler */
  --radius:    16px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-h:  78px;

  /* Gölge & geçiş */
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--gold-2); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold-2); }

p { text-wrap: pretty; }

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

/* İnce kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: #3a3325;
  border-radius: 8px;
  border: 3px solid var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; color: var(--black); }

/* ---------- 3. Yerleşim Yardımcıları ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.section { padding-block: clamp(72px, 9vw, 110px); position: relative; }
.section-alt {
  background: var(--black-2);
  border-block: 1px solid rgba(201, 163, 95, 0.08);
}
.section-tight { padding-block: clamp(48px, 6vw, 72px); }

/* Bölüm başlığı */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.sec-head.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }

.sec-title { font-size: clamp(28px, 3.8vw, 40px); margin-bottom: 16px; }
.sec-desc { color: var(--muted); font-size: 16.5px; }

/* ---------- 4. Butonlar ----------
   Butik / editoryal dil: keskin köşe, düz renk, büyük harf,
   geniş harf aralığı. Degrade ve parlama yok. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: #14100a; }

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
}

.btn-wa {
  background: var(--wa);
  border-color: var(--wa);
  color: #06250f;
}
.btn-wa:hover { background: #2ee874; border-color: #2ee874; color: #06250f; }

.btn-sm { padding: 12px 22px; font-size: 11.5px; letter-spacing: 0.14em; }
.btn-lg { padding: 19px 42px; font-size: 13px; }

/* Metin linki (ok ile) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.text-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

/* ---------- 5. Üst Menü ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(8, 8, 9, 0.82), rgba(8, 8, 9, 0.55) 70%, transparent);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 9, 10, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.brand-name em { font-style: normal; color: var(--gold); }
.brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.brand:hover .brand-name { color: var(--gold-2); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
}
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  padding-block: 8px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold-2); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: inline-flex; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-2);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobil çekmece */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 5, 6, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  height: 100dvh;
  width: min(86vw, 380px);
  display: flex;
  flex-direction: column;
  background: #0e0e10;
  border-left: 1px solid var(--line);
  padding: 28px 28px 36px;
  transform: translateX(105%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.drawer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 20px;
  cursor: pointer;
}
.drawer-nav { list-style: none; padding-block: 8px; }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 163, 95, 0.09);
}
.drawer-nav a svg { width: 16px; height: 16px; color: var(--gold); }
.drawer-nav a[aria-current="page"] { color: var(--gold-2); }
.drawer-foot { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; }
.drawer-foot .btn { width: 100%; }
.drawer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.drawer-tel svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------- 6. Hero (Ana Sayfa) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(1.08) saturate(1.15);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 8, 9, 0.95) 10%, rgba(8, 8, 9, 0.62) 48%, rgba(8, 8, 9, 0.08) 100%),
    linear-gradient(to bottom, rgba(8, 8, 9, 0.05) 0%, rgba(8, 8, 9, 0.55) 100%);
}
.hero-content { max-width: 780px; padding-block: 80px 110px; }

.hero-title {
  font-size: clamp(36px, 5.8vw, 62px);
  margin: 18px 0 22px;
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--text);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  background: rgba(16, 16, 19, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.chip svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.chip a { color: inherit; }
.chip a:hover { color: var(--gold-2); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue svg { width: 18px; height: 18px; animation: cue-bob 2.2s infinite var(--ease); }
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ---------- 6b. Hero Slayt Gösterisi ---------- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 15s infinite;
  filter: brightness(1.08) saturate(1.15);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-slide:nth-child(1) { animation-delay: -1s; }
.hero-slide:nth-child(2) { animation-delay: 4s; }
.hero-slide:nth-child(3) { animation-delay: 9s; }
@keyframes heroFade {
  0%         { opacity: 0; }
  5%, 33%    { opacity: 1; }
  38%, 100%  { opacity: 0; }
}

/* ---------- 6c. Dönüşümler Bölümü ---------- */
.transform-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.transform-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.transform-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.transform-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.transform-card:hover img { transform: scale(1.05); }
.transform-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(8, 8, 9, 0.88));
}
.transform-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-before { background: rgba(12, 12, 14, 0.82); color: var(--muted); border: 1px solid var(--line-strong); }
.badge-after  { background: var(--gold); color: #14100a; }

/* ---------- 6d. Özel Odalar Bölümü ---------- */
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.room-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.room-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.room-card figcaption { padding: 22px 26px 24px; background: var(--black-3); border-top: 1px solid var(--line); }
.room-card figcaption h3 { font-size: 20px; margin-bottom: 8px; }
.room-card figcaption p { font-size: 14px; color: var(--muted); }

/* Oda Slaytı */
.room-slider { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--black-2); cursor: zoom-in; }
.rslide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s ease; }
.rslide.active { opacity: 1; }
.rslide img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.55s var(--ease); }
.room-slider:hover .rslide.active img { transform: scale(1.04); }
.rslide-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(10,10,11,0.65); border: 1px solid rgba(201,163,95,0.35);
  color: var(--gold); font-size: 24px; line-height: 1; cursor: pointer;
  width: 36px; height: 36px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; padding: 0;
}
.rslide-btn:hover { background: rgba(201,163,95,0.22); }
.rslide-prev { left: 10px; }
.rslide-next { right: 10px; }
.rslide-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3;
}
.rdot {
  width: 7px; height: 7px; border-radius: 50%; display: block;
  background: rgba(255,255,255,0.3); transition: background 0.25s; cursor: pointer;
}
.rdot.active { background: var(--gold); }

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lb-overlay.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: min(90vw, 1100px); max-height: 88vh; object-fit: contain; display: block; }
.lb-close {
  position: fixed; top: 18px; right: 22px; background: none; border: none;
  color: rgba(255,255,255,0.75); font-size: 38px; line-height: 1;
  cursor: pointer; z-index: 9001; padding: 4px;
}
.lb-close:hover { color: #fff; }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(10,10,11,0.7); border: 1px solid rgba(201,163,95,0.35);
  color: var(--gold); font-size: 28px; line-height: 1; cursor: pointer;
  width: 44px; height: 44px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  z-index: 9001; transition: background 0.2s; padding: 0;
}
.lb-nav:hover { background: rgba(201,163,95,0.2); }
.lb-nav-prev { left: 12px; }
.lb-nav-next { right: 12px; }
.lb-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.45); font-size: 12px; letter-spacing: 0.1em; z-index: 9001;
}

/* ---------- 7. İç Sayfa Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(52px, 8vw, 88px)) 0 clamp(48px, 7vw, 76px);
  background: linear-gradient(180deg, #121214, var(--black));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); margin-top: 14px; }
.page-hero .lead { max-width: 700px; margin-top: 16px; color: var(--muted); font-size: 16.5px; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs .sep { color: var(--muted); opacity: 0.55; }
.crumbs [aria-current] { color: var(--gold-2); }

/* ---------- 8. Hizmet Kartları ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px 30px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.svc-no-photo { grid-template-columns: 1fr; max-width: 820px; }

.svc-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--gold-2);
  transition: background 0.35s var(--ease);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card:hover .svc-icon { background: rgba(201, 163, 95, 0.18); }

.svc-card h3 { font-size: 20px; }
.svc-card p { font-size: 14.5px; color: var(--muted); flex-grow: 1; }
.svc-card .text-link { margin-top: 4px; }

/* ---------- 9. Hakkımızda / Görsel + Metin ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-media { position: relative; }
.about-img-1 {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  outline: 10px solid var(--black);
}
.about-badge {
  position: absolute;
  left: -8px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px 24px;
  background: var(--gold);
  color: #1a140b;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.about-badge strong { font-family: var(--font-serif); font-weight: 400; font-size: 30px; line-height: 1; }
.about-badge span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.check-list { list-style: none; display: grid; gap: 14px; margin-block: 26px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.check-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  padding: 4px;
}
.check-list strong { color: var(--cream); font-weight: 700; }

/* ---------- 10. İstatistik Şeridi ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
}
.stat { text-align: center; padding-inline: 8px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--gold-2);
  line-height: 1.05;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 11. Atmosfer / Foto Şeridi ---------- */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strip-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.strip-item:nth-child(even) { transform: translateY(26px); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.strip-item:hover img { transform: scale(1.05); }
.strip-item:hover { border-color: var(--line-strong); }
.strip-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 18px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(8, 8, 9, 0.88));
}
.strip-wrap { padding-bottom: 26px; }

/* ---------- 12. Galeri ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: linear-gradient(transparent, rgba(8, 8, 9, 0.9));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }

/* ---------- 13. Yorumlar ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 30px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.stars { display: flex; gap: 4px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.testi-card blockquote {
  font-size: 15px;
  color: var(--text);
  flex-grow: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: #0a0a0b;
  background: #ffffff;
  border: 1.5px solid rgba(201,163,95,0.45);
  border-radius: 50%;
}
.testi-author strong { display: block; color: var(--cream); font-size: 14.5px; }
.testi-author span { font-size: 13px; color: var(--muted); }

/* ---------- 14. Bölge Kartları ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 26px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.area-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.area-icon { width: 38px; height: 38px; color: var(--gold); }
.area-icon svg { width: 100%; height: 100%; }
.area-card h3 { font-size: 19px; }
.area-card p { font-size: 14px; color: var(--muted); flex-grow: 1; }

/* ---------- 15. CTA Bandı ---------- */
.cta-band {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--black-2);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(560px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); max-width: 740px; margin-inline: auto; }
.cta-band p { margin: 16px auto 34px; max-width: 560px; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- 16. İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.cc-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--gold-2);
}
.cc-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 18px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--muted); }
.contact-card a:hover { color: var(--gold-2); }
.contact-card .big {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.map-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe {
  width: 100%;
  height: clamp(340px, 46vw, 470px);
  border: 0;
  filter: grayscale(0.15);
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(201, 163, 95, 0.09); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: 11px 4px; font-size: 14px; }
.hours-table td:last-child { text-align: right; color: var(--cream); font-weight: 700; }
.hours-table .closed td:last-child { color: var(--muted); font-weight: 500; }

/* ---------- 17. SSS (Akordeon) ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 17.5px;
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ic {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item summary .faq-ic svg { width: 14px; height: 14px; }
.faq-item[open] summary .faq-ic { transform: rotate(45deg); background: var(--gold-soft); }
.faq-item .faq-a { padding: 0 24px 22px; font-size: 14.5px; color: var(--muted); }

/* ---------- 18. Süreç Adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}
.step h3 { font-size: 17.5px; margin: 12px 0 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- 19. Hizmet Detay Sayfası ---------- */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}
.svc-photo {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.svc-body h2 { font-size: clamp(24px, 3vw, 31px); margin-bottom: 16px; }
.svc-body p + p { margin-top: 14px; }
.svc-body .check-list { margin-block: 30px; }

.related-head { margin-bottom: 28px; }

/* Bilgi kutusu */
.note-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.note-box svg { width: 22px; height: 22px; flex: none; color: var(--gold-2); margin-top: 2px; }
.note-box strong { color: var(--cream); }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: #0c0c0e;
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: 52px;
}
.f-brand .brand-name { font-size: 25px; }
.f-brand p { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 320px; }
.f-social { display: flex; gap: 12px; margin-top: 22px; }
.f-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold-2);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.f-social a:hover { transform: translateY(-3px); background: var(--gold); color: var(--black); }
.f-social svg { width: 19px; height: 19px; }

.f-col h4 {
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.f-col ul { list-style: none; display: grid; gap: 11px; }
.f-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.f-col ul a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.f-col ul a:hover { color: var(--gold-2); }
.f-col ul a:hover::before { width: 14px; }

.f-contact { list-style: none; display: grid; gap: 15px; }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); }
.f-contact svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 3px; }
.f-contact a { color: var(--text); }
.f-contact a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid rgba(201, 163, 95, 0.1);
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- 21. Sabit Butonlar (sağ alt) ---------- */
.float-stack {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }

.float-btn .float-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--cream);
  background: rgba(14, 14, 16, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.float-btn:hover .float-tip, .float-btn:focus-visible .float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-call {
  background: var(--gold);
  color: #14100a;
}
.float-call:hover { background: var(--gold-2); color: #14100a; }

.float-wa {
  background: var(--wa);
  color: #fff;
}
.float-wa:hover { background: #2ee874; color: #fff; }
.float-wa::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.4s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}

/* ---------- 22. Görünüm Animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }

/* ---------- 22b. Rehber / Makaleler ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.post-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px 26px;
  flex-grow: 1;
}
.post-card-body h3 { font-size: 19px; color: var(--cream); }
.post-card-body p { font-size: 14px; color: var(--muted); flex-grow: 1; }

.post-meta {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Makale gövdesi */
.prose { max-width: 780px; margin-inline: auto; }
.prose .post-meta { margin-bottom: 34px; }
.post-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}
.prose h2 {
  font-size: clamp(23px, 3vw, 29px);
  margin: 42px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.prose h3 { font-size: 18.5px; margin: 24px 0 8px; color: var(--gold-2); }
.prose p { margin-bottom: 14px; font-size: 16px; }
.prose ul { list-style: none; margin: 16px 0 20px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 15.5px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}
.prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-strong); }
.prose a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.prose strong { color: var(--cream); }

@media (max-width: 1060px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .prose h2 { margin-top: 34px; }
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1060px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid, .contact-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .transform-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid, .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-photo { position: static; }
  .about-media { padding-right: 0; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(3) { border-left: 0; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  :root { --header-h: 68px; }
  .brand-name { font-size: 18px; }
  .brand-sub { letter-spacing: 0.3em; font-size: 8.5px; }

  .hero-content { padding-block: 56px 96px; }
  .hero-actions .btn { width: 100%; }
  .scroll-cue { display: none; }

  .svc-grid, .gal-grid, .area-grid, .contact-grid, .steps { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .strip-item:nth-child(even) { transform: translateY(14px); }

  .stats { grid-template-columns: 1fr 1fr; padding: 24px 18px; }
  .stat + .stat { border-left: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 24px; height: 24px; }
  .float-btn .float-tip { display: none; }

  .area-grid { grid-template-columns: 1fr; }
  .transform-gallery { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-media { padding-right: 0; padding-bottom: 0; }
  .about-badge { padding: 14px 18px; }
  .about-badge strong { font-size: 24px; }
}

@media (max-width: 380px) {
  .gal-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* ---------- 24. Hareket Azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
