/* ============================================================
   LUXE SPA — Premium Shared Stylesheet (v3)
   Luxury token system — four core colors, everything derived.
   Functionality/CSS hooks untouched.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* ===== Core luxury palette ===== */
  --luxe-burgundy: #5C1928;   /* primary deep burgundy */
  --luxe-gold: #D4AF37;       /* gold accent */
  --luxe-beige: #FDFBF7;      /* soft beige background */
  --luxe-slate: #1C1917;      /* dark slate text */

  /* RGB triplets for alpha compositing */
  --burgundy-rgb: 92, 25, 40;
  --gold-rgb: 212, 175, 55;
  --beige-rgb: 253, 251, 247;
  --slate-rgb: 28, 25, 23;
  --deep-rgb: 58, 16, 26;
  --muted-rgb: 120, 113, 108;
  --charcoal-rgb: 68, 64, 60;
  --white-rgb: 255, 255, 255;

  /* Primary Deep Burgundy scale */
  --burgundy: var(--luxe-burgundy);
  --burgundy-deep: #3A101A;
  --burgundy-light: #782234;
  --burgundy-soft: #8A3346;
  --burgundy-tint: rgba(var(--burgundy-rgb), 0.06);

  /* Gold Accent scale */
  --gold: var(--luxe-gold);
  --gold-soft: #F3E5AB;
  --gold-mute: #A8892E;
  --gold-deep: #8C6F1F;
  --gold-tint: rgba(var(--gold-rgb), 0.14);
  --gold-line: rgba(var(--gold-rgb), 0.30);

  /* Soft Beige scale */
  --ivory: var(--luxe-beige);
  --ivory-deep: #F5F0E3;
  --ivory-2: #FAF6EB;

  /* Dark Slate text scale */
  --espresso: var(--luxe-slate);
  --charcoal: rgb(var(--charcoal-rgb));
  --muted: rgb(var(--muted-rgb));

  /* Hairline + status */
  --line: #EAE3D2;
  --white: #FFFFFF;
  --danger: #B23A3A;
  --ok: #2F7D5B;
  --warn: #A87E13;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Shadows — soft, layered, expensive (burgundy-tinted ink) */
  --shadow-xs: 0 1px 2px rgba(var(--deep-rgb), 0.05);
  --shadow-sm: 0 2px 4px rgba(var(--deep-rgb), 0.04), 0 8px 22px -10px rgba(var(--deep-rgb), 0.10);
  --shadow-md: 0 6px 14px -6px rgba(var(--deep-rgb), 0.10), 0 24px 48px -20px rgba(var(--deep-rgb), 0.16);
  --shadow-lg: 0 16px 26px -12px rgba(var(--deep-rgb), 0.16), 0 42px 80px -28px rgba(var(--deep-rgb), 0.22);
  --ring: 0 0 0 3px rgba(var(--gold-rgb), 0.28);
  --ring-wine: 0 0 0 3px rgba(var(--burgundy-rgb), 0.18);

  /* Radius — refined, never brutish */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Motion */
  --tr: 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  --tr-slow: 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: 5.9rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--espresso);
}

/* Editorial display headings */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--burgundy-deep);
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); line-height: 1.05; font-weight: 600; letter-spacing: -0.005em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
small { font-size: 0.875em; }

.container { width: min(1220px, 100% - 3rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

::selection { background: var(--gold-soft); color: var(--burgundy-deep); }

/* ---------- Custom scrollbar ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--burgundy) var(--ivory-deep);
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track {
  background: var(--ivory-deep);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.16);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--burgundy-light), var(--burgundy) 55%, var(--burgundy-deep));
  border-radius: 999px;
  border: 3px solid var(--ivory-deep);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.42);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--burgundy-soft), var(--burgundy-light) 55%, var(--burgundy));
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, var(--gold-mute), var(--gold));
}
::-webkit-scrollbar-corner { background: var(--ivory-deep); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1.9rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.045em;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(var(--white-rgb),0.14);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(var(--white-rgb),0.18);
}
.btn:active { transform: translateY(0) scale(0.985); box-shadow: var(--shadow-xs); }
.btn:focus-visible { outline: none; box-shadow: var(--ring), inset 0 1px 0 rgba(var(--white-rgb),0.14); }

.btn--primary {
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 45%, var(--burgundy-deep));
  color: var(--ivory);
  border-color: rgba(var(--white-rgb),0.06);
}
.btn--primary:hover {
  background: linear-gradient(160deg, var(--burgundy-soft), var(--burgundy) 45%, var(--burgundy-deep));
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(var(--gold-rgb),0.22) inset;
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--gold-line);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--burgundy-tint);
  border-color: var(--gold-mute);
  box-shadow: var(--shadow-xs);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 70%, var(--gold-deep));
  color: var(--burgundy-deep);
  border-color: rgba(var(--beige-rgb), 0.35);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(var(--white-rgb), 0.45);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-mute));
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(var(--white-rgb),0.5);
}

.btn--danger {
  background: var(--white);
  color: var(--danger);
  border-color: rgba(178, 58, 58, 0.4);
  box-shadow: none;
}
.btn--danger:hover { background: rgba(178, 58, 58, 0.07); }

.btn--sm { padding: 0.58rem 1.25rem; font-size: 0.85rem; letter-spacing: 0.03em; }
.btn--block { width: 100%; }
.btn.is-disabled { opacity: 0.45; pointer-events: none; }
.btn--loading { pointer-events: none; opacity: 0.85; }

.spinner {
  width: 15px; height: 15px; flex: none;
  border: 2px solid rgba(var(--white-rgb),0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner--lg { width: 26px; height: 26px; border-width: 3px; color: var(--burgundy); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navbar — fixed floating glass bar ---------- */
.nav {
  position: fixed; top: 1rem; left: 0; right: 0;
  margin-inline: auto;
  width: min(1280px, calc(100% - 2rem));
  z-index: 60;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(var(--white-rgb), 0.65);
  border-bottom: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 40px -18px rgba(var(--deep-rgb), 0.28), inset 0 1px 0 rgba(var(--white-rgb), 0.6);
  transition: box-shadow var(--tr), background var(--tr), top var(--tr);
}
.nav::after {
  content: "";
  position: absolute; left: 8%; right: 8%; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.75) 50%, transparent);
  pointer-events: none;
}
.nav.is-scrolled {
  top: 0.55rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 52px -20px rgba(var(--deep-rgb), 0.36), inset 0 1px 0 rgba(var(--white-rgb), 0.6);
}
.nav .container { width: auto; margin-inline: clamp(1rem, 3vw, 2.25rem); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.85rem 0; transition: padding var(--tr); }
.nav.is-scrolled .nav-inner { padding: 0.55rem 0; }

.logo {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-serif); font-weight: 700;
  color: var(--burgundy); font-size: 1.5rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1;
  transition: letter-spacing var(--tr);
}
.logo:hover { letter-spacing: 0.11em; }
.logo span:last-child {
  font-weight: 700; white-space: nowrap;
}
.logo-mark { width: 64px; height: 64px; flex: none; filter: drop-shadow(0 2px 6px rgba(var(--deep-rgb),0.18)); }
.logo-mark svg { width: 100%; height: 100%; }
/* Navbar SPA logo (real brand image). object-fit keeps the file's original
   square aspect ratio at any size - never stretched, squeezed or cropped.
   Sized by the .logo-mark rules above (64px desktop/tablet, 50px at <=480px),
   vertically centred by .logo's align-items:center; flex:none stops it from
   growing, pushing other navbar items, or causing horizontal overflow.
   Scoped to .nav so footer/auth-head logos are untouched. */
.nav img.logo-mark { display: block; object-fit: contain; border-radius: 22%; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.95rem;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  transition: color var(--tr), transform var(--tr), background var(--tr);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.2rem;
  height: 1px; background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
}
.nav-links a:hover {
  color: var(--burgundy);
  transform: scale(1.08) translateY(-1px);
}
.nav-links a:focus-visible { transform: none; }
.nav-links a:hover::after { transform: scaleX(1.06); }
.nav-links .nav-book {
  background: var(--burgundy);
  color: var(--ivory); padding: 0.6rem 1.3rem; margin-left: 0.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(var(--burgundy-rgb), 0.5), inset 0 1px 0 rgba(var(--white-rgb),0.16);
}
.nav-links .nav-book::after { display: none; }
.nav-links .nav-book:hover {
  background: var(--burgundy-deep);
  color: var(--ivory);
  box-shadow: 0 8px 20px -8px rgba(var(--burgundy-rgb), 0.6), inset 0 1px 0 rgba(var(--white-rgb),0.2);
}

.nav-account { position: relative; z-index: 100000; }
.nav-account .acct-link {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 6px;
  padding: 0.4rem 0.4rem 0.4rem 0.8rem; border-radius: 999px;
  border: 1px solid var(--gold-line); background: rgba(var(--white-rgb),0.5);
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
}
.nav-account .acct-link:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-xs); }
.acct-caret { font-size: 0.65rem; color: var(--gold-mute); display: inline-block; transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1); }
.nav-account.is-open .acct-caret { transform: rotate(180deg); }

/* SVG dropdown chevron — prominent gold arrow */
.dropdown-chevron {
  display: inline-block !important;
  min-width: 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin-left: 8px !important;
  stroke: #D4AF37 !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
  vertical-align: middle !important;
}
.nav-account.is-open .dropdown-chevron { transform: rotate(180deg) !important; }

/* Guest state — gold silhouette icon, no name / avatar / chevron */
.nav-account.is-guest [data-user-badge],
.nav-account.is-guest [data-account-name],
.nav-account.is-guest .acct-caret { display: none; }
/* Pill containment: icon locked inside a centered 40px capsule */
.nav-account.is-guest .acct-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 8px 16px !important;
  height: 40px !important;
  min-width: 44px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}
.nav-account.is-guest .guest-icon {
  display: block !important;
  margin: 0 auto;
  line-height: 1;
  position: static;
  flex: none;
  color: var(--gold);
}

.acct-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy-soft), var(--burgundy-deep));
  color: var(--ivory); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(var(--white-rgb),0.2);
}
.acct-menu {
  position: absolute !important; top: 100% !important; right: 0 !important;
  width: 230px; max-width: calc(100vw - 32px); z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 0.65rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98);
  transition: all var(--tr); z-index: 1000;
}
.acct-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.acct-menu .acct-head {
  padding: 0.55rem 0.8rem 0.75rem; border-bottom: 1px solid var(--line); margin-bottom: 0.45rem;
}
.acct-menu .acct-head strong { display: block; font-weight: 600; font-size: 0.94rem; color: var(--espresso); }
.acct-menu .acct-head span { color: var(--muted); font-size: 0.8rem; }
.acct-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.8rem; border-radius: 10px;
  font-size: 0.93rem; color: var(--espresso);
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.acct-menu a svg { flex: none; color: var(--gold-deep); transition: color var(--tr), transform var(--tr); }
.acct-menu a:hover {
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.14), rgba(var(--gold-rgb), 0.04));
  color: var(--burgundy);
  transform: translateX(3px);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.25);
}
.acct-menu a:hover svg { color: var(--burgundy); transform: scale(1.08); }
/* Soft burgundy logout affordance */
.acct-menu a.acct-logout { color: var(--burgundy); }
.acct-menu a.acct-logout svg { color: var(--burgundy); }
.acct-menu a.acct-logout:hover {
  background: linear-gradient(90deg, rgba(var(--burgundy-rgb), 0.12), rgba(var(--burgundy-rgb), 0.03));
  color: var(--burgundy-deep);
}
/* Night/Dark Mode toggle row */
.acct-theme-toggle {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  padding: 0.6rem 0.8rem; border-radius: 10px; border: none; background: none;
  font: inherit; font-size: 0.93rem; color: var(--espresso); cursor: pointer; text-align: left;
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.acct-theme-toggle svg { flex: none; color: var(--gold-deep); transition: color var(--tr), transform var(--tr); }
.acct-theme-toggle:hover {
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.14), rgba(var(--gold-rgb), 0.04));
  color: var(--burgundy);
  transform: translateX(3px);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.25);
}
.acct-theme-toggle .ic-sun { display: none; }
html.dark-theme .acct-theme-toggle .ic-moon { display: none; }
html.dark-theme .acct-theme-toggle .ic-sun { display: block; color: var(--gold); }
.theme-switch {
  margin-left: auto; flex: none; position: relative;
  width: 34px; height: 18px; border-radius: 999px;
  background: rgba(var(--deep-rgb), 0.22);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  transition: background var(--tr), box-shadow var(--tr);
}
.theme-knob {
  position: absolute; top: 1px; left: 1px; width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: transform var(--tr);
}
html.dark-theme .theme-switch {
  background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-deep));
  box-shadow: 0 0 12px -2px rgba(var(--gold-rgb), 0.55);
}
html.dark-theme .theme-knob { transform: translateX(16px); }

.burger {
  display: none; margin-left: auto;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: rgba(45, 12, 22, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  cursor: pointer;
  position: relative; z-index: 100000;
}
.burger span { display: block; width: 22px; height: 2px; background: #D4AF37; margin: 0; border-radius: 2px; transition: all var(--tr); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed !important; top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100vh !important;
  z-index: 99999 !important;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(var(--gold-rgb),0.14), transparent 55%),
    radial-gradient(120% 80% at 0% 100%, rgba(var(--burgundy-rgb),0.10), transparent 55%),
    var(--ivory);
  display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important;
  gap: 28px !important;
  padding: 5rem 1.75rem 2.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out !important;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--burgundy-deep); text-align: center; text-decoration: none;
  padding: 0.3rem 0.25rem; border-bottom: none;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn.m-book {
  margin-top: 1.8rem; text-align: center; border: none; border-radius: 999px;
  font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600;
  padding: 0.95rem 2.4rem; min-width: 220px; color: var(--ivory);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-color: var(--ivory);
  background-image: radial-gradient(rgba(var(--burgundy-rgb),0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero-bg::before,
.hero-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(64px); pointer-events: none;
}
.hero-bg::before {
  top: -16%; right: -10%;
  width: min(52rem, 82vw); height: min(52rem, 82vw);
  background: radial-gradient(circle closest-side, rgba(var(--gold-rgb),0.42), rgba(var(--gold-rgb),0.14) 48%, transparent 74%);
  animation: glow-pulse-a 7.5s ease-in-out infinite;
}
.hero-bg::after {
  bottom: -22%; left: -12%;
  width: min(56rem, 88vw); height: min(56rem, 88vw);
  background: radial-gradient(circle closest-side, rgba(var(--burgundy-rgb),0.4), rgba(var(--burgundy-rgb),0.13) 50%, transparent 76%);
  animation: glow-pulse-b 9.5s ease-in-out infinite;
}
@keyframes glow-pulse-a {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
@keyframes glow-pulse-b {
  0%, 100% { opacity: 0.9;  transform: scale(1.06); }
  50%      { opacity: 0.55; transform: scale(0.94); }
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5.5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  justify-self: start;
  text-align: left;
  max-width: 40rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.15rem; margin-bottom: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.16), rgba(var(--gold-rgb),0.04));
  border: 1px solid rgba(var(--gold-rgb),0.4);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--gold-deep); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(var(--white-rgb),0.5);
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-mute));
  transform: rotate(45deg); border-radius: 1px;
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.18);
}
.hero-eyebrow::after {
  content: ""; width: 4px; height: 4px; flex: none;
  transform: rotate(45deg); background: var(--gold); border-radius: 1px;
}

.hero h1 { color: var(--burgundy-deep); margin-bottom: 0.6rem; }
.hero h1 .serif-accent { font-style: italic; font-weight: 500; color: var(--burgundy); display: block; }
.hero p.hero-sub {
  max-width: 34em; color: var(--charcoal); font-size: 1.1rem; line-height: 1.8;
  margin: 1.1rem 0 2.1rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta .btn { padding: 1rem 2.1rem; }
.hero-note {
  display: flex; gap: 0.7rem; align-items: center; margin-top: 1.9rem;
  color: var(--muted); font-size: 0.9rem;
}
.hero-note svg { color: var(--gold-mute); flex: none; }

/* Hero art — floating glass panel */
.hero-art { position: relative; }
.hero-art::after {
  content: ""; position: absolute; inset: -16px -16px 22px 16px;
  border: 1px solid rgba(var(--gold-rgb),0.35); border-radius: 40px;
  z-index: 0; pointer-events: none;
}
.hero-art-main {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(120% 85% at 26% 0%, rgba(var(--white-rgb),0.24), transparent 54%),
    linear-gradient(160deg, rgba(107, 29, 47, 0.86), rgba(61, 15, 25, 0.92));
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(var(--white-rgb),0.2);
  box-shadow:
    0 34px 80px -28px rgba(var(--deep-rgb),0.55),
    0 0 0 1px rgba(var(--gold-rgb),0.25),
    inset 0 1px 0 rgba(var(--white-rgb),0.22);
}
.hero-art-main::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: min(62%, 300px); aspect-ratio: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 12c14 20 21 36 21 51 0 27-21 27-21 27S29 90 29 63C29 48 36 32 50 12Z' fill='none' stroke='rgba(212,175,55,0.6)' stroke-width='1.6'/%3E%3Cpath d='M50 26c10 15 15 27 15 39 0 20-15 22-15 22s-15-2-15-22C35 53 40 41 50 26Z' fill='rgba(212,175,55,0.22)'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: drop-shadow(0 14px 24px rgba(8,1,3,0.4));
  animation: icon-float 6.5s ease-in-out infinite;
}
@keyframes icon-float {
  0%, 100% { transform: translateY(10px); }
  50%      { transform: translateY(-16px); }
}
.hero-art-main::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 30% at 50% 42%, rgba(var(--gold-rgb),0.18), transparent 72%),
    linear-gradient(180deg, transparent 55%, rgba(10,2,5,0.42));
}
.hero-art-tag {
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2;
  background: rgba(var(--beige-rgb),0.85); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-rgb),0.4); border-radius: 999px;
  padding: 0.5rem 1.05rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--burgundy); display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-art-tag::before { content: "✦"; color: var(--gold-mute); }

.hero-card {
  position: absolute; z-index: 3;
  background: rgba(var(--white-rgb),0.86); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--gold-rgb),0.35); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.85rem;
  animation: floaty 7s ease-in-out infinite;
}
.hero-card .hc-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  color: var(--burgundy); background: linear-gradient(135deg, var(--gold-tint), var(--ivory-deep));
  border: 1px solid var(--gold-line); flex: none;
}
.hero-card strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--espresso); }
.hero-card span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.01em; }
.hero-card--a { bottom: 10%; left: -6%; animation-delay: -2s; }
.hero-card--b { top: 12%; right: -6%; animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-11px) } }

/* ---------- Feature cards — quiet luxury editorial ----------
   Markup is fixed: .trust-item > (.trust-ic + h4 + p). Styling only. */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.55rem);
  align-items: stretch;
}
.trust-item {
  --tq-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-width: 0;
  padding:
    clamp(1.75rem, 2.4vw, 2.15rem)
    clamp(1.5rem, 2vw, 1.85rem)
    clamp(1.8rem, 2.4vw, 2.15rem);
  background:
    radial-gradient(90% 70% at 88% -12%, rgba(var(--gold-rgb), 0.07), transparent 58%),
    radial-gradient(80% 65% at 0% 112%, rgba(var(--burgundy-rgb), 0.05), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: var(--r-md);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.9),
    0 1px 2px rgba(var(--deep-rgb), 0.04),
    0 10px 26px -16px rgba(var(--deep-rgb), 0.14),
    0 28px 52px -34px rgba(var(--deep-rgb), 0.1);
}
/* Fast, expensive easing once revealed (outranks .reveal's transition) */
.trust-item.reveal.in {
  transition:
    transform 0.45s var(--tq-ease),
    box-shadow 0.45s var(--tq-ease),
    border-color 0.35s ease,
    opacity 0.6s ease,
    background var(--tr);
}
/* Refined hover lift — also on keyboard focus. High-specificity forms
   outrank `.reveal.in { transform:none }` later in the stylesheet. */
.trust-item.reveal.in:hover,
.trust-item.reveal.in:focus-within {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), 0.45);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.95),
    0 2px 5px -2px rgba(var(--deep-rgb), 0.05),
    0 18px 36px -18px rgba(var(--deep-rgb), 0.2),
    0 42px 72px -38px rgba(var(--deep-rgb), 0.16),
    0 0 26px -12px rgba(var(--gold-rgb), 0.35);
}
/* Hairline gold sheen along the top edge on hover */
.trust-item::after {
  content: "";
  position: absolute; top: -1px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.6), transparent);
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}
.trust-item.reveal.in:hover::after,
.trust-item.reveal.in:focus-within::after { opacity: 1; }

/* Icon container — champagne plaque */
.trust-ic {
  width: 54px; height: 54px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--burgundy);
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(var(--white-rgb), 0.9), transparent 62%),
    linear-gradient(150deg, rgba(var(--gold-rgb), 0.2), rgba(var(--gold-rgb), 0.05)),
    var(--ivory-deep);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.85),
    0 6px 14px -8px rgba(var(--deep-rgb), 0.22);
  margin-bottom: 1.3rem;
  transition:
    transform 0.45s var(--tq-ease),
    box-shadow 0.45s var(--tq-ease),
    border-color var(--tr);
}
.trust-item.reveal.in:hover .trust-ic,
.trust-item.reveal.in:focus-within .trust-ic {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.55);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.9),
    0 10px 18px -8px rgba(var(--deep-rgb), 0.24),
    0 0 18px -6px rgba(var(--gold-rgb), 0.5);
}

.trust-item h4 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.14rem, 1.5vw, 1.24rem);
  letter-spacing: 0.01em;
  color: var(--burgundy-deep);
}
.trust-item p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.93rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

/* ---------- Contact — luxury concierge ----------
   Scoped to #contact so the four-feature trust grid keeps its stationery
   look; shared markup (.trust-item/.trust-ic/.btn--ghost) unchanged. */
#contact.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* Serif headline — deep burgundy with a subtle metallic gold halo */
#contact .section-head h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  text-shadow:
    0 1px 0 rgba(var(--white-rgb), 0.75),
    0 4px 16px rgba(var(--gold-rgb), 0.32),
    0 12px 34px rgba(var(--burgundy-rgb), 0.14);
}
/* Refined slate subheading */
#contact .section-head p {
  color: #78716C;
  letter-spacing: 0.01em;
}

/* Full-width stage — container breathes across the screen */
#contact .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
/* Expanded three-up grid. The inline max-width:760px baked into this
   element's markup can only be beaten with !important — sanctioned,
   single use; no other override in this stylesheet relies on one. */
#contact .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  max-width: none !important;
}

/* Frosted concierge cards — full column fill, centered composition */
#contact .trust-item {
  width: 100%;
  min-height: 280px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 36px 32px;
  background: rgba(var(--white-rgb), 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(var(--burgundy-rgb), 0.06);
}
#contact .trust-item.reveal.in {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    opacity 0.6s ease;
}
/* Smooth concierge elevation — wide gold glow lift
   (outranks .reveal.in { transform:none }) */
#contact .trust-item.reveal.in:hover,
#contact .trust-item.reveal.in:focus-within {
  transform: translateY(-8px) scale(1.01);
  background-color: rgba(var(--white-rgb), 0.94);
  border-color: rgba(var(--gold-rgb), 0.6);
  box-shadow:
    0 25px 50px rgba(var(--burgundy-rgb), 0.12),
    0 0 32px -10px rgba(var(--gold-rgb), 0.35);
}

/* Glowing metallic icon badges */
#contact .trust-ic {
  width: 58px; height: 58px;
  border-radius: 18px;
  color: var(--burgundy);
  background: linear-gradient(135deg, #FFF9E6 0%, #F5E6C8 100%);
  border: 1px solid var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.9),
    0 10px 20px -10px rgba(var(--gold-rgb), 0.5);
}
#contact .trust-item.reveal.in:hover .trust-ic,
#contact .trust-item.reveal.in:focus-within .trust-ic {
  transform: translateY(-2px);
  animation: iconPulse 1.8s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(var(--white-rgb), 0.9),
      0 10px 20px -10px rgba(var(--gold-rgb), 0.5),
      0 0 0 0 rgba(var(--gold-rgb), 0.32);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(var(--white-rgb), 0.9),
      0 10px 20px -10px rgba(var(--gold-rgb), 0.5),
      0 0 0 10px rgba(var(--gold-rgb), 0);
  }
}

/* Sleek pill actions that invert to liquid gold */
#contact .btn--ghost {
  border-radius: 50px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#contact .trust-item:hover .btn--ghost:not(.is-disabled),
#contact .btn--ghost:not(.is-disabled):hover,
#contact .btn--ghost:not(.is-disabled):focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #2A0910;
  box-shadow: 0 12px 26px -12px rgba(var(--gold-rgb), 0.6);
}
#contact .btn--ghost:focus-visible { outline: none; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(2.2rem, 4.5vw, 3.4rem); }
.section-head .kicker {
  color: var(--gold-mute); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.8rem;
}
.section-head .kicker::before, .section-head .kicker::after {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-head .kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--charcoal); margin-top: 0.4rem; font-size: 1.02rem; }

/* Section variety */
#services {
  position: relative;
  background:
    radial-gradient(42% 36% at 86% -2%, rgba(var(--gold-rgb),0.16), transparent 62%),
    radial-gradient(38% 32% at 6% 102%, rgba(var(--burgundy-rgb),0.09), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  border-top: 1px solid var(--gold-line);
}
#how-it-works {
  position: relative;
  background:
    radial-gradient(46% 42% at 84% 4%, rgba(var(--gold-rgb),0.14), transparent 62%),
    radial-gradient(42% 46% at 8% 94%, rgba(var(--burgundy-rgb),0.08), transparent 62%),
    radial-gradient(54% 58% at 50% -20%, rgba(var(--gold-rgb),0.13), transparent 60%),
    var(--ivory-2);
  border-top: 1px solid var(--gold-line);
}
#contact {
  position: relative;
  background:
    radial-gradient(46% 40% at 50% 66%, rgba(var(--gold-rgb), 0.12), transparent 65%),
    radial-gradient(34% 30% at 88% 4%, rgba(var(--gold-rgb), 0.08), transparent 62%),
    linear-gradient(180deg, var(--ivory), var(--white));
  border-bottom: 1px solid var(--gold-line);
}

/* ============================================================
   Service cards — luxury editorial
   Structure is rendered by app.js and must not change:
   .svc-card > .svc-media + .svc-body > (.svc-cat, .svc-name,
   .svc-desc, .svc-meta, .svc-actions, .svc-check)
   ============================================================ */
.svc-section { margin-bottom: clamp(2.6rem, 5vw, 3.75rem); }
.svc-section-title {
  display: flex; align-items: center; gap: 1rem; color: var(--burgundy-deep);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}
.svc-section-title::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-mute));
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.18);
}
.svc-section-title::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

/* Grid stretches every card to the row height — equal heights for free */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.6rem;
  margin-top: 1.75rem;
  align-items: stretch;
}

/* ---------- Card shell ---------- */
.svc-card {
  --svc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --svc-lift: transform 0.45s var(--svc-ease), box-shadow 0.45s var(--svc-ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 74%, var(--ivory-deep) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: var(--r-lg);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.85),
    0 2px 6px -2px rgba(var(--deep-rgb), 0.06),
    0 14px 34px -18px rgba(var(--deep-rgb), 0.16),
    0 34px 64px -36px rgba(var(--deep-rgb), 0.12);
}
/* Entrance uses .reveal's own timing; once revealed, hover gets the fast,
   expensive easing below (higher specificity than .reveal / .reveal.in). */
.svc-card.reveal.in {
  transition:
    var(--svc-lift),
    border-color 0.35s ease,
    opacity 0.6s ease,
    background var(--tr);
}
/* Subtle lift on hover AND keyboard focus — never rotated, never scaled.
   .reveal.in:hover/:focus-within outrank `.reveal.in { transform:none }`
   later in the file tail. */
.svc-card:hover,
.svc-card.reveal.in:hover,
.svc-card.reveal.in:focus-within {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.48);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.9),
    0 3px 8px -3px rgba(var(--deep-rgb), 0.07),
    0 24px 44px -20px rgba(var(--deep-rgb), 0.22),
    0 46px 90px -40px rgba(var(--deep-rgb), 0.2),
    0 0 30px -12px rgba(var(--gold-rgb), 0.38);
}
/* Gilded top edge — brightens as the card lifts */
.svc-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 4%, rgba(var(--gold-rgb), 0.55) 50%, transparent 96%);
  opacity: 0.35;
  transition: opacity var(--tr);
}
.svc-card.reveal.in:hover::after,
.svc-card.reveal.in:focus-within::after { opacity: 0.95; }

.svc-card.is-selected {
  border-color: var(--gold);
  box-shadow:
    var(--ring),
    inset 0 1px 0 rgba(var(--white-rgb), 0.85),
    0 14px 34px -18px rgba(var(--deep-rgb), 0.18),
    0 34px 64px -36px rgba(var(--deep-rgb), 0.14);
}
.svc-card.is-selected::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-lg);
  border: 1px solid var(--gold); pointer-events: none; z-index: 3;
}

/* ---------- Photographic service header ---------- */
.svc-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(150deg, var(--burgundy-light), var(--burgundy) 48%, var(--burgundy-deep));
  transform: translateZ(0);
}
/* Keep real content above the decorative pattern layer */
.svc-media img,
.svc-media div.svc-img { position: relative; z-index: 1; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.001);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .svc-card:hover .svc-media img,
  .svc-card:focus-within .svc-media img { transform: scale(1.08); }
}
/* Whisper-faint damask dot weave, fading downward */
.svc-media::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(var(--gold-rgb), 0.35) 1px, transparent 1.4px);
  background-size: 17px 17px;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 72%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 72%);
}
/* Dark luxury gradient - keeps body text contrast crisp under the photo */
.svc-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(45, 10, 19, 0.6) 100%);
}

/* Art tile (used when a service has no photo) */
.svc-img {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.95rem;
  padding: 1.5rem 1.25rem;
  color: var(--white);
  text-align: center;
}
/* Luxury emblem — champagne ring around the existing icon */
.art-icon {
  width: 76px; height: 76px; padding: 16px;
  border-radius: 50%;
  color: var(--gold-soft);
  background:
    radial-gradient(circle at 32% 26%, rgba(var(--gold-rgb), 0.4), rgba(var(--gold-rgb), 0.1) 55%, transparent 78%),
    linear-gradient(160deg, rgba(var(--deep-rgb), 0.55), rgba(var(--deep-rgb), 0.2));
  border: 1px solid rgba(var(--gold-rgb), 0.55);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.28),
    0 12px 26px -10px rgba(0, 0, 0, 0.55),
    0 0 24px -6px rgba(var(--gold-rgb), 0.5);
  transition: transform 0.45s var(--svc-ease), box-shadow 0.45s var(--svc-ease), border-color var(--tr);
}
.svc-card:hover .art-icon,
.svc-card:focus-within .art-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(var(--gold-rgb), 0.8);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.32),
    0 16px 30px -10px rgba(0, 0, 0, 0.55),
    0 0 34px -6px rgba(var(--gold-rgb), 0.65);
}
.svc-img-label {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(var(--beige-rgb), 0.92);
}
.svc-img--nail   { background: radial-gradient(120% 90% at 18% -12%, rgba(var(--gold-rgb), 0.2), transparent 55%), linear-gradient(150deg, #782234, #5C1928 52%, #3A101A); }
.svc-img--thread { background: radial-gradient(120% 90% at 18% -12%, rgba(var(--gold-rgb), 0.18), transparent 55%), linear-gradient(150deg, #6B1D2F, #4E1524 52%, #2E0C15); }
.svc-img--wax    { background: radial-gradient(120% 90% at 18% -12%, rgba(var(--gold-rgb), 0.2), transparent 55%), linear-gradient(150deg, #7A2338, #541723 52%, #38101A); }
.svc-img--spa    { background: radial-gradient(120% 90% at 18% -12%, rgba(var(--gold-rgb), 0.18), transparent 55%), linear-gradient(160deg, #701F31, #481320 52%, #330E18); }

/* Fluid photo headers on small screens - true 16:9, never cropped or squished */
@media (max-width: 768px) {
  .svc-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .svc-media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
}

/* ---------- Premium stationery body ----------
   desc grows → meta & actions pin to the bottom of EVERY card,
   so all CTAs share one vertical line across the row. */
.svc-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(1.35rem, 2vw, 1.65rem) clamp(1.35rem, 2vw, 1.65rem) clamp(1.4rem, 2vw, 1.7rem);
  background:
    radial-gradient(130% 56% at 50% -6%, rgba(var(--gold-rgb), 0.08), transparent 62%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 82%);
}
.svc-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.35rem, 2vw, 1.65rem);
  right: clamp(1.35rem, 2vw, 1.65rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.5), transparent);
}
.svc-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.svc-cat::before {
  content: "";
  width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.svc-name {
  font-size: clamp(1.32rem, 1.9vw, 1.58rem);
  margin: 0 0 0.45rem;
  line-height: 1.16;
  letter-spacing: 0.005em;
  overflow-wrap: break-word;
}
.svc-desc {
  color: var(--charcoal);
  font-size: 0.93rem;
  line-height: 1.68;
  margin-bottom: 1.2rem;
  flex: 1 1 auto;
  overflow-wrap: break-word;
}

/* Price + duration share one baseline row */
.svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  margin-top: auto;
  margin-bottom: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.svc-price {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 0.34rem 1rem;
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-serif); font-size: 1.16rem; font-weight: 700;
  color: var(--burgundy-deep); letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 58%, var(--gold-mute) 115%);
  border: 1px solid rgba(var(--gold-rgb), 0.55);
  text-shadow: 0 1px 0 rgba(var(--white-rgb), 0.4);
  box-shadow:
    0 5px 14px -5px rgba(var(--gold-rgb), 0.55),
    inset 0 1px 0 rgba(var(--white-rgb), 0.65),
    inset 0 -1px 0 rgba(var(--deep-rgb), 0.12);
}
.svc-price::after {
  content: "";
  position: absolute; top: -40%; bottom: -40%; left: -30%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(var(--white-rgb), 0.5), transparent);
  transform: rotate(18deg);
  pointer-events: none;
}
.svc-dur {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--charcoal); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: none;
}
.svc-dur svg { color: var(--gold-mute); flex: none; }

/* ---------- CTA section — always inside the card ----------
   Single-column grid: buttons can never squeeze, wrap or clip,
   no matter how narrow the card or long the label. */
.svc-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.svc-actions .btn {
  width: 100%;
  padding: 0.7rem 1.15rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 12px;
}
.svc-actions .btn--primary {
  color: var(--ivory);
  background:
    radial-gradient(120% 150% at 50% -30%, rgba(var(--gold-rgb), 0.18), transparent 50%),
    linear-gradient(165deg, var(--burgundy-light) 0%, var(--burgundy) 46%, var(--burgundy-deep) 100%);
  border-color: rgba(var(--gold-rgb), 0.32);
  box-shadow:
    0 10px 22px -10px rgba(var(--burgundy-rgb), 0.55),
    inset 0 1px 0 rgba(var(--white-rgb), 0.18),
    inset 0 0 0 1px rgba(var(--deep-rgb), 0.2);
}
.svc-actions .btn--primary:hover,
.svc-actions .btn--primary:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(var(--gold-rgb), 0.55);
  filter: brightness(1.06);
  box-shadow:
    0 14px 26px -10px rgba(var(--burgundy-rgb), 0.6),
    0 0 18px -6px rgba(var(--gold-rgb), 0.4),
    inset 0 1px 0 rgba(var(--white-rgb), 0.22),
    inset 0 0 0 1px rgba(var(--deep-rgb), 0.2);
}
.svc-actions .btn--primary.is-selected {
  background: linear-gradient(165deg, #3A9168, var(--ok));
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow:
    0 10px 22px -10px rgba(47, 125, 91, 0.5),
    inset 0 1px 0 rgba(var(--white-rgb), 0.22);
}
.svc-actions .btn--primary.is-selected:hover {
  color: var(--ivory);
  filter: brightness(1.05);
  border-color: rgba(var(--gold-rgb), 0.45);
  box-shadow:
    0 14px 26px -10px rgba(47, 125, 91, 0.55),
    inset 0 1px 0 rgba(var(--white-rgb), 0.25);
}
.svc-actions .btn--ghost {
  background: rgba(var(--white-rgb), 0.55);
  color: var(--burgundy);
  border-color: var(--gold-line);
  box-shadow: inset 0 1px 0 rgba(var(--white-rgb), 0.65);
}
.svc-actions .btn--ghost:hover,
.svc-actions .btn--ghost:focus-visible {
  background: linear-gradient(165deg, var(--burgundy-light), var(--burgundy) 60%, var(--burgundy-deep));
  color: var(--gold-soft);
  border-color: rgba(var(--gold-rgb), 0.55);
  box-shadow:
    0 10px 20px -10px rgba(var(--burgundy-rgb), 0.45),
    inset 0 1px 0 rgba(var(--white-rgb), 0.16);
}

.svc-check {
  position: absolute; top: 1.05rem; right: 1.05rem; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 70%, var(--gold-mute));
  color: var(--burgundy-deep);
  border: 1px solid rgba(var(--white-rgb), 0.55);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(var(--deep-rgb), 0.35), inset 0 1px 0 rgba(var(--white-rgb), 0.55);
  opacity: 0; transform: scale(0.4); transition: all var(--tr);
}
.svc-card.is-selected .svc-check { opacity: 1; transform: scale(1); }

/* Service modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(var(--slate-rgb),0.55); backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; transition: opacity var(--tr);
}
.modal-backdrop.modal-open { opacity: 1; }
.modal {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: calc(var(--r-xl));
  max-width: 560px; width: 100%;
  max-height: min(88vh, 900px); overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(22px) scale(0.97);
  transition: transform var(--tr);
}
.modal-backdrop.modal-open .modal { transform: translateY(0) scale(1); }
.modal--pay { max-width: 700px; }
.modal--svc { max-width: 640px; }
.modal--admin { max-width: 840px; }

.modal-close {
  position: sticky; top: 1rem; float: right; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-line);
  background: var(--white); color: var(--burgundy);
  font-size: 1.4rem; line-height: 1; cursor: pointer; margin-right: 1rem;
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  transition: background var(--tr), transform var(--tr), border-color var(--tr);
}
.modal-close:hover { background: var(--gold-tint); border-color: var(--gold); transform: rotate(90deg); }
.modal-body { padding: 1rem 1.9rem 2rem; }

.svc-media--lg { aspect-ratio: 16 / 8; border-radius: var(--r-md); margin-bottom: 1.25rem; }
.svc-modal-inner h2 { margin-bottom: 0.35rem; font-size: clamp(1.7rem, 3vw, 2.1rem); }
.svc-modal-inner .svc-cat { margin-bottom: 0.4rem; }
.svc-modal-inner .svc-meta { justify-content: flex-start; border-top: 1px solid var(--line); padding-top: 1rem; margin: 1rem 0 0; }
.svc-full { color: var(--charcoal); line-height: 1.75; }
.svc-included {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.2rem 1.4rem; margin: 1.2rem 0;
}
.svc-included h4 {
  font-family: var(--font-sans); font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-mute); margin-bottom: 0.6rem;
}
.svc-included ul { margin: 0; padding-left: 1.2rem; color: var(--charcoal); font-size: 0.94rem; }
.svc-included li { margin: 0.35rem 0; }
.svc-included li::marker { color: var(--gold-mute); }
.svc-at { font-size: 0.88rem; color: var(--muted); font-style: italic; }
.svc-modal-inner .btn--block { margin-top: 1.3rem; }

/* ---------- Selection floating bar ---------- */
.selection-bar {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 120%);
  z-index: 40;
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 45%, var(--burgundy-deep));
  color: var(--ivory);
  border: 1px solid rgba(var(--gold-rgb),0.35);
  border-radius: 999px; padding: 0.8rem 0.9rem 0.8rem 1.6rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(var(--white-rgb),0.16);
  display: flex; align-items: center; gap: 1.1rem;
  transition: transform var(--tr-slow); white-space: nowrap;
}
.selection-bar.is-visible { transform: translate(-50%, 0); }
.selection-bar .sel-count {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.selection-bar [data-sel-count] { font-weight: 700; }
.selection-bar .btn { flex: none; border-radius: 999px; }

/* ---------- How it works — connected gold timeline ----------
   Markup is fixed: #how-it-works > .section-head + .how-grid >
   4 x .how-step (counter-rendered numerals via ::before). CSS only. */

/* Gold metallic eyebrow */
#how-it-works .kicker {
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 700;
}
/* Serif headline — deep burgundy with a soft halo */
#how-it-works .section-head h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  text-shadow:
    0 1px 1px rgba(var(--deep-rgb), 0.06),
    0 4px 22px rgba(var(--burgundy-rgb), 0.16);
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.5rem);
  counter-reset: how;
}
/* Continuous track running behind the frosted panels — ghosts through
   the glass and shows cleanly in the gaps between steps. */
.how-grid::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.4) 18% 82%, transparent);
  pointer-events: none;
}

.how-step {
  --hw-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  padding: 1.9rem 1.7rem 2rem;
  background-color: rgba(var(--white-rgb), 0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 24px;
  box-shadow:
    0 15px 35px rgba(var(--burgundy-rgb), 0.05),
    inset 0 1px 0 rgba(var(--white-rgb), 0.85),
    0 2px 6px -2px rgba(var(--deep-rgb), 0.04);
}
.how-step.reveal.in {
  transition:
    transform 0.6s var(--hw-ease),
    box-shadow 0.6s var(--hw-ease),
    background-color 0.45s ease,
    border-color 0.45s ease,
    opacity 0.6s ease;
}
/* Liquid-smooth elevation on hover (high specificity outranks .reveal.in) */
.how-step.reveal.in:hover {
  transform: translateY(-12px) scale(1.02);
  background-color: rgba(var(--white-rgb), 0.94);
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow:
    0 24px 48px -14px rgba(var(--burgundy-rgb), 0.12),
    0 36px 72px -28px rgba(var(--deep-rgb), 0.16),
    0 0 30px -10px rgba(var(--gold-rgb), 0.4),
    inset 0 1px 0 rgba(var(--white-rgb), 0.95);
}

/* Watermark numeral — massive metallic gold ghost, top-right */
.how-step::before {
  counter-increment: how;
  content: "0" counter(how);
  position: absolute; top: 12px; right: 20px;
  z-index: 0;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(var(--gold-rgb), 0.18);
  pointer-events: none;
  transition: color 0.45s ease, text-shadow 0.6s var(--hw-ease);
}
.how-step.reveal.in:hover::before {
  color: rgba(var(--gold-rgb), 0.42);
  text-shadow: 0 0 18px rgba(var(--gold-rgb), 0.45);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .how-step::before {
    background: linear-gradient(165deg,
      rgba(var(--white-rgb), 0.55) 0%,
      rgba(var(--gold-rgb), 0.34) 38%,
      rgba(var(--gold-rgb), 0.15) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: filter 0.6s var(--hw-ease);
  }
  /* Illuminate the watermark on hover */
  .how-step.reveal.in:hover::before {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(165deg,
      rgba(var(--white-rgb), 0.7) 0%,
      rgba(var(--gold-rgb), 0.62) 42%,
      rgba(var(--gold-rgb), 0.34) 100%);
    filter: drop-shadow(0 0 14px rgba(var(--gold-rgb), 0.55));
  }
}

/* Expanding gold top accent bar (layout-shift free) */
.how-step::after {
  content: "";
  position: absolute; top: -1px; left: 26px; right: 26px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(var(--gold-rgb), 0),
    var(--gold) 22% 78%,
    rgba(var(--gold-rgb), 0));
  box-shadow: 0 2px 10px rgba(var(--gold-rgb), 0.45);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.6s var(--hw-ease),
    opacity 0.45s ease;
  pointer-events: none;
}
.how-step.reveal.in:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.how-step h4 {
  position: relative; z-index: 1;
  margin-bottom: 0.45rem;
  font-size: clamp(1.16rem, 1.6vw, 1.26rem);
  letter-spacing: 0.005em;
  color: var(--burgundy-deep);
}
.how-step p {
  position: relative; z-index: 1;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ---------- CTA strip — 3D luxury banner ----------
   Markup is fixed: .cta-strip > (.kicker + h2 + p + .btn--gold). CSS only. */
.cta-strip {
  position: relative; overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 50% 0%, #7A2236 0%, #4A121F 60%, #2A0910 100%);
  color: var(--ivory);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 36px;
  box-shadow:
    0 25px 60px rgba(42, 9, 16, 0.4),
    0 0 44px -14px rgba(var(--gold-rgb), 0.28),
    inset 0 1px 0 rgba(var(--white-rgb), 0.08);
  padding: clamp(2.8rem, 5vw, 4.2rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}
/* Micro dot weave */
.cta-strip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(var(--gold-rgb),0.12) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.35;
}
/* Centered spa-drop watermark for spatial depth */
.cta-strip::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 320px; height: 320px;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 12c14 20 21 36 21 51 0 27-21 27-21 27S29 90 29 63C29 48 36 32 50 12Z' fill='none' stroke='%23D4AF37' stroke-width='1.4'/%3E%3Cpath d='M50 26c10 15 15 27 15 39 0 20-15 22-15 22s-15-2-15-22C35 53 40 41 50 26Z' fill='%23D4AF37' fill-opacity='0.5'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.05;
  transform: translate(-50%, -50%) scale(2);
  pointer-events: none;
}
.cta-strip > * { position: relative; }

/* Eyebrow — metallic gold, tracked wide */
.cta-strip .kicker {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase;
}
.cta-strip .kicker::before,
.cta-strip .kicker::after {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.8));
}
.cta-strip .kicker::after {
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.8), transparent);
}

/* Headline — soft white-to-rose gradient fill */
.cta-strip h2 { color: var(--ivory); margin-bottom: 0.5rem; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .cta-strip h2 {
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FECDD3 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 26px rgba(254, 205, 211, 0.16));
  }
  /* Metallic sheen on the eyebrow glyphs (beats the inline color gracefully) */
  .cta-strip .kicker {
    background-image: linear-gradient(120deg, #BF953F 0%, #FCF6BA 45%, #D4AF37 70%, #BF953F 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.cta-strip p { color: rgba(var(--beige-rgb),0.85); max-width: 34em; margin: 0 auto 1.8rem; }

/* Liquid-gold CTA with expanding aura pulse */
.cta-strip .btn--gold {
  position: relative; z-index: 0;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  color: #2A0910;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
  border-color: rgba(var(--white-rgb), 0.4);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.65),
    0 12px 30px -10px rgba(var(--gold-rgb), 0.5),
    0 0 0 1px rgba(var(--gold-rgb), 0.25);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}
.cta-strip .btn--gold::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.45), 0 0 22px rgba(var(--gold-rgb), 0.25);
  animation: goldPulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}
@keyframes goldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.45),  0 0 22px rgba(var(--gold-rgb), 0.25); opacity: 1; }
  70%  { box-shadow: 0 0 0 18px rgba(var(--gold-rgb), 0),  0 0 22px rgba(var(--gold-rgb), 0.25); opacity: 0.8; }
  100% { box-shadow: 0 0 0 18px rgba(var(--gold-rgb), 0),  0 0 22px rgba(var(--gold-rgb), 0.25); opacity: 0; }
}
.cta-strip .btn--gold:hover,
.cta-strip .btn--gold:focus-visible {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(var(--white-rgb), 0.75),
    0 18px 38px -12px rgba(var(--gold-rgb), 0.6),
    0 0 0 1px rgba(var(--gold-rgb), 0.4);
}
.cta-strip .btn--gold:focus-visible { outline: none; }
.cta-strip .btn--gold:active { transform: translateY(-1px) scale(1.02); }

/* ---------- Footer — architectural night ----------
   Markup fixed: .footer > .container > .footer-grid (brand col w/
   .logo/.logo-mark + tagline p, three link cols w/ h5 + a) + .footer-bottom. */
.footer {
  background: linear-gradient(180deg, #2D0A13 0%, #1A050B 100%);
  border-top: 1px solid rgba(var(--gold-rgb), 0.25);
  color: var(--beige);
  padding: 0; margin-top: 3.5rem;
}
/* Elevated spatial container */
.footer .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px 40px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.6rem; }

/* Architectural branding — gold leaf floats natively (card shell in the
   inline SVG is neutralised), haloed by an ambient backglow */
.footer .logo { color: var(--gold); font-size: 28px; letter-spacing: 4px; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer .logo span:last-child {
    background-image: linear-gradient(120deg, #BF953F 0%, #FCF6BA 45%, #D4AF37 72%, #BF953F 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(var(--gold-rgb), 0.25));
  }
}
.footer .logo:hover { letter-spacing: 5px; }
.footer .logo-mark { filter: drop-shadow(0 0 15px rgba(var(--gold-rgb), 0.3)); }
.footer .logo-mark svg rect { fill: transparent; }
.footer p { color: #A8A29E; font-size: 0.92rem; line-height: 1.75; }

/* Column eyebrows — metallic gold */
.footer h5 {
  color: var(--gold);
  font-family: var(--font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
/* Navigation links — cream-gray with liquid horizontal slide */
.footer a {
  display: block; width: fit-content;
  padding: 0.1rem 0;
  font-size: 14px; line-height: 2.2;
  color: #E7E5E4;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease,
    text-shadow 0.35s ease;
}
.footer a:hover,
.footer a:focus-visible {
  transform: translateX(6px);
  color: var(--gold);
  text-shadow: 0 0 18px rgba(var(--gold-rgb), 0.45);
}

/* Bottom bar — hairline separator, muted split layout */
.footer-bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid rgba(var(--white-rgb), 0.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: 13px; color: #78716C;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(150deg, #35D37A, #1DA851);
  color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(var(--white-rgb),0.4);
  box-shadow: 0 12px 28px rgba(29, 168, 81, 0.45), inset 0 1px 0 rgba(var(--white-rgb),0.4);
  opacity: 0; transform: scale(0.6); transition: all var(--tr);
}
.wa-fab.is-ready { opacity: 1; transform: scale(1); }
.wa-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 34px rgba(29, 168, 81, 0.5); }
.wa-fab svg { width: 28px; height: 28px; }

/* ---------- Booking · Step 1 floating "Continue" bar ----------
   Slides up from the bottom of the screen only while the user is on
   Step 1 (Choose Service) AND at least one service is selected. */
.bk-continue-bar {
  position: fixed;
  left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, 150%);
  z-index: 55;
  width: min(430px, calc(100vw - 1.5rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.bk-continue-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.bk-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(92, 25, 40, 0.55);
}
.bk-continue-btn svg { transition: transform var(--tr); }
.bk-continue-btn:hover svg { transform: translateX(3px); }
.bk-continue-count { font-weight: 600; opacity: 0.85; }
/* While the bar is shown, lift the WhatsApp FAB so nothing important is covered */
.bk-continue-bar.is-visible ~ .wa-fab {
  bottom: calc(5.4rem + env(safe-area-inset-bottom, 0px));
}

/* ---------- Auth pages ---------- */
.auth-page {
  min-height: calc(100vh - 220px);
  display: grid; place-items: center; padding: 3.5rem 1.25rem;
  position: relative;
}
.auth-page::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 42% at 100% 0%, rgba(var(--gold-rgb),0.18), transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(var(--burgundy-rgb),0.09), transparent 58%);
}
.auth-card {
  position: relative;
  width: min(440px, 100%); background: var(--white);
  border: 1px solid var(--gold-line); border-radius: calc(var(--r-xl));
  box-shadow: var(--shadow-lg);
  padding: 2.6rem 2.3rem 2.3rem;
}
.auth-card::before {
  content: ""; position: absolute; top: 0; left: 2.3rem; right: 2.3rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.auth-card--wide { width: min(540px, 100%); }
.auth-head { text-align: center; margin-bottom: 1.9rem; }
.auth-head .logo { justify-content: center; margin-bottom: 1.1rem; }
.auth-head h1 { font-size: 2.1rem; margin-bottom: 0.3rem; }
.auth-head p { color: var(--muted); font-size: 0.94rem; }

.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--ivory);
  color: var(--espresso);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr), transform var(--tr);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(var(--muted-rgb),0.65); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.2), var(--shadow-xs);
  transform: translateY(-1px);
}
.field input:disabled, .field select:disabled { background: var(--ivory-deep); color: var(--muted); }
.field textarea { resize: vertical; min-height: 92px; line-height: 1.6; }
.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }

.form-error { color: var(--danger); font-size: 0.85rem; min-height: 1.2em; margin: 0.4rem 0; }
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; margin: 0.2rem 0 1.3rem; }
.auth-row a, .auth-alt a { color: var(--burgundy); font-weight: 600; position: relative; }
.auth-alt { text-align: center; margin-top: 1.5rem; font-size: 0.93rem; color: var(--muted); }

.auth-sent { display: none; text-align: center; padding: 1rem 0; }
.auth-sent.is-visible { display: block; }
.auth-sent .confirm-icon { margin-bottom: 0.9rem; }
.form.is-hidden { display: none; }

/* ---------- Google sign-in ---------- */
.auth-divider {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 1.5rem 0 1.15rem;
  color: rgba(var(--muted-rgb),0.85);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.auth-divider::before { background: linear-gradient(90deg, transparent, var(--line)); }
.auth-divider::after { background: linear-gradient(90deg, var(--line), transparent); }

.btn-google {
  --btn-bg: var(--white);
  --btn-fg: #3C4043;
  background: var(--white);
  color: #3C4043;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(var(--white-rgb),0.7);
  letter-spacing: 0.015em;
}
.btn-google:hover {
  background: linear-gradient(160deg, var(--ivory), var(--white));
  border-color: var(--gold-line);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(var(--white-rgb),0.8);
}
.btn-google:focus-visible { outline: none; box-shadow: var(--ring), inset 0 1px 0 rgba(var(--white-rgb),0.7); }
.g-ico { flex: none; filter: drop-shadow(0 1px 1px rgba(var(--deep-rgb),0.08)); }

/* ---------- Booking page ---------- */
.booking-layout { display: grid; grid-template-columns: 1fr; gap: 2.2rem; align-items: start; }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.12; margin-bottom: 0.35rem; }

.progress-bar { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 2.2rem; }
.step { display: flex; align-items: center; gap: 0.55rem; flex: 1; }
.step-num {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.82rem; font-weight: 600;
  background: var(--white); color: var(--muted); border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}
.step-label { font-size: 0.85rem; color: var(--muted); white-space: nowrap; transition: color var(--tr); }
.step:not(:last-child)::after {
  content: ""; flex: 1; height: 1px; margin: 0 0.5rem;
  background: linear-gradient(90deg, var(--gold-line), var(--line));
}
.step.is-current .step-num {
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 55%, var(--burgundy-deep));
  border-color: var(--burgundy); color: var(--ivory);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.25), var(--shadow-sm);
}
.step.is-current .step-label { color: var(--burgundy); font-weight: 600; }
.step.is-done .step-num {
  background: var(--gold-tint); border-color: var(--gold); color: var(--burgundy-deep);
}
.step.is-done .step-label { color: var(--gold-mute); }

.booking-panel { display: none; }
.booking-panel.is-current { display: block; animation: fadeUp 0.5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.panel-card {
  background: var(--white); border: 1px solid var(--gold-line); border-radius: calc(var(--r-xl));
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.2rem 2.4rem;
}
.panel-card h2 { margin-bottom: 0.35rem; }
.panel-card > p { color: var(--muted); }

.step-nav {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.step-nav .btn { min-width: 150px; }

.date-picker { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.7rem; }
.date-picker input[type="date"] {
  padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--ivory); font-size: 0.95rem; color: var(--espresso);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
.date-picker input[type="date"]:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.2);
}
.date-picker input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; }

.appt-pick {
  display: flex; align-items: flex-end; gap: 0.9rem; flex-wrap: wrap;
  margin: 0.35rem 0 0.9rem;
}
.time-field {
  display: flex; flex-direction: column; gap: 0.35rem;
  flex: 1 1 0; min-width: 150px;
}
.time-field > span:first-child {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.time-select { position: relative; display: block; }
.time-select select {
  width: 100%; padding: 0.8rem 2.3rem 0.8rem 1rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--ivory) no-repeat; color: var(--espresso);
  font-size: 0.98rem; font-weight: 600; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
.time-select select:hover { border-color: var(--gold); }
.time-select select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.2);
}
.time-select::after {
  content: ""; position: absolute; right: 0.95rem; top: 50%;
  width: 9px; height: 9px; transform: translateY(-65%) rotate(45deg);
  border-right: 1.6px solid var(--gold-mute); border-bottom: 1.6px solid var(--gold-mute);
  pointer-events: none;
}
.time-arrow { color: var(--gold-mute); font-size: 1.15rem; padding-bottom: 0.85rem; line-height: 1; }
.appt-duration { font-weight: 600; color: var(--burgundy); margin: 0.35rem 0 0.35rem; }
.appt-check { font-size: 0.9rem; margin: 0.2rem 0 0.4rem; color: var(--ok); }
.appt-check--err { color: var(--danger); }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 0.7rem; }
.slot {
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); cursor: pointer; font-size: 0.92rem; font-weight: 500;
  color: var(--espresso); box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}
.slot:hover { border-color: var(--gold); background: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.slot.is-active {
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 55%, var(--burgundy-deep));
  border-color: var(--burgundy); color: var(--ivory); font-weight: 600;
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.25), var(--shadow-sm);
  transform: translateY(-1px);
}
.slot.is-taken {
  background: var(--ivory-deep); color: rgba(var(--slate-rgb),0.35);
  cursor: not-allowed; text-decoration: line-through; box-shadow: none;
}
.slot.is-taken:hover { transform: none; border-color: var(--line); background: var(--ivory-deep); box-shadow: none; }
.slot-status { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }

.slot-pick {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem;
  font-weight: 600; color: var(--burgundy);
}

/* Summary panel (rendered after the current step content, inside .booking-main) */
.summary-panel { position: static; margin-top: 1.6rem; }
.summary-card {
  position: relative;
  background: var(--white); border: 1px solid var(--gold-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.summary-head {
  position: relative;
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 50%, var(--burgundy-deep));
  color: var(--ivory); padding: 1.35rem 1.6rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.summary-head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.55), transparent);
}
.summary-head h3 { color: var(--ivory); margin: 0; font-size: 1.35rem; letter-spacing: 0.01em; }
.summary-head svg { color: var(--gold-soft); flex: none; }
.summary-body { padding: 1.4rem 1.6rem 1.6rem; }

.sum-list { margin-bottom: 1.1rem; }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; font-size: 0.93rem; padding: 0.3rem 0; color: var(--espresso); }
.sum-row > span:last-child { font-weight: 600; text-align: right; }
.sum-row--gold { color: var(--burgundy); }
.sum-row--gold > span:last-child {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--burgundy); font-weight: 700; letter-spacing: 0.01em;
}
.sum-row--light { color: var(--muted); }
.sum-divider { height: 1px; background: linear-gradient(90deg, var(--line), transparent); margin: 0.6rem 0; }
.sum-note { font-size: 0.84rem; color: var(--muted); margin: 0.7rem 0 0; line-height: 1.6; }
.sum-note strong { color: var(--burgundy); }

.summary-foot { display: flex; justify-content: space-between; gap: 1rem; }
.summary-foot .btn { flex: 1; }

/* Payment options */
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.pay-option {
  position: relative;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem 1.5rem; cursor: pointer; background: var(--white);
  display: flex; gap: 1.1rem; align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}
.pay-option:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pay-option.is-active {
  border-color: var(--gold); background: linear-gradient(160deg, rgba(var(--gold-rgb), 0.1), rgba(var(--beige-rgb), 0.6));
  box-shadow: var(--ring), var(--shadow-sm);
}
.pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.pay-option .po-ic {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ivory); border: 1px solid var(--line); color: var(--burgundy); flex: none;
  transition: all var(--tr);
}
.pay-option.is-active .po-ic {
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy));
  color: var(--ivory); border-color: var(--burgundy);
  box-shadow: inset 0 1px 0 rgba(var(--white-rgb),0.2);
}
.pay-option h4 { margin: 0 0 0.25rem; font-size: 1.2rem; color: var(--burgundy-deep); }
.pay-option p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* Payment popup (email) */
.pay-pop-head { text-align: center; padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.pay-pop-badge {
  width: 56px; height: 56px; margin: 0 auto 0.85rem; border-radius: 17px;
  display: grid; place-items: center; color: var(--ivory);
  background: linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 50%, var(--burgundy-deep));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(var(--white-rgb),0.22);
}
.pay-pop-badge--card { background: linear-gradient(160deg, var(--gold), var(--gold-mute) 55%, var(--gold-deep)); }
.pay-pop-head h2 { margin-bottom: 0.25rem; }
.pay-pop-head p { color: var(--muted); font-size: 0.93rem; margin: 0; }

.pay-pop-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pay-kv { padding: 0.4rem 0; }
.pay-kv > span {
  display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 0.15rem;
}
.pay-kv > strong { font-weight: 600; color: var(--espresso); word-break: break-word; }

.pay-line { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem 1.3rem; }

.pay-to-block {
  text-align: center; margin: 1.4rem 0 0.9rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 120% at 50% -30%, rgba(var(--gold-rgb),0.3), transparent 60%),
    linear-gradient(160deg, var(--burgundy-light), var(--burgundy) 50%, var(--burgundy-deep));
  border: 1px solid rgba(var(--gold-rgb),0.3);
  border-radius: var(--r-md); padding: 1.7rem 1.2rem; color: var(--ivory);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(var(--white-rgb),0.12);
}
.pay-to-block .pay-please { margin: 0; color: rgba(var(--beige-rgb),0.7); font-size: 0.86rem; }
.pay-amount {
  font-family: var(--font-serif); font-size: 2.15rem; color: var(--gold-soft);
  font-weight: 700; margin: 0.15rem 0 0.25rem; letter-spacing: 0.01em; line-height: 1.1;
}
.pay-email { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.03em; word-break: break-all; color: var(--ivory); }
.pay-email.is-empty { color: rgba(var(--beige-rgb),0.7); font-weight: 400; }
.pay-email--hero {
  display: block; margin: 0.55rem auto 0; max-width: 100%;
  font-family: var(--font-serif);
  font-size: 1.55rem; font-weight: 700; letter-spacing: 0.02em; line-height: 1.25;
  color: var(--ivory); text-align: center; word-break: break-all;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.25);
}
.pay-email-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin: 0 0 1.1rem; line-height: 1.55; }
.pay-exact {
  text-align: center; margin: 0 0 0.9rem; padding: 0.85rem 1.1rem;
  font-size: 0.95rem; font-weight: 600; color: var(--burgundy-deep); line-height: 1.5;
  background: linear-gradient(160deg, rgba(var(--gold-rgb),0.4), rgba(var(--gold-rgb),0.16));
  border: 1px solid rgba(var(--gold-rgb),0.45); border-radius: var(--r-md);
}
.pay-exact strong { color: var(--burgundy-deep); }
.pay-note-ref {
  text-align: center; margin: 0 0 0.2rem; padding: 0.8rem 1.1rem;
  font-size: 0.86rem; color: var(--muted); line-height: 1.55;
  border: 1px dashed var(--line); border-radius: var(--r-md); background: var(--ivory);
}

.pay-disclaimer { font-size: 0.84rem; color: var(--muted); text-align: center; margin: 1.1rem 0; line-height: 1.6; }
.pay-disclaimer strong { color: var(--burgundy); }
.pay-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.pay-foot { font-size: 0.8rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }

/* Stripe card checkout (payment step) */
.stripe-pay-zone {
  margin-top: 1.25rem; padding: 1.1rem 1.1rem 1.25rem;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.stripe-pay-zone .stripe-pay-zone { padding: 0; }
.pay-error {
  margin: 0.75rem 0 0; font-size: 0.88rem; line-height: 1.5;
  color: var(--error, #b3261e); background: rgba(179, 38, 30, 0.08);
  border: 1px solid rgba(179, 38, 30, 0.3); border-radius: var(--r-md); padding: 0.6rem 0.85rem;
}

/* Confirmation */
.confirm-hero { text-align: center; padding: 1.75rem 0 1.1rem; }
.confirm-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; color: var(--ivory);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(var(--white-rgb),0.35);
}
.confirm-icon--confirm { background: linear-gradient(160deg, #3E9A70, var(--ok)); }
.confirm-icon--clock { background: linear-gradient(160deg, var(--gold-soft), var(--gold)); color: var(--burgundy-deep); }
.confirm-hero h2 { color: var(--burgundy-deep); margin-bottom: 0.35rem; }
.confirm-hero p { color: var(--charcoal); max-width: 32em; margin: 0 auto; }

.confirm-card {
  max-width: 560px; margin: 1.4rem auto 0;
  background: var(--white); border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); padding: 1.8rem;
}
.confirm-card .pay-line { background: var(--ivory); }
.confirm-status { border-top: 1px solid var(--line); margin-top: 0.7rem; padding-top: 0.9rem; }
.confirm-actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; padding: 0.3rem 0.8rem; border-radius: 999px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em;
  background: var(--ivory-deep); color: var(--espresso); border: 1px solid var(--line);
}
.badge--ok { background: rgba(47, 125, 91, 0.12); color: var(--ok); border-color: rgba(47, 125, 91, 0.32); }
.badge--bad { background: rgba(178, 58, 58, 0.1); color: var(--danger); border-color: rgba(178, 58, 58, 0.32); }
.badge--warn { background: rgba(168, 126, 19, 0.12); color: var(--warn); border-color: rgba(168, 126, 19, 0.34); }
.badge--wait { background: rgba(var(--charcoal-rgb),0.08); color: var(--charcoal); border-color: rgba(var(--charcoal-rgb),0.26); }

/* ---------- My Bookings ---------- */
.page-head { padding: 3rem 0 1.6rem; }
.page-head h1 { margin-bottom: 0.25rem; }
.page-head p { color: var(--muted); margin: 0; }

.bk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.5rem; }
.bk-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-xs);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.bk-card::before {
  content: ""; position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.42), transparent);
}
.bk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.bk-top { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; }
.bk-number { font-family: var(--font-serif); font-weight: 700; color: var(--burgundy); font-size: 1.1rem; letter-spacing: 0.02em; }
.bk-when { display: flex; align-items: center; gap: 0.5rem; color: var(--charcoal); font-size: 0.94rem; }
.bk-when svg { color: var(--gold-mute); flex: none; }
.bk-svc {
  font-family: var(--font-serif); font-weight: 600; color: var(--espresso);
  font-size: 1.15rem; letter-spacing: 0.01em;
}
.bk-money--one { grid-template-columns: 1fr; }
.bk-del { margin-top: auto; }
.bk-money {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0.85rem 0.95rem;
}
.bk-money span { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.03em; }
.bk-money strong { font-size: 0.92rem; }
.bk-status-line { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.pay-badge { font-size: 0.82rem; color: var(--charcoal); }
.pay-badge--ok { color: var(--ok); }
.pay-badge--warn { color: var(--warn); }
.pay-badge--bad { color: var(--danger); }
.bk-view { align-self: flex-start; margin-top: auto; }

/* Booking details */
.detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.detail-head .bk-number { font-size: 1.65rem; margin-right: 0.8rem; }
.detail-sub { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.35rem; margin-top: 1.6rem; }
.detail-col {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; box-shadow: var(--shadow-xs);
}
.detail-col h3 {
  font-size: 1.3rem; margin-bottom: 0.9rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.detail-col .pay-line { margin-top: 0.4rem; }
.detail-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.6rem; }

.empty-state {
  text-align: center; padding: 3.2rem 1.5rem;
  background: var(--white); border: 1px dashed var(--gold-line); border-radius: var(--r-lg);
}
.empty-state h3 { margin-bottom: 0.25rem; }
.empty-state p { color: var(--muted); }
.empty-state .btn { margin-top: 1.1rem; }
.empty-note { color: var(--muted); text-align: center; padding: 1.3rem; }

.auth-gate {
  text-align: center; max-width: 440px; margin: 2.2rem auto;
  background: var(--white); border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  padding: 2.6rem 2.2rem; box-shadow: var(--shadow-md);
}
.auth-gate .confirm-icon { width: 64px; height: 64px; }
.auth-gate p { color: var(--muted); }
.auth-gate .btn { margin: 0.35rem; }

.detail-lookup { max-width: 480px; margin: 0 auto; }
.detail-loading { text-align: center; color: var(--muted); padding: 3.2rem 0; }
.detail-loading p { margin-top: 0.9rem; }

/* ---------- Admin ---------- */
.admin-layout { display: grid; grid-template-columns: 258px 1fr; min-height: calc(100vh - 200px); gap: 0; }
.admin-sidebar {
  position: relative;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(var(--gold-rgb),0.16), transparent 55%),
    var(--burgundy-deep);
  color: var(--ivory); padding: 1.6rem 1rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.admin-sidebar::after {
  content: ""; position: absolute; right: 0; top: 1.6rem; bottom: 1.6rem; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(var(--gold-rgb),0.4), transparent);
}
.admin-sidebar h3 {
  color: var(--gold-soft); font-size: 1.25rem;
  padding: 0.2rem 0.9rem 1rem; margin: 0;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.18);
}
.admin-nav-btn {
  text-align: left; background: none; border: none; color: rgba(var(--beige-rgb),0.78);
  padding: 0.75rem 0.9rem; border-radius: var(--r-sm); font-size: 0.95rem; cursor: pointer;
  transition: all var(--tr); letter-spacing: 0.01em;
}
.admin-nav-btn:hover { color: var(--ivory); background: rgba(var(--beige-rgb),0.08); padding-left: 1.05rem; }
.admin-nav-btn.is-active {
  color: var(--burgundy-deep); background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 600; box-shadow: var(--shadow-sm);
}
.admin-main { padding: 2rem 2.3rem; min-width: 0; background: var(--ivory); }
.admin-main-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.admin-main-head h1 { margin: 0; }
.admin-toolbar { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.admin-tab { display: none; }
.admin-tab.is-active { display: block; animation: fadeUp 0.4s ease both; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 1.1rem; margin-bottom: 1.9rem; }
.stat-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-xs);
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 1.4rem; right: 1.4rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.45), transparent);
}
.stat-label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.4rem; }
.stat-value { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--burgundy); line-height: 1; }

.table-wrap {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow-x: auto; box-shadow: var(--shadow-xs);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 760px; }
.admin-table th {
  text-align: left; padding: 0.9rem 1.1rem; color: var(--muted);
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em;
  border-bottom: 1px solid var(--line); background: var(--ivory); font-weight: 600;
}
.admin-table td { padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr { transition: background var(--tr); }
.admin-table tbody tr:hover { background: rgba(var(--gold-rgb), 0.08); }
.cell-sub { color: var(--muted); font-size: 0.8rem; }
.mono { font-family: ui-monospace, "SF Mono", Consolas, monospace; font-size: 0.85rem; }
.table-empty { text-align: center; color: var(--muted); padding: 2.2rem !important; }

.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin: 1.3rem 0 1rem; flex-wrap: wrap; }
.panel-head h3 { margin: 0; }

.toggle {
  border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 0.32rem 0.85rem; color: var(--muted); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all var(--tr);
}
.toggle:hover { border-color: var(--gold-mute); color: var(--espresso); }
.toggle.is-on { background: rgba(47, 125, 91, 0.13); color: var(--ok); border-color: rgba(47, 125, 91, 0.35); }

.admin-order-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }

.settings-form, form[data-svc-form] { display: grid; gap: 1.1rem; max-width: 680px; }
form[data-svc-form] label, .settings-form label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.15rem;
}
form[data-svc-form] input, form[data-svc-form] select, form[data-svc-form] textarea,
.settings-form input, .settings-form select {
  width: 100%; margin-top: 0.3rem; padding: 0.75rem 0.95rem;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--ivory);
  color: var(--espresso);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
form[data-svc-form] input:focus, form[data-svc-form] select:focus, form[data-svc-form] textarea:focus,
.settings-form input:focus, .settings-form select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.2);
}
.settings-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }

/* City + Province 2-col row in the booking details form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-row select { cursor: pointer; }
/* Locked "Quebec" province field */
#state-input {
  background: rgba(255, 255, 255, 0.05);
  color: #D4AF37;
  cursor: not-allowed;
  opacity: 0.8;
}
.advice-note {
  color: var(--muted); font-size: 0.85rem;
  background: var(--ivory); border: 1px dashed var(--gold-line); border-radius: var(--r-sm);
  padding: 0.85rem 1.05rem; margin: 0.9rem 0; line-height: 1.6;
}

.admin-login-note { margin-top: 1.1rem; font-size: 0.86rem; color: var(--muted); }

/* ---------- Skeletons ---------- */
.svc-skeleton { display: grid; gap: 0.9rem; }
.sk {
  height: 16px; border-radius: 8px; width: 100%;
  background: linear-gradient(90deg, var(--ivory-deep) 25%, var(--ivory) 45%, var(--ivory-deep) 65%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
}
.sk--s { width: 55%; }
.sk--t { width: 80%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Toasts ---------- */
.toast-wrap { position: fixed; top: 1.3rem; right: 1.3rem; z-index: 200; display: flex; flex-direction: column; gap: 0.65rem; max-width: min(370px, 92vw); }
.toast {
  background: var(--espresso); color: var(--white);
  padding: 0.95rem 1.15rem; border-radius: var(--r-sm);
  border: 1px solid rgba(var(--white-rgb),0.12);
  box-shadow: var(--shadow-lg); font-size: 0.9rem; display: flex; gap: 0.65rem; align-items: flex-start;
  opacity: 0; transform: translateX(24px); transition: all var(--tr);
}
.toast--in { opacity: 1; transform: none; }
.toast--out { opacity: 0; transform: translateX(24px); }
.toast--success { background: linear-gradient(160deg, #3A9168, var(--ok)); }
.toast--error { background: linear-gradient(160deg, #C84A4A, var(--danger)); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.is-hidden { display: none !important; }
.is-visible { display: block !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .container { width: min(1220px, 100% - 2.5rem); }
  .hero-card--a { left: -3%; }
  .hero-card--b { right: -3%; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-card--a { left: -1%; }
  .hero-card--b { right: -1%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.4rem; padding: 0.9rem 1rem; }
  .admin-sidebar::after { display: none; }
  .admin-sidebar h3 { padding: 0 0.7rem; border-bottom: none; margin: 0; flex: 1; }
  .pay-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  /* Promote children instead of hiding the bar so #navAccount survives:
     text links collapse, account pill stays beside the burger. */
  .nav-links { display: contents; }
  .nav-links > a { display: none; }
  .nav-account { margin-left: auto; }
  .nav-account .acct-link { padding: 0.4rem 0.55rem; }
  .burger { display: flex; align-items: center; justify-content: center; margin-left: 10px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Timeline track only makes sense across a single 4-up row */
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .pay-pop-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner,
  .how-grid,
  .footer-grid,
  .booking-layout,
  .pay-options,
  .pay-pop-cols,
  .stat-grid { grid-template-columns: minmax(0, 1fr); }

  /* --- Clean single-column mobile luxury grids --- */
  .svc-grid,
  .trust-grid,
  #contact .trust-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 0 16px;
  }

  /* Restored spatial proportions */
  .svc-card { border-radius: 24px; }
  .svc-body {
    padding: 24px;
    border-radius: 0 0 24px 24px;
  }
  .svc-body::before { left: 24px; right: 24px; }
  .trust-item {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 620px) {
  .trust-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 2.25rem); }
  .section { padding: 3.2rem 0; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .progress-bar { flex-wrap: wrap; gap: 0.6rem; }
  .step { flex: 1 1 40%; }
  .step-label { font-size: 0.72rem; }
  .step:not(:last-child)::after { display: none; }
  .step-num { width: 32px; height: 32px; }
  .panel-card { padding: 1.5rem 1.35rem 1.8rem; }
  .modal-body { padding: 0.75rem 1.3rem 1.6rem; }
  .modal { max-height: 92vh; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .selection-bar {
    width: calc(100vw - 2rem); justify-content: space-between;
    padding: 0.75rem 0.85rem 0.75rem 1.2rem;
  }
  .pay-amount { font-size: 1.85rem; }
  .pay-email--hero { font-size: 1.35rem; }
  .pay-exact { font-size: 0.92rem; }
  .admin-main { padding: 1.3rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-pick { align-items: stretch; }
  .time-field { min-width: calc(50% - 0.8rem); }
}

/* Perfect hamburger size on very small phones (e.g. 350px) */
@media (max-width: 360px) {
  .burger { width: 40px; height: 40px; }
  .burger span { width: 20px; }
}


@media (max-width: 480px) {
  body { font-size: 0.97rem; }
  .container { width: calc(100% - 2rem); }
  #contact .container { padding: 0 20px; }
  h1 { font-size: clamp(2.2rem, 11vw, 2.9rem); }
  h2 { font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .nav-inner { gap: 0.85rem; padding: 0.95rem 0; }
  .logo { font-size: 1.3rem; }
  .logo-mark { width: 50px; height: 50px; }
  .hero { padding-top: 2.4rem; }
  .hero-inner { gap: 2.6rem; }
  .hero-cta .btn { width: 100%; }
  .hero-note { justify-content: center; text-align: center; }
  .hero-art::after { inset: -10px -10px 14px 10px; }
  .hero-card { padding: 0.8rem 0.9rem; }
  .hero-card .hc-ic { width: 38px; height: 38px; }
  .hero-card--a { left: 0; bottom: 3%; }
  .hero-card--b { right: 0; top: 3%; }
  .how-step { padding: 1.6rem 1.4rem 1.75rem; border-radius: 20px; }
  .how-step::before { font-size: 52px; top: 10px; right: 16px; }
  .how-step::after { left: 22px; right: 22px; }
  .svc-card.is-selected::before { border-radius: 24px; }
  .svc-media div.svc-img { padding: 1.2rem 1rem; gap: 0.75rem; }
  .art-icon { width: 64px; height: 64px; padding: 13px; }
  .svc-meta { gap: 0.55rem 0.7rem; margin-bottom: 1.05rem; padding-top: 0.9rem; }
  .svc-price { font-size: 1.08rem; padding: 0.3rem 0.85rem; }
  .svc-dur { font-size: 0.83rem; }
  .trust-ic { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.05rem; }
  .section-head .kicker { letter-spacing: 0.2em; }
  .cta-strip { border-radius: 28px; }
  .cta-strip::after { width: 240px; height: 240px; }
  .cta-strip .btn--gold { padding: 1rem 2.1rem; }
  .footer .container { padding: 48px 20px 32px; }
  .footer-grid { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .auth-page { padding: 2.4rem 1rem; }
  .auth-card { padding: 2.1rem 1.5rem 1.8rem; border-radius: var(--r-lg); }
  .auth-card::before { left: 1.5rem; right: 1.5rem; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
  .slot { font-size: 0.86rem; padding: 0.7rem 0.3rem; }
  .pay-options { grid-template-columns: 1fr; }
  .pay-option { padding: 1.2rem 1.2rem; }
  .pay-pop-badge { width: 50px; height: 50px; }
  .step-nav { flex-wrap: wrap; }
  .step-nav .btn { flex: 1 1 auto; min-width: 0; }
  .selection-bar { border-radius: var(--r-md); white-space: normal; }
  .selection-bar .sel-count { font-size: 1.05rem; }
  .toast-wrap { right: 0.8rem; left: 0.8rem; top: 0.9rem; max-width: none; }
}

@media (max-width: 375px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-pick { flex-direction: column; }
  .time-field { min-width: 0; width: 100%; }
  .time-arrow { transform: rotate(90deg); align-self: center; padding: 0.25rem 0; }
  .hero-cta .btn { padding: 0.92rem 1.4rem; }
  .summary-head { padding: 1.15rem 1.3rem; }
  .summary-body { padding: 1.2rem 1.3rem 1.4rem; }
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ---------- Night Theme ----------
   Token overrides re-skin every component at once WITHOUT touching any
   component's own rules (service cards keep their exact styles). The
   targeted rules below only set page background, text contrast and
   dark-glass containers. */
html.dark-theme {
  --white: #1A0A0F;
  --ivory: #140609;
  --ivory-2: #110508;
  --ivory-deep: #0E0407;
  --espresso: #F5F5F4;
  --charcoal-rgb: 231, 229, 228;
  --muted-rgb: 178, 160, 140;
  --beige-rgb: 245, 245, 244;
  --line: #3A2129;
}
html.dark-theme body,
body.dark-theme { background: #0E0407; color: #F5F5F4; }

/* High-contrast text (headings, body copy, labels, dropdown, footer) */
body.dark-theme h1, body.dark-theme h2, body.dark-theme h3,
body.dark-theme h4, body.dark-theme h5,
body.dark-theme .section-head h2, body.dark-theme .svc-section-title,
body.dark-theme .how-step h4, body.dark-theme .trust-item h4 { color: #F5F5F4; }
body.dark-theme p, body.dark-theme li,
body.dark-theme .trust-item p, body.dark-theme .how-step p,
body.dark-theme .hero-sub, body.dark-theme .section-head p,
body.dark-theme .svc-desc, body.dark-theme .sum-note,
body.dark-theme .empty-state p { color: #E7E5E4; }
body.dark-theme .kicker, body.dark-theme .acct-menu a,
body.dark-theme .acct-menu a.acct-logout,
body.dark-theme .acct-menu .acct-head strong,
body.dark-theme .acct-theme-toggle { color: #D4AF37; }
body.dark-theme .acct-menu a.acct-logout:hover,
body.dark-theme .acct-menu a.acct-logout svg { color: #C4516B; }
body.dark-theme .footer h5 { color: #D4AF37; }
body.dark-theme .footer a, body.dark-theme .footer p,
body.dark-theme .footer-bottom span { color: #E7E5E4; }
body.dark-theme .footer a:hover { color: #D4AF37; }
body.dark-theme label, body.dark-theme .pay-kv span,
body.dark-theme .bk-money span, body.dark-theme .cell-sub { color: #D6CCC0; }

/* Dark glassmorphism for secondary containers + modals
   (service cards intentionally untouched) */
body.dark-theme .modal,
body.dark-theme .acct-menu,
body.dark-theme .panel-card,
body.dark-theme .summary-panel .summary-head,
body.dark-theme .cta-strip {
  background: rgba(26, 10, 15, 0.85);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-color: rgba(212, 175, 55, 0.3);
}
body.dark-theme .modal { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55); }

html.dark-theme .nav.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6); }
html.dark-theme .acct-menu { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45); }
/* Glowing gold accents */
html.dark-theme .logo-mark { box-shadow: 0 0 16px -2px rgba(var(--gold-rgb), 0.55); }
html.dark-theme .btn--gold { box-shadow: 0 0 26px -6px rgba(var(--gold-rgb), 0.5); }
html.dark-theme .btn--gold:hover { box-shadow: 0 0 34px -4px rgba(var(--gold-rgb), 0.65); }
html.dark-theme .svc-section-title::before { box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.6); }
html.dark-theme ::selection { background: rgba(var(--gold-rgb), 0.35); color: #fff; }

/* ---------- Night Theme: Contact cards ("We're Here To Help") ----------
   Scoped to #contact so the homepage trust strip keeps its own look. */
body.dark-theme #contact .section-head h2 {
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
body.dark-theme #contact .section-head p { color: #D6D3D1; }
body.dark-theme #contact .kicker { color: #D4AF37; }
/* Dark frosted-glass cards */
body.dark-theme #contact .trust-item {
  background: rgba(28, 12, 18, 0.85) !important;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
/* Metallic gold titles */
body.dark-theme #contact .trust-item h4 {
  color: #D4AF37 !important;
  font-weight: 600;
  font-size: 20px;
}
/* Soft off-white descriptions */
body.dark-theme #contact .trust-item p {
  color: #E7E5E4 !important;
  opacity: 0.9;
}
/* Rich burgundy icon holders with gold border + gold icons
   (SVGs inherit currentColor) */
body.dark-theme #contact .trust-ic {
  color: #D4AF37;
  background: linear-gradient(135deg, #3A0F1A 0%, #1F080E 100%);
  border: 1px solid #D4AF37;
}
/* Glowing gold action buttons; solid gold fill on hover */
body.dark-theme #contact .trust-item .btn--ghost,
body.dark-theme #contact .trust-item .btn--ghost.is-disabled {
  background: transparent;
  border: 1px solid #D4AF37;
  color: #D4AF37;
}
body.dark-theme #contact .trust-item .btn--ghost:hover,
body.dark-theme #contact .trust-item .btn--ghost:focus-visible {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #120407;
  box-shadow: 0 0 22px -6px rgba(212, 175, 55, 0.6);
}

/* ---------- Night Theme: How It Works ("From Doorstep To Relaxation") ---------- */
body.dark-theme #how-it-works .section-head h2 {
  color: #FFFFFF !important;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}
body.dark-theme #how-it-works .section-head p { color: #E7E5E4 !important; }
body.dark-theme #how-it-works .kicker { color: #D4AF37; }
/* Dark frosted-glass step cards */
body.dark-theme #how-it-works .how-step {
  background-color: rgba(28, 12, 18, 0.85) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
/* Keep elevation in dark glass on hover (base hover re-lightens the card) */
body.dark-theme #how-it-works .how-step.reveal.in:hover {
  background-color: rgba(40, 17, 24, 0.92);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 24px 48px -14px rgba(0, 0, 0, 0.65),
    0 0 30px -10px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(245, 245, 244, 0.06);
}
/* Step headings / body text */
body.dark-theme #how-it-works .how-step h4 {
  color: #F5F5F4 !important;
  font-weight: 600;
}
body.dark-theme #how-it-works .how-step p {
  color: #D6D3D1 !important;
  opacity: 0.95;
}
/* Glowing metallic-gold watermark numerals.
   Base uses a background-clip:text gradient with -webkit-text-fill-color
   transparent, so both fill channels must be forced to gold. */
body.dark-theme #how-it-works .how-step::before {
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  color: #D4AF37 !important;
  -webkit-text-fill-color: #D4AF37 !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  opacity: 0.9;
}
body.dark-theme #how-it-works .how-step.reveal.in:hover::before {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.55));
}
/* Connector line through the gaps -> subtle gold gradient */
body.dark-theme #how-it-works .how-grid::before {
  background: linear-gradient(90deg,
    rgba(212, 175, 55, 0.2),
    #D4AF37,
    rgba(212, 175, 55, 0.2)) !important;
}

/* ---------- Night Theme: Navbar ----------
   Scoped with bare .dark-theme (html OR body) so the pre-paint class
   already styles the bar before initShell syncs body.dark-theme. */
/* 1. Glassmorphic container */
.dark-theme .nav {
  background: rgba(22, 8, 13, 0.88) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.dark-theme .nav.is-scrolled {
  background: rgba(22, 8, 13, 0.94);
}
/* 2. Logo text in bright metallic gold (mark keeps its gold-on-burgundy SVG) */
.dark-theme .nav .logo { color: #D4AF37 !important; font-weight: 600; }
/* 3. Nav links: crisp off-white -> glowing gold on hover */
.dark-theme .nav-links a { color: #F5F5F4 !important; }
.dark-theme .nav-links a:hover,
.dark-theme .nav-links a:focus-visible {
  color: #D4AF37 !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}
.dark-theme .nav-links a[aria-current="page"] {
  color: #D4AF37 !important;
}
/* 4. User account pill: dark burgundy fill + gold border */
.dark-theme #navAccount .acct-link,
.dark-theme #navAccount .acct-link:hover {
  background: rgba(45, 12, 22, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #FFFFFF !important;
  box-shadow: none;
}
.dark-theme #navAccount .acct-link:hover { border-color: rgba(212, 175, 55, 0.7); }
/* Avatar keeps its rich burgundy gradient with gold-tinted initials */
.dark-theme #navAccount .acct-avatar {
  background: linear-gradient(135deg, var(--burgundy-soft), var(--burgundy-deep));
  color: #EFD9A7;
}
/* Name stays crisp white, chevron turns gold */
.dark-theme #navAccount [data-account-name] { color: #F5F5F4 !important; }
.dark-theme #navAccount .acct-caret { color: #D4AF37 !important; }
/* 5. Book Now buttons: solid gold gradient, near-black text */
.dark-theme .nav-book,
.dark-theme .m-book {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%) !important;
  color: #120407 !important;
  font-weight: 600;
  border: none;
}
.dark-theme .nav-links .nav-book:hover {
  background: linear-gradient(135deg, #E4C25A 0%, #C2951B 100%);
  color: #120407 !important;
  box-shadow: 0 0 22px -6px rgba(212, 175, 55, 0.65);
}
.dark-theme .nav-links .nav-book { color: #120407 !important; }
/* Hamburger-menu Book Now: keep near-black text on the gold pill (base + hover/focus) */
.dark-theme .mobile-menu .m-book,
.dark-theme .mobile-menu .m-book:hover,
.dark-theme .mobile-menu .m-book:focus-visible { color: #120407 !important; }
/* Mobile dropdown shares the dark-glass treatment */
/* Mobile drawer -> ultra-dark full-screen overlay in night mode */
.dark-theme .mobile-menu {
  background: rgba(14, 4, 7, 0.96) !important;
  -webkit-backdrop-filter: blur(25px) !important;
          backdrop-filter: blur(25px) !important;
}
.dark-theme .mobile-menu a {
  color: #FFFFFF !important;
  font-size: 22px;
}
.dark-theme .mobile-menu a:hover,
.dark-theme .mobile-menu a:focus-visible { color: #D4AF37 !important; }

/* ---------- Night Theme: Hero ----------
   Floating badges (.hero-card), headline accent, subtitle and CTAs. */
/* 1. Badge containers -> rich dark frosted glass */
body.dark-theme .hero-card {
  background: rgba(28, 12, 18, 0.88) !important;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
/* 2. Badge titles / subtext / icon squares */
body.dark-theme .hero-card strong {
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 14px;
}
body.dark-theme .hero-card span {
  color: #D4AF37 !important;
  font-size: 11px;
  opacity: 0.9;
}
body.dark-theme .hc-ic {
  color: #D4AF37;
  background: linear-gradient(135deg, #3A0F1A 0%, #1F080E 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
}
/* 3. Headline accent line -> glowing rose gold */
body.dark-theme .hero .serif-accent {
  color: #E2B774 !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
body.dark-theme .hero-sub { color: #F5F5F4 !important; }
body.dark-theme .hero-eyebrow { color: #F5F5F4 !important; }
body.dark-theme .hero-note { color: #D6D3D1; }
/* 4. CTA buttons */
body.dark-theme .hero .btn--primary,
body.dark-theme .hero .btn--primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%) !important;
  color: #120407 !important;
  font-weight: 700;
  border: none;
}
body.dark-theme .hero .btn--primary:hover {
  background: linear-gradient(135deg, #E4C25A 0%, #C2951B 100%);
  box-shadow: 0 0 26px -6px rgba(212, 175, 55, 0.65);
}
body.dark-theme .hero .btn--ghost {
  background: transparent !important;
  border: 1px solid #D4AF37 !important;
  color: #F5F5F4 !important;
}
body.dark-theme .hero .btn--ghost:hover,
body.dark-theme .hero .btn--ghost:focus-visible {
  background: #D4AF37 !important;
  color: #120407 !important;
  box-shadow: 0 0 22px -6px rgba(212, 175, 55, 0.6);
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--burgundy-deep); color: var(--ivory);
  padding: 0.85rem 1.3rem; border-radius: 0 0 var(--r-xs) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Responsive navbar polish ----------
   Phones (350px+): avatar + chevron only, name hidden; compact burger
   chip beside the pill. Structural burger/links switch stays at 980px
   so 769-980px keeps navigation. */
@media (max-width: 768px) {
  /* Tighten the right-side action cluster */
  .nav-inner { gap: 10px; }
  /* Pill: avatar circle + chevron only */
  .nav-account .acct-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 4px 8px !important;
    width: auto !important;
    min-width: 50px !important;
    height: 38px !important;
    max-width: none !important;
    border-radius: 50px !important;
    font-size: 12px !important;
  }
  .nav-account.is-guest .acct-link { height: 38px !important; padding: 4px 8px !important; }
  /* Hide the name/email strings entirely on mobile */
  .nav-account [data-account-name] {
    display: none !important;
  }
  .nav-account .acct-avatar {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
    flex: none;
  }
  .dropdown-chevron {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    margin-left: 2px !important;
    stroke: #D4AF37 !important;
  }
}