/* ============================================================
   Beauti Door Spa Massage Service — Global Styles
   Palette: warm beige / cream / soft brown / deep charcoal / muted gold
   ============================================================ */

:root {
  --cream: #FAF6EE;
  --beige: #F1EADA;
  --sand: #E6DAC4;
  --ink: #2B251D;
  --ink-2: #4E463A;
  --ink-3: #6E6455;
  --brown: #8A6F55;
  --gold: #AE8A5B;
  --gold-deep: #8F6F43;
  --line: rgba(43, 37, 29, 0.14);
  --wa: #1E7E4C;
  --wa-deep: #166A3F;
  --dark: #241F18;
  --dark-2: #2E2820;
  --radius: 18px;
  --shadow-soft: 0 18px 44px -22px rgba(43, 37, 29, 0.35);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, .serif {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--ink);
}

h1 { font-size: clamp(2.35rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.85rem); }
h3 { font-size: clamp(1.28rem, 2.4vw, 1.6rem); }

p { color: var(--ink-2); }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 300;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--beige { background: var(--beige); }
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(250, 246, 238, 0.78); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--gold); }

.section-head p { margin-top: 1.1rem; font-size: 1.05rem; }

.lede { font-size: 1.12rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  min-height: 52px;
}
.btn:active { transform: scale(0.97); }
.btn svg { flex: none; }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-deep); }

.btn--call { background: var(--ink); color: var(--cream); }
.btn--call:hover { background: var(--ink-2); }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.section--dark .btn--ghost { border-color: rgba(250,246,238,.55); color: var(--cream); }
.section--dark .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: gap .25s ease, border-color .25s ease;
}
.link-arrow:hover { gap: 0.7rem; border-color: var(--gold-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(43,37,29,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--ink); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brown); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 1.7rem; }
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.35rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right .3s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.header-cta { display: none; align-items: center; gap: 0.6rem; }
.header-cta .btn { padding: 0.7rem 1.25rem; min-height: 44px; font-size: 0.88rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 1.25rem 1.8rem;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 99;
  box-shadow: 0 30px 50px -30px rgba(43,37,29,.4);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: grid; gap: 0.2rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0.6rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current="page"] { color: var(--gold-deep); font-weight: 600; }
.mobile-nav .btn-row { margin-top: 1.2rem; }
.mobile-nav .btn { flex: 1; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-cta { display: flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 42% at 88% 8%, rgba(174,138,91,.16), transparent 70%),
    radial-gradient(40% 36% at 4% 92%, rgba(138,111,85,.12), transparent 70%);
  pointer-events: none;
}

.hero-grid { display: grid; gap: 2.8rem; align-items: center; position: relative; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.hero-copy .eyebrow { margin-bottom: 1.2rem; }
.hero-copy h1 em { font-style: italic; font-weight: 500; color: var(--gold-deep); }
.hero-copy .lede { margin: 1.4rem 0 2rem; max-width: 34rem; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.9rem;
  flex-wrap: wrap;
}
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.hero-rating .rating-text { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.hero-rating .rating-sub { font-size: 0.85rem; color: var(--ink-3); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(43,37,29,.1);
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
@media (min-width: 960px) { .hero-media img { aspect-ratio: 4 / 4.9; } }

.hero-badge {
  position: absolute;
  left: -0.6rem;
  bottom: 2rem;
  background: var(--dark);
  color: var(--cream);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-soft);
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 0 4px rgba(111,207,151,.2);
  flex: none;
}
.hero-badge strong { display: block; font-size: 0.92rem; }
.hero-badge small { color: rgba(250,246,238,.65); font-size: 0.75rem; }

/* Page hero (inner pages) */
.page-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem); background: var(--beige); position: relative; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 60% at 92% 0%, rgba(174,138,91,.18), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 46rem; }
.page-hero .lede { margin-top: 1.3rem; max-width: 42rem; }
.page-hero .btn-row { margin-top: 2.1rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; font-size: 0.82rem; color: var(--ink-3); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--brown); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden] { color: var(--line-strong, rgba(43,37,29,.35)); }

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; padding: 2.2rem 0; text-align: center; }
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: grid; gap: 0.4rem; justify-items: center; }
.trust-item .stars svg { width: 16px; height: 16px; }
.trust-item strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.trust-item span { font-size: 0.82rem; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- Split feature (about blocks) ---------- */
.split { display: grid; gap: 2.6rem; align-items: center; }
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .split--flip .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.split-media::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .55;
}
.split-copy h2 { margin-bottom: 1.2rem; }
.split-copy p + p { margin-top: 1rem; }
.split-copy .btn-row { margin-top: 1.8rem; }
.split-copy .check-list { margin-top: 1.5rem; display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-2); font-size: 0.98rem; }
.check-list svg { flex: none; margin-top: 0.28rem; }

/* ---------- Cards: services ---------- */
.card-grid { display: grid; gap: 1.6rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card .card-img { overflow: hidden; }
.service-card .card-img img { aspect-ratio: 16/10.5; object-fit: cover; width: 100%; transition: transform .6s ease; }
.service-card:hover .card-img img { transform: scale(1.05); }
.service-card .card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.service-card h3 { font-size: 1.42rem; }
.service-card p { font-size: 0.94rem; flex: 1; }
.service-card .link-arrow { margin-top: 0.4rem; }

/* ---------- Why choose / features ---------- */
.feature-grid { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.feature {
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(250,246,238,.14);
  border-radius: var(--radius);
  background: var(--dark-2);
  transition: border-color .3s ease, transform .3s ease;
}
.feature:hover { border-color: rgba(174,138,91,.5); transform: translateY(-4px); }
.feature svg { margin-bottom: 1rem; }
.feature h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.9rem; }

/* On light background variant */
.feature-grid--light .feature { background: #fff; border-color: var(--line); }
.feature-grid--light .feature h3 { color: var(--ink); }
.feature-grid--light .feature p { color: var(--ink-2); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: block;
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36,31,24,.45));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  left: 0.9rem; bottom: 0.7rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 17, 12, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox .lb-cap { color: rgba(250,246,238,.8); margin-top: 1rem; font-size: 0.9rem; text-align: center; }
.lb-btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250,246,238,.1);
  border: 1px solid rgba(250,246,238,.25);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: background .25s ease;
}
.lb-btn:hover { background: rgba(250,246,238,.22); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; max-width: 780px; }
.faq-list--center { margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .faq-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform .3s ease, background .3s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--beige); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 1.35rem 1.25rem; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band-inner {
  background: var(--dark);
  border-radius: 26px;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 85% 20%, rgba(174,138,91,.28), transparent 70%);
}
.cta-band-inner > * { position: relative; }
.cta-band h2 { color: var(--cream); max-width: 36rem; }
.cta-band p { color: rgba(250,246,238,.75); margin: 1rem 0 1.9rem; max-width: 34rem; }

/* ---------- Info panels (contact / location) ---------- */
.info-grid { display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .info-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; } }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.info-card h2, .info-card h3 { margin-bottom: 1.2rem; }
.contact-rows { display: grid; gap: 1.15rem; margin-bottom: 1.8rem; }
.contact-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-row svg { flex: none; margin-top: 0.2rem; }
.contact-row strong { display: block; font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.15rem; }
.contact-row span, .contact-row a { color: var(--ink); font-size: 0.98rem; text-decoration: none; }
.contact-row a:hover { color: var(--gold-deep); }

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.hours-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF6D; }

/* ---------- Location page blocks ---------- */
.loc-points { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.loc-points li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.loc-points svg { flex: none; margin-top: 0.2rem; }

.loc-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.loc-chip:hover { border-color: var(--gold); background: var(--beige); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 1.8rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; }

/* ---------- Legal pages ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.65rem; margin: 2.4rem 0 0.9rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; color: var(--ink-2); }
.prose li { margin-bottom: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(250,246,238,.78); padding: clamp(3.5rem, 7vw, 5rem) 0 0; }
.footer-grid { display: grid; gap: 2.4rem; padding-bottom: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-sub { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; margin-top: 1.1rem; color: rgba(250,246,238,.65); max-width: 22rem; }
.footer-brand .btn-row { margin-top: 1.4rem; }
.site-footer h3 { color: var(--cream); font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { text-decoration: none; font-size: 0.92rem; color: rgba(250,246,238,.72); transition: color .25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 0.7rem; font-size: 0.92rem; }
.footer-contact a { color: rgba(250,246,238,.85); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,.12);
  padding: 1.4rem 0 calc(1.4rem + 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(250,246,238,.5);
}
.footer-bottom a { color: rgba(250,246,238,.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
@media (min-width: 900px) { .footer-bottom { padding-bottom: 1.4rem; } }

/* ---------- Floating WhatsApp (desktop) ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: none;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(30,126,76,.55);
  transition: transform .25s ease, background .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); background: var(--wa-deep); }
@media (min-width: 900px) { .wa-float { display: grid; } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem calc(0.95rem + env(safe-area-inset-bottom));
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-cta .m-call { background: var(--ink); color: var(--cream); }
.mobile-cta .m-wa { background: var(--wa); color: #fff; }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

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