/* =========================================================
   A Lucky Spa — Dark Luxury theme (emerald-noir & gold)
   Static, dependency-free, accessible, performant.
   ========================================================= */

:root {
  /* Palette — deep emerald noir + gold */
  --noir:        #050E0A;
  --bg:          #07140F;
  --bg-alt:      #0A1F17;
  --surface:     #0E261C;
  --surface-2:   #143226;
  --emerald-900: #0B2E22;
  --emerald-800: #0E3D2D;
  --emerald-700: #134E3A;
  --emerald-600: #1B5E43;

  --gold-700:    #9C7A28;
  --gold-600:    #B8902F;
  --gold-500:    #C9A24B;
  --gold-400:    #D8B86A;
  --gold-300:    #E6CE8E;
  --gold-200:    #F0E2BA;

  --cream:       #F4EEE1;
  --cream-soft:  rgba(244, 238, 225, 0.72);
  --cream-faint: rgba(244, 238, 225, 0.5);

  --border:      rgba(201, 162, 75, 0.16);
  --border-soft: rgba(244, 238, 225, 0.1);

  /* Semantic */
  --text:        var(--cream);
  --text-soft:   var(--cream-soft);
  --heading:     var(--cream);
  --accent:      var(--gold-400);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 12px 34px rgba(184, 144, 47, 0.28);
  --glow-gold: 0 0 0 1px rgba(216,184,106,0.4), 0 18px 50px rgba(184,144,47,0.22);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t-mid: 280ms;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold-500); color: var(--noir); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 2000;
  background: var(--gold-500); color: var(--noir);
  padding: 10px 18px; border-radius: 8px; font-weight: 600; transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--heading); }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--cream);
}
.section-title-light { color: var(--cream); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.eyebrow-gold { color: var(--gold-400); }
.accent { color: var(--gold-400); font-style: italic; }
.muted { color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--noir);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95em 1.85em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  min-height: 48px;
  position: relative;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-mid) var(--ease), background var(--t-mid) var(--ease), border-color var(--t-mid);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 3px; }
.btn .ic { width: 1.1em; height: 1.1em; fill: currentColor; }

.btn-gold { --btn-bg: linear-gradient(135deg, var(--gold-300), var(--gold-600)); --btn-fg: #241B05; box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(184, 144, 47, 0.42); }
.btn-emerald { --btn-bg: var(--emerald-700); --btn-fg: var(--cream); box-shadow: var(--shadow-sm); }
.btn-emerald:hover { --btn-bg: var(--emerald-600); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border: 1.5px solid rgba(244, 238, 225, 0.35);
}
.btn-ghost:hover { --btn-bg: rgba(244, 238, 225, 0.08); border-color: var(--gold-400); color: var(--gold-200); }
.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--gold-300);
  border: 1.5px solid rgba(201, 162, 75, 0.45);
}
.btn-outline:hover { --btn-bg: rgba(201, 162, 75, 0.1); border-color: var(--gold-400); color: var(--gold-200); }
.btn-sm { padding: 0.7em 1.35em; min-height: 44px; font-size: 0.82rem; }
.btn-lg { padding: 1.1em 2.4em; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), backdrop-filter var(--t-mid);
}
.site-header.scrolled {
  background: rgba(7, 20, 15, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 10px 30px rgba(0,0,0,0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.brand-mark { color: var(--gold-400); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; letter-spacing: 0.5px; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-300); margin-top: 4px; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-menu > li > a {
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--cream); position: relative; padding: 6px 2px;
  transition: color var(--t-fast);
}
.nav-menu > li > a:hover { color: var(--gold-300); }
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-400); transition: width var(--t-mid) var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 100%; }
.nav-menu > li > a.active { color: var(--gold-300); }
.nav-menu > li > a:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 4px; border-radius: 2px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  position: relative; align-items: center; justify-content: center;
}
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform var(--t-mid) var(--ease), opacity var(--t-fast); }
.nav-toggle-bar + .nav-toggle-bar { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--cream);
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--noir); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; transform: scale(1.06); animation: heroZoom 20s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 18% 8%, rgba(11,46,34,0.4), transparent 60%),
    linear-gradient(180deg, rgba(5,14,10,0.6) 0%, rgba(5,14,10,0.8) 55%, rgba(5,14,10,0.96) 100%);
}
.hero-content { max-width: 780px; }
.hero-title {
  color: var(--cream);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1.4rem;
}
.hero-lead { font-size: clamp(1.02rem, 1.8vw, 1.22rem); max-width: 56ch; color: rgba(244,238,225,0.82); margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .eyebrow { color: var(--gold-300); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(216,184,106,0.45); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px; z-index: 1;
}
.hero-scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: var(--gold-300); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Quick info bar ---------- */
.info-bar { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic { width: 34px; height: 34px; flex: none; fill: none; stroke: var(--gold-400); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-item h3 { color: var(--gold-300); font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.45rem; }
.info-item p { color: rgba(244,238,225,0.86); font-size: 0.98rem; line-height: 1.5; }
.info-link { color: var(--gold-300); font-size: 0.86rem; font-weight: 500; display: inline-block; margin-top: 0.4rem; border-bottom: 1px solid transparent; transition: border-color var(--t-fast); }
.info-link:hover { border-color: var(--gold-300); }
.info-note { color: var(--cream-faint); border: none; }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { max-width: 660px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); text-align: center; }
.section-intro { color: var(--text-soft); font-size: 1.05rem; margin-top: 1rem; }

/* ---------- Service (single, tiered) ---------- */
.services {
  background:
    radial-gradient(70% 60% at 50% -10%, rgba(201,162,75,0.07), transparent 60%),
    var(--bg);
}
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  max-width: 940px; margin: 0 auto;
  align-items: center;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.4vw, 2.8rem) 1.6rem;
  text-align: center;
  position: relative;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid), background var(--t-mid);
}
.tier-card:hover { transform: translateY(-6px); border-color: rgba(216,184,106,0.4); box-shadow: var(--shadow-md); }
.tier-featured {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: rgba(216,184,106,0.5);
  box-shadow: var(--glow-gold);
  transform: scale(1.04);
  z-index: 1;
}
.tier-featured:hover { transform: scale(1.04) translateY(-6px); }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: #241B05;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.tier-dur { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.74rem; font-weight: 600; color: var(--gold-300); margin-bottom: 0.6rem; }
.tier-price { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4rem); font-weight: 600; line-height: 1; color: var(--cream); margin-bottom: 0.5rem; }
.tier-featured .tier-price { color: var(--gold-200); }
.tier-note { color: var(--text-soft); font-style: italic; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 1.6rem; }
.service-foot { text-align: center; margin-top: 2.6rem; }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/5; border: 1px solid var(--border); }
.about-media.img-fallback { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--emerald-700), var(--noir)); box-shadow: var(--shadow-md); }
.about-media.img-fallback img { display: none; }
.about-badge {
  position: absolute; right: -18px; bottom: -18px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #241B05; border-radius: 50%; width: 122px; height: 122px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold); text-align: center; line-height: 1;
}
.about-badge-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.about-badge-label { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 4px; }
.about-body > p { color: var(--text-soft); margin-bottom: 1.1rem; max-width: 56ch; }
.about-body .section-title { margin-bottom: 1.4rem; text-align: left; }
.feature-list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; color: var(--cream); }
.check { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--gold-400); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; background: rgba(201,162,75,0.16); border-radius: 50%; padding: 4px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: clamp(0.8rem, 2vw, 1.4rem); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); background: linear-gradient(135deg, var(--emerald-700), var(--noir)); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,14,10,0.55)); opacity: 0.5; transition: opacity var(--t-mid); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 0.85; }
.gallery-item.img-fallback img { display: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews {
  background:
    radial-gradient(90% 90% at 50% 0%, var(--emerald-800), var(--noir));
  color: var(--cream); position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.review-card {
  background: rgba(244, 238, 225, 0.04);
  border: 1px solid rgba(216, 184, 106, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid), background var(--t-mid);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(216, 184, 106, 0.5); background: rgba(244,238,225,0.07); }
.stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.stars svg { width: 20px; height: 20px; fill: var(--gold-400); }
.review-card p { font-family: var(--font-display); font-size: 1.34rem; line-height: 1.4; color: var(--cream); font-style: italic; margin-bottom: 1.1rem; }
.review-card cite { font-style: normal; font-size: 0.82rem; letter-spacing: 0.12em; color: var(--gold-300); text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(135deg, var(--emerald-800), var(--noir));
  color: var(--cream); padding: clamp(3.6rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 740px; margin: 0 auto; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem, 4.6vw, 3.2rem); margin-bottom: 0.8rem; }
.cta-band p { margin-bottom: 1.9rem; color: var(--text-soft); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact-info .section-title { text-align: left; }
.contact-info > p { color: var(--text-soft); }
.contact-list { margin: 1.6rem 0 2rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; color: var(--cream); font-weight: 500; }
.contact-ic { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--gold-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a:hover { color: var(--gold-300); }
.contact-cta { margin-top: 1.5rem; }
.contact-cta-note { margin-top: 1rem; font-size: 0.9rem; color: var(--text-soft); max-width: 40ch; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; border: 1px solid var(--border); background: var(--surface); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.85) brightness(0.92); }

/* ---------- Footer ---------- */
.site-footer { background: var(--noir); color: var(--cream-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 1.8rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-soft); }
.footer-mark { color: var(--gold-400); }
.footer-name { font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); margin: 0.6rem 0 0.3rem; }
.footer-tag { font-size: 0.92rem; max-width: 28ch; }
.footer-col h4 { color: var(--gold-300); font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a:hover { color: var(--gold-300); }
.footer-cta .btn { margin-top: 0.2rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.5rem; font-size: 0.82rem; color: var(--cream-faint); }

/* ---------- Floating call button ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  box-shadow: var(--shadow-gold);
  display: none; align-items: center; justify-content: center;
  transition: transform var(--t-fast) var(--ease);
}
.fab-call svg { width: 26px; height: 26px; fill: #241B05; }
.fab-call:hover { transform: scale(1.08); }
.fab-call:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .about-body .section-title, .contact-info .section-title { text-align: center; }
  .about-body > p { margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }
  .contact-list li { justify-content: center; }
  .contact-cta-note { margin-left: auto; margin-right: auto; }
  .contact-map { min-height: 340px; }
  .contact-map iframe { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; }

  /* Mobile nav */
  .nav-toggle { display: inline-flex; z-index: 1100; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.2rem;
    background: var(--emerald-900);
    transform: translateX(100%); transition: transform var(--t-mid) var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border);
  }
  body.nav-open .nav-menu { transform: translateX(0); }
  .nav-menu > li > a { color: var(--cream); font-size: 1.1rem; }
  .nav-cta-li { margin-top: 0.6rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open .nav-toggle-bar { background: var(--gold-300); }

  /* Backdrop */
  .nav-backdrop { position: fixed; inset: 0; background: rgba(5,14,10,0.6); opacity: 0; visibility: hidden; transition: opacity var(--t-mid); z-index: 1050; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  .info-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .info-item { justify-content: flex-start; }
  .tier-grid { grid-template-columns: 1fr; max-width: 420px; }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-6px); }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { justify-content: flex-start; }
  .fab-call { display: flex; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .about-badge { width: 96px; height: 96px; right: 6px; bottom: -12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-bg img { animation: none; transform: scale(1); }
}
