/* =========================================================
   Raziye Oko Bayan Kuaförü — Stil
   Palet: derin kahve/siyah zemin + şampanya altını + krem
   ========================================================= */

:root {
  --ink: #14100e;
  --ink-2: #1a1512;
  --ink-3: #221b16;
  --ink-4: #2c231d;

  --cream: #f7f1e8;
  --cream-soft: #e8dccc;
  --muted: rgba(247, 241, 232, 0.62);
  --muted-2: rgba(247, 241, 232, 0.42);

  --gold: #d9b57c;
  --gold-2: #c49a58;
  --gold-3: #f0d9ac;
  --rose: #e6c3ba;

  --line: rgba(217, 181, 124, 0.18);
  --line-soft: rgba(247, 241, 232, 0.09);

  --wa: #25d366;

  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.32);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --topbar-h: 38px;
  --header-h: 78px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
}

h1 { font-size: clamp(2.9rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }

h1 em { font-style: italic; color: var(--gold); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

.container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

/* Grid hücreleri içeriğe göre şişip taşmasın */
.hero-grid > *, .section-head > *, .booking-grid > *, .loc-grid > *,
.ba-wrap > *, .faq-grid > *, .footer-grid > *, .svc-cats > *,
.bento > *, .gallery > *, .team-grid > *, .special-grid > * {
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

.ico { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- ORTAK BAŞLIK ---------- */
.eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--muted);
}
.eyebrow.gold { color: var(--gold); }

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section-note {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 460px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

/* ---------- BUTONLAR ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease,
    background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 45%, var(--gold-2));
  color: #241a0c;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(196, 154, 88, 0.26);
}
.btn-gold:hover { box-shadow: 0 20px 44px rgba(196, 154, 88, 0.38); }

.btn-outline {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(247, 241, 232, 0.04);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(217, 181, 124, 0.08);
}

.btn-ghost { background: transparent; color: var(--muted); padding: 0 14px; }
.btn-ghost:hover { color: var(--gold); }

.btn-sm { min-height: 42px; font-size: 0.87rem; padding: 0 18px; }
.btn-lg { min-height: 58px; padding: 0 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: #0d0a09;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--muted);
  position: relative;
  z-index: 40;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--topbar-h);
  flex-wrap: wrap;
}
.topbar-spacer { flex: 1; }
.topbar-sep { color: var(--muted-2); }
.topbar-link { transition: color .2s ease; }
.topbar-link:hover { color: var(--gold); }
.topbar-status { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted-2); display: inline-block;
}
.dot.open { background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.16); }
.dot.closed { background: #f87171; box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.14); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 14, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(13, 10, 9, 0.94);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--gold-3), var(--gold-2));
  color: #241a0c;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(196, 154, 88, 0.28);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 26px; font-size: 0.9rem; }
.main-nav a {
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s cubic-bezier(.2,.8,.3,1);
}
.main-nav a:hover, .main-nav a.active { color: var(--cream); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21.5px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 60px 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.14) translateY(-14px); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13,10,9,.95) 0%, rgba(13,10,9,.82) 42%, rgba(13,10,9,.42) 72%, rgba(13,10,9,.7) 100%),
    radial-gradient(120% 90% at 10% 100%, rgba(217,181,124,.14), transparent 60%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(50px, 7vw, 96px) clamp(80px, 9vw, 120px);
}
.hero-copy h1 { margin-bottom: 22px; }
.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats li { min-width: 104px; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-card { display: flex; justify-content: flex-end; }
.glass {
  width: min(100%, 400px);
  padding: 30px 28px 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(44,35,29,.82), rgba(20,16,14,.86));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.glass-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 10px;
}
.glass h3 { font-size: 2rem; margin-bottom: 10px; }
.glass-desc { color: var(--muted); font-size: 0.92rem; }
.glass-list {
  margin: 18px 0;
  padding: 16px 0;
  border-block: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
}
.glass-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: rgba(247, 241, 232, 0.8);
}
.glass-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.7rem;
}
.glass-foot {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--muted-2);
  text-align: center;
}

/* marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  background: rgba(13, 10, 9, 0.68);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--muted);
}
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- TRUSTBAR ---------- */
.trustbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item .ico { width: 26px; height: 26px; color: var(--gold); margin-top: 2px; }
.trust-item strong { display: block; font-size: 0.95rem; font-weight: 500; }
.trust-item span { font-size: 0.82rem; color: var(--muted); }

/* ---------- HİZMETLER (kategori kartları, fiyatsız) ---------- */
.services { background: var(--ink); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.svc-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-cat {
  display: flex;
  flex-direction: column;
  padding: 30px 26px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.svc-cat:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(140deg, rgba(217, 181, 124, 0.2), rgba(217, 181, 124, 0.06));
  border: 1px solid var(--line);
}
.svc-cat-icon svg { width: 26px; height: 26px; fill: var(--gold); }

.svc-cat h3 { margin-bottom: 8px; font-size: 1.4rem; }
.svc-cat > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.svc-cat-list {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
}
.svc-cat-list button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: none;
  background: transparent;
  border-radius: 10px;
  color: var(--cream-soft);
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, padding .22s ease;
}
.svc-cat-list button svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .22s ease, transform .22s ease;
}
.svc-cat-list button:hover {
  background: rgba(217, 181, 124, 0.1);
  color: var(--gold-3);
  padding-left: 16px;
}
.svc-cat-list button:hover svg { opacity: 1; transform: none; }

.svc-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: var(--r-lg);
  border: 1px dashed var(--line);
  background: rgba(217, 181, 124, 0.04);
}
.svc-foot p { margin: 0; color: var(--muted); }

/* ---------- BENTO ---------- */
.why { background: var(--ink-2); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink));
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color .3s ease, transform .3s ease;
}
.bento-item:hover { border-color: var(--line); transform: translateY(-4px); }
.bento-item.b-lg { grid-column: span 2; grid-row: span 2; min-height: 400px; }
.bento-item.b-wide { grid-column: span 2; }
.bento-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .5;
  transition: transform .6s cubic-bezier(.2,.8,.3,1), opacity .4s ease;
}
.bento-item:hover .bento-photo { transform: scale(1.07); opacity: .62; }
.bento-item:has(.bento-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,10,9,.96) 8%, rgba(13,10,9,.5) 55%, rgba(13,10,9,.2) 100%);
}
.bento-body { position: relative; z-index: 2; padding: 24px 22px; }
.bento-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.bento-body h3 { margin-bottom: 8px; }
.bento-body p { color: var(--muted); font-size: 0.9rem; }
.b-lg .bento-body h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }

/* ---------- GALERİ ---------- */
.gallery-sec { background: var(--ink); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 0.84rem;
  transition: all .25s ease;
}
.chip:hover { color: var(--cream); border-color: var(--line); }
.chip.is-active { background: var(--gold); border-color: var(--gold); color: #241a0c; font-weight: 500; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--ink-3);
  animation: fadeUp .45s ease both;
}
.g-item.tall { grid-row: span 2; aspect-ratio: 3 / 8.2; }
.g-item.wide { grid-column: span 2; aspect-ratio: 6.2 / 4; }
.g-item-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.2,.8,.3,1), filter .4s ease;
}
.g-item:hover .g-item-img { transform: scale(1.08); filter: brightness(.7); }
.g-item-ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(13,10,9,.9), rgba(13,10,9,0) 55%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.g-item:hover .g-item-ov { opacity: 1; transform: none; }
.g-item-ov strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.g-item-ov span { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.12em; }
.g-num {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: .1em;
  background: rgba(13,10,9,.66);
  border: 1px solid var(--line-soft);
  color: var(--gold);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.gallery-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ---------- ÖNCESİ / SONRASI ---------- */
.transform { background: var(--ink-2); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-before { width: 50%; border-right: 2px solid rgba(217,181,124,.7); }
.ba-tag {
  position: absolute;
  bottom: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(13,10,9,.72);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; color: var(--gold); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 46px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  cursor: ew-resize;
}
.ba-knob {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.ba-knob svg { width: 22px; height: 22px; fill: #241a0c; }

.ba-copy h3 { margin-bottom: 14px; font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.ba-copy p { color: var(--muted); }
.ba-list { margin: 22px 0 26px; display: grid; gap: 10px; }
.ba-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}
.ba-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 3px;
}
.ba-list strong { color: var(--cream); font-weight: 500; }

/* ---------- EKİP ---------- */
.team { background: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.member:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-sm); }
.member-photo {
  aspect-ratio: 4 / 4.4;
  background-size: cover;
  background-position: center top;
  filter: grayscale(.35) contrast(1.05);
  transition: filter .4s ease, transform .6s ease;
}
.member:hover .member-photo { filter: grayscale(0); }
.member-body { padding: 22px 20px 20px; }
.member-body h3 { font-size: 1.35rem; }
.member-role {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 4px 0 12px;
}
.member-bio { color: var(--muted); font-size: 0.88rem; }
.member-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 16px; }
.member-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217,181,124,.1);
  color: var(--gold);
  border: 1px solid var(--line-soft);
}
.member-cta {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all .25s ease;
}
.member-cta:hover { background: var(--gold); color: #241a0c; border-color: var(--gold); }

/* ---------- ÖZEL HİZMETLER ---------- */
.special { background: var(--ink-2); }
.special-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sp:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-sm); }
.sp.featured { border-color: var(--line); background: linear-gradient(170deg, rgba(217,181,124,.12), var(--ink) 65%); }
.sp-badge {
  position: absolute;
  top: -11px; left: 26px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  color: #241a0c;
  font-weight: 600;
}
.sp-icon { color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: 12px; }
.sp h3 { margin-bottom: 10px; }
.sp > p { color: var(--muted); font-size: 0.92rem; }
.sp ul { margin: 16px 0 20px; display: grid; gap: 8px; }
.sp li {
  position: relative;
  padding-left: 20px;
  font-size: 0.86rem;
  color: var(--muted);
}
.sp li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.sp-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.sp-cta {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: all .25s ease;
}
.sp-cta:hover { background: var(--gold); color: #241a0c; border-color: var(--gold); }

/* ---------- YORUMLAR ---------- */
.reviews {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(217,181,124,.08), transparent 60%),
    var(--ink);
}
.review-viewport { overflow: hidden; }
.review-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
}
.review {
  flex: 0 0 calc((100% - 40px) / 3);
  padding: 30px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 14px; font-size: 0.9rem; }
.review p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--cream-soft);
  flex: 1;
}
.review footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review footer strong { font-weight: 500; font-size: 0.95rem; }
.review footer span { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.1em; }

.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.rnav {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}
.rnav:hover { background: var(--gold); color: #241a0c; border-color: var(--gold); }
.review-dots { display: flex; gap: 8px; }
.review-dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--muted-2);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.review-dots button.is-active { width: 26px; background: var(--gold); }

/* ---------- RANDEVU ---------- */
.booking { background: var(--ink-2); }
.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: start;
}
.booking-copy h2 { margin-bottom: 18px; }
.booking-copy > p { color: var(--muted); }
.steps { margin: 30px 0; display: grid; gap: 20px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps li span {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.steps strong { display: block; font-weight: 500; margin-bottom: 2px; }
.steps p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.booking-alt { display: flex; flex-wrap: wrap; gap: 12px; }

.booking-form, .modal-card {
  padding: 34px 30px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--ink-3), var(--ink));
  box-shadow: var(--shadow);
}
.booking-form h3 { margin-bottom: 22px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(247, 241, 232, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  transition: border-color .25s ease, background .25s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(217, 181, 124, 0.06);
}
.field select option, .field select optgroup { background: var(--ink-3); color: var(--cream); }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(6deg);
  cursor: pointer;
}
.field.invalid input, .field.invalid select { border-color: #f87171; }

.err { color: #f87171; font-size: 0.76rem; min-height: 0; display: block; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 6px 0 8px;
  cursor: pointer;
}
.check input { accent-color: var(--gold); width: 17px; height: 17px; margin-top: 3px; flex: none; }

.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}
.form-note a { color: var(--gold); }

/* ---------- KONUM ---------- */
.location { background: var(--ink); }
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.loc-info { display: grid; gap: 26px; }
.loc-block {
  padding: 24px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
}
.loc-block h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.loc-block p { color: var(--muted); font-size: 0.95rem; }
.loc-landmark {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(217, 181, 124, 0.1);
  border: 1px solid var(--line);
  color: var(--gold) !important;
  font-size: 0.88rem !important;
}
.loc-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hours { display: grid; gap: 9px; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}
.hours li:last-child { border-bottom: none; padding-bottom: 0; }
.hours li.today { color: var(--gold); }
.hours li.today strong { font-weight: 600; }

.contact-list { display: grid; gap: 11px; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
}
.contact-list span { color: var(--muted-2); }
.contact-list a { color: var(--cream); border-bottom: 1px solid var(--line); transition: color .2s ease; }
.contact-list a:hover { color: var(--gold); }

.transport { display: grid; gap: 8px; }
.transport li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}
.transport li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.loc-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 520px;
  box-shadow: var(--shadow);
  background: var(--ink-3);
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  filter: grayscale(.5) invert(.92) hue-rotate(180deg) contrast(.9);
}

/* ---------- SSS ---------- */
.faq { background: var(--ink-2); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-head h2 { margin-bottom: 16px; }
.faq-head p { color: var(--muted); margin-bottom: 22px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-list details[open] { border-color: var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 22px;
  font-size: 1.02rem;
  position: relative;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gold); }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .3s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

/* ---------- SON CTA ---------- */
.cta-final {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  background:
    linear-gradient(rgba(13,10,9,.9), rgba(13,10,9,.94)),
    url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}
.cta-inner { max-width: 720px; margin-inline: auto; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { color: var(--muted); margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0b0908;
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer-brand-col .brand { margin-bottom: 18px; }
.footer-text { color: var(--muted); font-size: 0.92rem; max-width: 330px; }
.site-footer h3 {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.fnav { display: grid; gap: 10px; }
.fnav li, .fnav a { color: var(--muted); font-size: 0.9rem; transition: color .2s ease; }
.fnav a:hover { color: var(--gold); }
.socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.socials a {
  font-size: 0.84rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.socials a:hover { color: var(--gold); }
.footer-cta { margin-top: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ---------- SABİT WHATSAPP ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 45;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 2; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- MOBİL ALT ÇUBUK ---------- */
.mobilebar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 46;
  background: rgba(11, 9, 8, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.mobilebar a, .mobilebar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  padding: 6px 2px;
  cursor: pointer;
}
.mobilebar svg { width: 21px; height: 21px; fill: currentColor; }
.mobilebar-main { color: var(--gold) !important; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.82);
  backdrop-filter: blur(6px);
  animation: fadeIn .3s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  animation: popIn .38s cubic-bezier(.2,.9,.3,1) both;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}
.modal-close:hover { color: var(--gold); border-color: var(--gold); }
.modal-card h3 { margin-bottom: 10px; }
.modal-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(6, 5, 4, 0.94);
  display: grid;
  place-items: center;
  padding: 40px 70px;
  animation: fadeIn .28s ease both;
}
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; text-align: center; max-width: min(1000px, 100%); }
.lb-img {
  width: min(84vw, 900px);
  height: min(76vh, 760px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--r-md);
}
.lb-figure figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  border: 1px solid var(--line-soft);
  background: rgba(247,241,232,.04);
  color: var(--cream);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #241a0c; border-color: var(--gold); }
.lb-close { top: 24px; right: 24px; font-size: 1.4rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, calc(100% + 44px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  color: #241a0c;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  transition: transform .4s cubic-bezier(.2,.9,.3,1), opacity .3s ease, visibility .4s;
  max-width: calc(100% - 40px);
  text-align: center;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.8,.3,1), transform .8s cubic-bezier(.2,.8,.3,1);
  transition-delay: var(--delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- INSTAGRAM OTOMATİK BESLEME ---------- */
.ig-embed {
  margin-top: 40px;
  padding: 28px 24px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
}
.ig-embed[hidden] { display: none; }
.ig-embed-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.ig-embed iframe { width: 100%; border: 0; display: block; }

/* =========================================================
   DUYARLI TASARIM
   ========================================================= */

@media (max-width: 1180px) {
  .gallery, .team-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento-item.b-lg { grid-column: span 2; grid-row: span 2; }
  .review { flex: 0 0 calc((100% - 20px) / 2); }
  .main-nav { gap: 18px; font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { justify-content: flex-start; }
  .glass { width: min(100%, 440px); }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-note { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; max-width: 620px; }
  .ba-wrap, .booking-grid, .loc-grid, .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-cats, .special-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .loc-map, .loc-map iframe { min-height: 400px; }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0b0908;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
    padding: 10px 20px 24px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform .34s cubic-bezier(.2,.85,.3,1), opacity .28s ease, visibility .34s;
    max-height: 74dvh;
    overflow-y: auto;
    font-size: 1.02rem;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--cream);
  }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-cats, .gallery, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
  .g-item.tall { grid-row: span 1; aspect-ratio: 3 / 4; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item.b-lg { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .bento-item.b-wide { grid-column: span 2; }
  .review { flex: 0 0 100%; }

  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  /* Alt çubukta zaten WhatsApp var — yüzen buton çakışmasın */
  .wa-float { display: none; }
  .toast { bottom: 84px; }

  .cta-final { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  .topbar-inner { justify-content: center; font-size: 0.72rem; flex-wrap: nowrap; }
  .topbar-sep, .topbar-spacer, .topbar-link { display: none; }

  .hero { min-height: auto; padding-block: 30px 0; }
  .hero-grid { padding-block: 40px 90px; }
  .hero-stats { gap: 14px 22px; }
  .hero-stats li { min-width: calc(50% - 22px); }
  .hero-stats strong { font-size: 1.8rem; }
  .hero-actions .btn { width: 100%; }

  .trust-grid { grid-template-columns: 1fr; }
  .svc-cats, .gallery, .team-grid, .special-grid, .bento, .footer-grid {
    grid-template-columns: 1fr;
  }
  .svc-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .g-item.wide, .bento-item.b-lg, .bento-item.b-wide { grid-column: span 1; }
  .g-item { aspect-ratio: 4 / 4.6; }

  .field-row { grid-template-columns: 1fr; }
  .booking-form, .modal-card { padding: 26px 20px 24px; }
  .booking-alt .btn, .cta-actions .btn, .gallery-foot .btn { width: 100%; }

  .ba { aspect-ratio: 3 / 4; }
  .sp-foot { flex-direction: column; align-items: stretch; }
  .sp-cta { width: 100%; }

  .lightbox { padding: 20px 12px 90px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-img { width: 90vw; height: 62vh; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .socials { justify-content: flex-start; }
}

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

@media print {
  .site-header, .topbar, .wa-float, .mobilebar, .hero-marquee, .modal, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
