/* ───────────────────────────────────────────────────────────────
   Max's Mobile Detailing — Static Demo Site
   Saf HTML/CSS/JS. Animasyonlar korundu.
   ─────────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Inter+Tight:wght@500;600;700;800;900&display=swap");

:root {
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --background: #141416;
  --foreground: #ffffff;
  --card: #1c1c1e;
  --muted: #2c2c2e;
  --border: rgba(255,255,255,0.10);
  --primary: #FF3B30;
  --ios-red: #FF3B30;
  --ios-red-pressed: #C8261D;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
a,
button,
input,
textarea,
select,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[role="button"]:focus {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid rgba(255,82,71,0.9);
  outline-offset: 4px;
}

/* Site-wide fixed overlays */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.025) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.10) 80%,
      rgba(0,0,0,0.20) 100%
    );
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
@media (max-width: 767px) {
  body::before,
  body::after {
    display: none;
  }
}

header, main, footer { position: relative; z-index: 2; }
section { content-visibility: auto; contain-intrinsic-size: 0 600px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.0;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

/* ── Layout helpers (saf CSS, Tailwind yerine) ── */
.container { max-width: 1400px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.container-md { max-width: 1100px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.center-text { text-align: center; }
.relative { position: relative; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.hidden { display: none; }

/* ── DESIGN SYSTEM ── */

.ios-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.0;
}

.ios-glass {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.55);
  border-radius: 9999px;
  padding: 6px;
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 640px) {
  .ios-glass { display: flex; }
}

.ios-glass-link {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 9999px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.ios-glass-link:hover { background: rgba(255, 255, 255, 0.10); }
.ios-glass-link:active { transform: scale(0.96); }
.ios-glass-link.active { background: rgba(255, 255, 255, 0.10); }

.ios-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF5247 0%, #E0271C 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 17px;
  min-width: 170px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 140ms ease, filter 160ms ease, box-shadow 160ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 12px 30px rgba(255, 59, 48, 0.35),
    0 0 0 1px rgba(255, 90, 80, 0.35);
}
.ios-btn:hover { filter: brightness(1.06); }
.ios-btn:active {
  transform: scale(0.97);
  filter: brightness(0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 6px 18px rgba(255, 59, 48, 0.25);
}

.ios-btn.pulse { position: relative; }
.ios-btn.pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(255,59,48,0.55), rgba(255,59,48,0) 70%);
  filter: blur(8px);
  z-index: -1;
  animation: btn-pulse 2.6s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.06); }
}

.ios-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 17px;
  min-width: 170px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 140ms ease, background-color 160ms ease, border-color 160ms ease;
}
.ios-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.ios-btn-ghost:active { transform: scale(0.97); }

/* Stack/row CTAs */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .cta-row { flex-direction: row; gap: 16px; }
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 16px 32px;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 45%, #8134AF 80%, #515BD4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 1px 2px rgba(0,0,0,0.25),
    0 14px 36px rgba(221, 42, 123, 0.30),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 140ms ease, filter 160ms ease;
}
.ig-btn:hover { filter: brightness(1.06) saturate(1.05); }
.ig-btn:active { transform: scale(0.97); filter: brightness(0.94); }
@media (max-width: 639px) {
  .ig-btn {
    max-width: calc(100vw - 48px);
    padding: 14px 22px;
  }
}

.ig-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: color 160ms ease, background 160ms ease;
}
.ig-icon-btn:hover { color: #fff; background: rgba(0,0,0,0.78); }

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0, rgba(255,255,255,0.10) 18%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.10) 82%, transparent 100%);
  position: relative;
  z-index: 2;
}

/* ── ANIMATIONS ── */
@keyframes ios-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ios-rise   { animation: ios-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.ios-rise-1 { animation-delay: 80ms; }
.ios-rise-2 { animation-delay: 220ms; }
.ios-rise-3 { animation-delay: 360ms; }

.shimmer {
  background: linear-gradient(100deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0.95) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-sweep 6s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0%   { background-position: 200% 0; }
  50%  { background-position: -200% 0; }
  100% { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), transform 800ms cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ── */
.navbar-wrap {
  position: relative;
  z-index: 20;
  width: 100%;
}
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 640px) {
  .navbar-inner { padding: 24px 32px 0; }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 640px) {
  .logo-link { position: static; transform: none; }
}
.logo-link::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 9999px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(70% 90% at 50% 50%, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0) 80%);
  filter: blur(12px);
}
.logo-img {
  position: relative;
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7), 0 0 18px rgba(0,0,0,0.55);
  display: none;
}
@media (min-width: 640px) {
  .logo-text { display: inline; font-size: 17px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 560px;
  overflow: hidden;
}
@media (max-width: 639px) {
  .hero {
    height: 100svh;
    min-height: 620px;
  }
}
.hero-bg-img {
  position: absolute;
  inset: -8% 0 0 0;
  will-change: transform;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 639px) {
  .hero-bg-img { background-position: 30% bottom; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.hero-inner {
  width: 100%;
  max-width: 64rem;
  text-align: center;
  margin-top: -40px;
  position: relative;
  isolation: isolate;
}
.hero-inner::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(760px, 112vw);
  height: clamp(220px, 32vh, 330px);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.42) 42%, rgba(255,59,48,0.12) 64%, rgba(0,0,0,0) 78%);
  filter: blur(30px);
  opacity: 0.9;
}
@media (min-width: 640px) {
  .hero-inner { margin-top: -24px; }
  .hero-inner::before {
    top: 54%;
    width: min(920px, 92vw);
    height: 360px;
  }
}

.bay-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 640px) {
  .bay-pill { font-size: 13px; }
}
.bay-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .bay-pill-wrap { margin-bottom: 28px; }
}

.hero-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 40px;
  line-height: 1.02;
  max-width: 11ch;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 10px 34px rgba(0,0,0,0.35);
}
.hero-title .shimmer {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
}
@media (min-width: 640px) {
  .hero-title { font-size: 68px; line-height: 1.05; max-width: none; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 82px; }
}
.hero-title-sub { color: rgba(255,255,255,0.9); display: block; }

.title-scrim { position: relative; }
.title-scrim::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0) 78%);
  z-index: -1;
  pointer-events: none;
  filter: blur(16px);
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .hero-ctas { margin-top: 40px; }
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(56px, 11vh, 130px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
  z-index: 10;
  animation: scroll-bob 2.4s ease-in-out infinite;
}
@media (max-width: 639px) {
  .scroll-indicator {
    bottom: calc(40px + env(safe-area-inset-bottom));
    gap: 6px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .scroll-indicator { display: none; }
}
@media (max-width: 639px) and (max-height: 700px) {
  .scroll-indicator { display: none; }
}
@keyframes scroll-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ── STATS ── */
.hero-stats-wrap {
  position: relative;
  z-index: 12;
  margin-top: 18px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .hero-stats-wrap { margin-top: 14px; }
}
.hero-stats-card {
  width: 100%;
  max-width: 980px;
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 640px) {
  .hero-stats-card { padding: 22px 14px; border-radius: 20px; }
}
.stat-cell {
  text-align: center;
  padding: 6px 14px;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18) 50%, transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 6.5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}
.stat-label {
  margin-top: 8px;
  font-size: clamp(9px, 2.2vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  line-height: 1.3;
}

/* ── SECTIONS ── */
.section {
  position: relative;
  width: 100%;
  padding: 96px 24px;
}
@media (min-width: 640px) {
  .section { padding: 128px 32px; }
}
.section-tight { padding-top: 120px; }
@media (min-width: 640px) {
  .section-tight { padding-top: 140px; }
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .section-eyebrow { font-size: 13px; }
}
.section-title {
  color: #fff;
  font-size: 40px;
  text-wrap: balance;
}
.title-accent { color: #FF5247; }
@media (min-width: 640px) {
  .section-title { font-size: 60px; }
}
@media (min-width: 768px) {
  .section-title { font-size: 72px; }
}
.section-lead {
  margin-top: 24px;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .section-lead { font-size: 19px; margin-top: 32px; }
}
.section-sub {
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .section-sub { font-size: 16px; }
}

/* ── BEFORE/AFTER ── */
.ba-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  user-select: none;
  background: #0c0c0c;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 0px;
  background: transparent;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 8px 32px rgba(0,0,0,0.40),
    0 2px 8px rgba(0,0,0,0.25);
  color: #fff;
  pointer-events: none;
  transition: transform 120ms ease;
}
.ba-wrap:active .ba-knob { transform: translate(-50%, -50%) scale(0.94); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 5;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
}
.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; }
.ba-handle.teasing { transition: left 700ms cubic-bezier(0.45, 0, 0.55, 1); }
.ba-after-clip.teasing { transition: clip-path 700ms cubic-bezier(0.45, 0, 0.55, 1); }

/* ── REVIEWS ── */
.reviews-track {
  display: flex;
  gap: 20px;
  padding: 8px 0 28px;
  width: max-content;
  animation: reviews-marquee 50s linear infinite;
}
.reviews-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.reviews-viewport:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(440px, 86vw);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 22px 24px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.review-stars { color: #FFC83D; letter-spacing: 2px; font-size: 14px; }
.review-quote {
  color: rgba(255,255,255,0.88);
  font-size: 15.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14.5px; color: #fff; }
.review-meta { font-size: 12.5px; color: rgba(255,255,255,0.5); }
@media (max-width: 639px) {
  .review-card {
    flex-basis: min(340px, 82vw);
    min-height: 178px;
    padding: 16px 18px;
    gap: 9px;
    border-radius: 18px;
  }
  .review-stars { font-size: 12px; letter-spacing: 1.5px; }
  .review-quote {
    font-size: 13.5px;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 58px;
    max-height: 96px;
  }
  .review-author {
    padding-top: 10px;
    gap: 10px;
  }
  .review-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .review-name { font-size: 13px; }
  .review-meta { font-size: 11.5px; }
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; gap: 10px; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: #0c0c0c;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms;
}
.gallery-item:hover {
  transform: scale(1.012);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset, 0 18px 50px rgba(0,0,0,0.55);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gi-tall    { grid-row: span 4; grid-column: span 4; }
.gi-wide    { grid-row: span 3; grid-column: span 5; }
.gi-medium  { grid-row: span 3; grid-column: span 3; }
.gi-square  { grid-row: span 3; grid-column: span 3; }
.gi-small   { grid-row: span 2; grid-column: span 3; }
.gi-feature { grid-row: span 5; grid-column: span 7; }
@media (max-width: 768px) {
  .gi-tall, .gi-wide, .gi-feature { grid-column: span 6; grid-row: span 3; }
  .gi-medium, .gi-square, .gi-small { grid-column: span 3; grid-row: span 2; }
}
.gallery-grid .gallery-item {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1), box-shadow 380ms;
}
.gallery-grid.in .gallery-item { opacity: 1; transform: none; }
.gallery-grid.in .gallery-item:nth-child(1)  { transition-delay: 40ms; }
.gallery-grid.in .gallery-item:nth-child(2)  { transition-delay: 80ms; }
.gallery-grid.in .gallery-item:nth-child(3)  { transition-delay: 120ms; }
.gallery-grid.in .gallery-item:nth-child(4)  { transition-delay: 160ms; }
.gallery-grid.in .gallery-item:nth-child(5)  { transition-delay: 200ms; }
.gallery-grid.in .gallery-item:nth-child(6)  { transition-delay: 240ms; }
.gallery-grid.in .gallery-item:nth-child(7)  { transition-delay: 280ms; }
.gallery-grid.in .gallery-item:nth-child(8)  { transition-delay: 320ms; }
.gallery-grid.in .gallery-item:nth-child(9)  { transition-delay: 360ms; }
.gallery-grid.in .gallery-item:nth-child(10) { transition-delay: 400ms; }
.gallery-grid.in .gallery-item:nth-child(11) { transition-delay: 440ms; }
.gallery-grid.in .gallery-item:nth-child(12) { transition-delay: 480ms; }
.gallery-grid.in .gallery-item:nth-child(13) { transition-delay: 520ms; }
.gallery-grid.in .gallery-item:nth-child(14) { transition-delay: 560ms; }
.gallery-grid.in .gallery-item:nth-child(15) { transition-delay: 600ms; }
.gallery-grid.in .gallery-item:nth-child(16) { transition-delay: 640ms; }
.gallery-grid.in .gallery-item:nth-child(17) { transition-delay: 680ms; }
.gallery-grid.in .gallery-item:nth-child(18) { transition-delay: 720ms; }

.gallery-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 60;
  width: 76px; height: 76px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1), opacity 200ms;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  mix-blend-mode: difference;
}
.gallery-cursor.show { transform: translate(-50%, -50%) scale(1); }
@media (hover: none) { .gallery-cursor { display: none; } }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  opacity: 0;
  transition: opacity 280ms ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-inner {
  position: relative;
  max-width: 1280px;
  max-height: 88vh;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75);
  transform: scale(0.96);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.active .lightbox-inner { transform: scale(1); }
.lightbox-inner img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 140ms ease, background 160ms ease;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-arrow { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-arrow:hover { background: rgba(0,0,0,0.8); }
.lightbox-close:active { transform: scale(0.94); }
.lightbox-arrow:active { transform: translateY(-50%) scale(0.94); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: color 180ms ease;
}
.faq-btn:hover { color: rgba(255,255,255,0.8); }
.faq-question {
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, transform 320ms cubic-bezier(0.22,1,0.36,1);
  color: rgba(255,255,255,0.70);
}
.faq-item.open .faq-icon {
  background: rgba(255,59,48,0.18);
  border-color: rgba(255,59,48,0.30);
  color: #FF5247;
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-answer {
  padding-bottom: 22px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.60);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 30px rgba(0,0,0,0.55);
  cursor: pointer;
  position: relative;
  z-index: 8500;
  transition: background 200ms;
  padding: 0;
  margin-left: auto;
}
@media (max-width: 639px) { .hamburger { display: flex; } }
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  border-radius: 9999px;
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease, width 320ms cubic-bezier(0.22,1,0.36,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(10,10,10,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 380ms cubic-bezier(0.22,1,0.36,1), visibility 380ms;
}
#mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
#mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
#mobile-menu > * { position: relative; z-index: 1; }
#mmenu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms, transform 160ms;
}
#mmenu-close:hover { background: rgba(255,255,255,0.14); }
#mmenu-close:active { transform: scale(0.94); }
.mmenu-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 0;
  transition: color 160ms ease, transform 160ms ease;
  opacity: 0;
  transform: translateY(16px);
}
#mobile-menu.open .mmenu-link { opacity: 1; transform: translateY(0); }
/* mmenu-close is the 1st child, so .mmenu-link items start at nth-child(2) */
#mobile-menu.open .mmenu-link:nth-child(2) { transition: color 160ms, transform 360ms  60ms cubic-bezier(0.22,1,0.36,1), opacity 360ms  60ms; }
#mobile-menu.open .mmenu-link:nth-child(3) { transition: color 160ms, transform 360ms 110ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 110ms; }
#mobile-menu.open .mmenu-link:nth-child(4) { transition: color 160ms, transform 360ms 160ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 160ms; }
#mobile-menu.open .mmenu-link:nth-child(5) { transition: color 160ms, transform 360ms 210ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 210ms; }
#mobile-menu.open .mmenu-link:nth-child(6) { transition: color 160ms, transform 360ms 260ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 260ms; }
#mobile-menu.open .mmenu-link:nth-child(7) { transition: color 160ms, transform 360ms 310ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 310ms; }
#mobile-menu.open .mmenu-link:nth-child(8) { transition: color 160ms, transform 360ms 360ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 360ms; }
.mmenu-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 6px;
  border-radius: 8px;
}
.mmenu-link:hover { color: #fff; transform: translateX(4px); }
.mmenu-link:active { color: rgba(255,59,48,0.9); }
.mmenu-link.active { color: #fff; position: relative; }
.mmenu-link.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 10px;
  width: 100%; height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #FF5247, #FF3B30);
  box-shadow: 0 0 12px rgba(255,59,48,0.5);
}
.mmenu-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #FF5247 0%, #E0271C 100%);
  color: #fff;
  margin: 18px 0 8px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 12px 30px rgba(255,59,48,0.35),
    0 0 0 1px rgba(255,90,80,0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: transform 140ms ease, filter 160ms ease;
}
#mobile-menu.open .mmenu-call-icon {
  opacity: 1;
  transform: translateY(0);
  transition: filter 160ms, transform 360ms 420ms cubic-bezier(0.22,1,0.36,1), opacity 360ms 420ms;
}
.mmenu-call-icon:hover { filter: brightness(1.07); }
.mmenu-call-icon:active { transform: scale(0.94); }

.mmenu-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px 0 20px;
  opacity: 0;
  transition: opacity 400ms 260ms;
}
#mobile-menu.open .mmenu-divider { opacity: 1; }
.mmenu-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.mmenu-ig:hover { background: rgba(255,255,255,0.10); color: #fff; }
.mmenu-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms 300ms, transform 360ms 300ms cubic-bezier(0.22,1,0.36,1);
}
#mobile-menu.open .mmenu-bottom { opacity: 1; transform: translateY(0); }
.mmenu-footer {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
  white-space: nowrap;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 9000;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #FF5247 0%, #FF3B30 60%, #FFC83D 100%);
  pointer-events: none;
  will-change: transform;
}

/* ── LOADING SCREEN ── */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9999;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), visibility 800ms;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  height: 72px;
  width: auto;
  opacity: 0;
  animation: loader-fade 900ms cubic-bezier(0.22,1,0.36,1) 200ms both;
}
@keyframes loader-fade {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── FAB (Call/Text floating buttons) ── */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.22,1,0.36,1);
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab .ios-btn { min-width: 0; padding: 12px 20px; font-size: 15px; }
.fab .ios-btn-ghost { min-width: 0; padding: 12px 20px; font-size: 15px; }

/* ── FOOTER ── */
.footer {
  position: relative;
  width: 100%;
  background: #141416;
  z-index: 3;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner { padding-top: 96px; padding-left: 32px; padding-right: 32px; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand .logo-img { opacity: 0.95; height: 48px; }
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 640px) {
  .footer-brand-text { font-size: 14px; }
}
.footer-nav {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  row-gap: 12px;
}
@media (max-width: 639px) {
  .footer-nav {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(112px, 1fr));
    align-items: start;
    justify-items: center;
    column-gap: 18px;
    row-gap: 16px;
    width: 100%;
    max-width: 320px;
  }
}
.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: color 160ms;
}
.footer-nav a:hover { color: #fff; }
.footer-rule {
  margin: 56px 0 24px;
  height: 1px;
  width: 64px;
  background: rgba(255,255,255,0.18);
}
.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.footer-made-by {
  margin-top: 10px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 11.5px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: none;
}
.footer-made-by a {
  font-family: inherit;
  font-style: normal;
  color: #FF5247;
  font-weight: 600;
  transition: color 160ms ease;
}
.footer-made-by a:hover { color: #ff7a70; }

/* ── BOOKING FORM ── */
.booking-hero {
  position: relative;
  width: 100%;
}

body:has(.booking-page)::before,
body:has(.booking-page)::after { display: none; }
body:has(.booking-page) { background: #0a0a0a; }
.booking-page { position: relative; z-index: 2; }
.booking-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100lvh;
  min-height: 100vh;
  z-index: 0;
  background-image: url("assets/source/booking-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.booking-bg-scrim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100lvh;
  min-height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.66) 50%, rgba(0,0,0,0.84) 100%);
}
@media (max-width: 767px) {
  .booking-bg {
    height: 100lvh;
    min-height: 100lvh;
    background-position: center top;
  }
  .booking-bg-scrim {
    height: 100lvh;
    min-height: 100lvh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.72) 48%, rgba(0,0,0,0.88) 100%);
  }
}
.booking-page > nav,
.booking-page > header,
.booking-page > section { position: relative; z-index: 2; }
.booking-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.booking-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}
.booking-intro {
  position: relative;
}
@media (min-width: 900px) {
  .booking-intro {
    position: sticky;
    top: 32px;
    padding-top: 8px;
  }
}
.booking-intro-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.booking-intro h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .booking-intro h2 { font-size: 44px; }
}
.booking-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}
.booking-intro a {
  color: #FF5247;
  font-weight: 600;
}
.booking-intro a:hover { filter: brightness(1.1); }
.booking-card {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
}
@media (min-width: 640px) {
  .booking-card { padding: 40px 36px; }
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.form-row input,
.form-row select,
.form-row textarea {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 160ms, background 160ms;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(255,59,48,0.5);
  background: rgba(255,255,255,0.06);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; column-gap: 16px; }
}
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .form-actions { flex-direction: row; }
}
.form-note {
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.form-success {
  display: none;
  background: rgba(52,199,89,0.10);
  border: 1px solid rgba(52,199,89,0.30);
  color: #34C759;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}
.form-success.show { display: block; }

/* ── CUSTOM DATE PICKER ── */
.dp-wrap { position: relative; }
.dp-input {
  cursor: pointer;
  padding-right: 44px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}
.dp-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-width: 340px;
  z-index: 200;
  background: rgba(18,18,20,0.96);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms cubic-bezier(0.22,1,0.36,1), transform 200ms cubic-bezier(0.22,1,0.36,1), visibility 200ms;
}
.dp-pop.open { opacity: 1; visibility: visible; transform: none; }
.dp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 8px;
}
.dp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  flex: 1;
  text-align: center;
}
.dp-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 140ms, transform 140ms;
}
.dp-nav-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.dp-nav-btn:active { transform: scale(0.94); }
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.dp-dow {
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  padding: 4px 0 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  transition: background 140ms, color 140ms, transform 140ms;
}
.dp-day:hover:not(.disabled):not(.selected) { background: rgba(255,255,255,0.08); }
.dp-day.muted { color: rgba(255,255,255,0.22); }
.dp-day.today:not(.selected) {
  border-color: rgba(255,255,255,0.20);
  font-weight: 700;
}
.dp-day.selected {
  background: linear-gradient(180deg, #FF5247 0%, #E0271C 100%);
  color: #fff;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 6px 16px rgba(255,59,48,0.4);
}
.dp-day.disabled {
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
}
.dp-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.dp-today-btn,
.dp-close-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 140ms, color 140ms;
}
.dp-today-btn:hover,
.dp-close-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── SERVICE CARDS ── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(28,28,30,0.85) 0%, rgba(18,18,20,0.92) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 360ms cubic-bezier(0.22,1,0.36,1), box-shadow 360ms, border-color 240ms;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.svc-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22,1,0.36,1);
  /* Fade bottom of image into card body */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}
.svc-card:hover .svc-media img { transform: scale(1.045); }
.svc-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(18,18,20,0.65) 65%, rgba(18,18,20,1) 100%);
  pointer-events: none;
}
.svc-body {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 4px 24px 28px;
  margin-top: -28px;
  z-index: 1;
}
@media (min-width: 640px) {
  .svc-body { padding: 4px 28px 32px; }
}
.svc-body h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
@media (min-width: 640px) {
  .svc-body h3 { font-size: 28px; }
}
.svc-body h3::after {
  content: "";
  display: block;
  margin-top: 12px;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FF5247, #E0271C);
}
.svc-body p {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.65;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .svc-body p { font-size: 15px; }
}

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
}
.about-hero-body {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 64px;
  min-height: 80vh;
}
@media (min-width: 640px) {
  .about-hero-body { padding: 0 48px 96px; }
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  align-self: flex-start;
}
@media (min-width: 640px) {
  .about-eyebrow { font-size: 12px; }
}
.about-title {
  color: #fff;
  font-size: 52px;
}
.about-text-glow {
  position: relative;
  isolation: isolate;
  max-width: 720px;
}
.about-text-glow::before {
  content: "";
  position: absolute;
  inset: -28px -24px -36px;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 32% 46%, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.46) 44%, rgba(255,59,48,0.10) 66%, rgba(0,0,0,0) 82%);
  filter: blur(28px);
  opacity: 0.95;
  pointer-events: none;
}
.about-title,
.about-lead {
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .about-title { font-size: 72px; }
  .about-text-glow::before { inset: -40px -74px -50px; }
}
@media (min-width: 768px) {
  .about-title { font-size: 88px; }
}
.about-lead {
  margin-top: 16px;
  max-width: 620px;
  color: rgba(255,255,255,0.90);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  text-wrap: pretty;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7), 0 8px 32px rgba(0,0,0,0.5);
}
@media (min-width: 640px) {
  .about-lead { font-size: 20px; }
}
.about-story p {
  color: rgba(255,255,255,0.80);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .about-story p { font-size: 22px; }
}

/* ── PRICING TABLES ── */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pricing-table {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 18px 50px rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
}
.pricing-table-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.pricing-table-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) {
  .pricing-table-title { font-size: 24px; }
}
.pricing-table-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-label {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .pricing-row-label { font-size: 15px; }
}
.pricing-row-value {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (min-width: 640px) {
  .pricing-row-value { font-size: 15px; }
}
.pricing-row-value .pv-line {
  white-space: nowrap;
}
.pricing-row-value .pv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-right: 6px;
}
.pricing-footnote {
  margin-top: 40px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.pricing-footnote a { color: #FF5247; font-weight: 600; }

/* ── PRICING (legacy cards, kept for fallback) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.price-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  padding: 28px 26px 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card.featured {
  border-color: rgba(255,59,48,0.45);
  background: rgba(255,59,48,0.06);
  box-shadow: 0 22px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,82,71,0.35);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FF5247, #E0271C);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,59,48,0.4);
}
.price-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.price-card h3 {
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.price-amount .price-unit {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
  margin-left: 6px;
}
.price-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price-rows li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}
.price-rows li span:last-child {
  color: #fff;
  font-weight: 600;
}
.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.price-feat svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #34C759;
}
.price-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms, transform 140ms;
}
.price-card.featured .price-cta {
  background: linear-gradient(180deg, #FF5247, #E0271C);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255,59,48,0.35);
}
.price-cta:hover { background: rgba(255,255,255,0.12); }
.price-cta:active { transform: scale(0.97); }
.price-card.featured .price-cta:hover { filter: brightness(1.07); background: linear-gradient(180deg, #FF5247, #E0271C); }
.price-note {
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
}

/* ── 404 PAGE ── */
.nf-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}
.nf-inner { max-width: 600px; }
.nf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255,59,48,0.10);
  border: 1px solid rgba(255,59,48,0.25);
  color: #FF5247;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.nf-code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 30vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  text-shadow: 0 8px 60px rgba(255,59,48,0.15);
}
.nf-title {
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
@media (min-width: 640px) {
  .nf-title { font-size: 42px; }
}
.nf-lead {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .nf-lead { font-size: 17px; }
}

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.legal-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.legal-title {
  margin-top: 12px;
  font-size: 32px;
  color: #fff;
}
.legal-body {
  margin-top: 32px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.30);
}
.legal-body h2 { font-size: 18px; color: #fff; margin: 16px 0 8px; }
.legal-body p { margin: 8px 0; }
