/* ============================================================
   Aesthetic by Maria — Kensington, London
   Premium landing page stylesheet
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --cream:      #F6F2EB;
  --cream-2:    #EFE8DC;
  --cream-3:    #E7DCCB;
  --ink:        #1B1712;
  --ink-2:      #2C261E;
  --ink-soft:   #6A6156;
  --gold:       #B08A4F;
  --gold-2:     #C6A05B;
  --gold-soft:  #EDE2CE;
  --white:      #FFFFFF;
  --line:       rgba(27,23,18,.14);
  --line-soft:  rgba(27,23,18,.08);
  --shadow-sm:  0 2px 10px rgba(27,23,18,.06);
  --shadow-md:  0 18px 50px -20px rgba(27,23,18,.28);
  --shadow-lg:  0 40px 80px -30px rgba(27,23,18,.35);

  --serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(72px, 9vw, 132px);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(15.5px, 1.05vw, 17px);
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .002em;
  margin: 0;
  color: var(--ink);
}

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

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7;
}
.h-display { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
.h-section { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); font-weight: 300; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: var(--btn-pad-y) 28px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .3s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--white); box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { gap: .9em; color: var(--gold); }
.textlink svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  transition: height .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(246,242,235,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header.scrolled .bar { height: 66px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text {
  font-family: var(--serif); font-weight: 600; font-size: 1.28rem;
  letter-spacing: .04em; line-height: 1; color: var(--ink);
}
.brand__text small {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: .5rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px; padding-left: 2px;
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  font-size: .82rem; font-weight: 400; letter-spacing: .06em; color: var(--ink-2);
  position: relative; padding-block: 4px; transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { padding: 11px 22px; font-size: .76rem; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; margin-right: -8px;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.drawer[aria-hidden="false"] { visibility: visible; }
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(27,23,18,.45);
  opacity: 0; transition: opacity .4s var(--ease);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 26px var(--gutter);
}
.drawer[aria-hidden="false"] .drawer__overlay { opacity: 1; }
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; }
.drawer__close { background: none; border: 0; color: var(--ink); padding: 6px; }
.drawer__close svg { width: 24px; height: 24px; }
.drawer__nav { display: flex; flex-direction: column; gap: .3rem; }
.drawer__nav a {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--ink);
  padding: .5rem 0; border-bottom: 1px solid var(--line-soft);
}
.drawer__foot { margin-top: auto; padding-top: 2rem; }
.drawer__contact { font-size: .9rem; color: var(--ink-soft); margin: 0 0 1.2rem; }
.drawer__contact a { color: var(--ink); border-bottom: 1px solid var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 120px; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero h1 { margin-bottom: 1.6rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lead { margin: 0 0 2.2rem; max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center;
  padding-top: 1.8rem; border-top: 1px solid var(--line-soft);
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-soft); }
.trust-item strong { color: var(--ink); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%;
}
.hero__badge {
  position: absolute; left: -26px; bottom: 40px;
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 18px 24px; max-width: 220px;
}
.hero__badge .num { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--gold); }
.hero__badge .lbl { font-size: .74rem; letter-spacing: .04em; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Marquee / tech strip ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--cream-2); }
.strip__inner { padding-block: 30px; }
.strip__label {
  text-align: center; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 20px;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 3.4rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink-2);
  white-space: nowrap; opacity: .8; letter-spacing: .02em;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Pillars / Why ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.pillar { background: var(--cream); padding: 40px 30px; transition: background .4s var(--ease); }
.pillar:hover { background: var(--white); }
.pillar__icon {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); margin-bottom: 22px;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.pillar p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* ---------- Treatments ---------- */
.treat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.treat-groups { display: grid; gap: clamp(28px, 4vw, 52px); }
.treat-group__title {
  display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft);
}
.treat-group__title h3 { font-size: 1.85rem; }
.treat-group__title span { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.treat-card {
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 26px 24px 22px; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cream-3); background: var(--white); }
.treat-card h4 { font-size: 1.4rem; }
.treat-card p { margin: 0; font-size: .88rem; color: var(--ink-soft); flex: 1; }
.treat-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .8rem; }
.treat-card__tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.treat-card__enquire {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: .4em; transition: gap .3s var(--ease), color .3s var(--ease);
}
.treat-card__enquire:hover { gap: .8em; color: var(--gold); }
.treat-card__enquire svg { width: 14px; height: 14px; }
.treat-note { margin-top: 2.6rem; text-align: center; font-size: .9rem; color: var(--ink-soft); }

/* ---------- Experience / steps ---------- */
.experience { background: var(--ink); color: var(--cream); border-radius: 0; }
.experience .eyebrow { color: var(--gold-2); }
.experience h2, .experience h3 { color: var(--cream); }
.experience .lead { color: rgba(246,242,235,.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(246,242,235,.12); border: 1px solid rgba(246,242,235,.12); border-radius: var(--radius-lg); overflow: hidden; margin-top: 3.4rem; }
.step { background: var(--ink); padding: 44px 34px; }
.step__num { font-family: var(--serif); font-size: 1rem; letter-spacing: .2em; color: var(--gold-2); margin-bottom: 1.4rem; }
.step h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.step p { margin: 0; color: rgba(246,242,235,.62); font-size: .92rem; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/4; object-fit: cover; }
.about__content { max-width: 560px; }
.about__content h2 { margin-bottom: 1.4rem; }
.about__content p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.about__sig { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); font-style: italic; margin-top: 1.4rem; }
.about__sig small { display: block; font-family: var(--sans); font-style: normal; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.6rem; margin: 2rem 0; padding: 1.8rem 0; border-block: 1px solid var(--line-soft); }
.cred { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; }
.cred svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-2); }
.reviews__top { display: flex; flex-direction: column; align-items: center; gap: .8rem; margin-bottom: 3.2rem; text-align: center; }
.rating-badge { display: inline-flex; align-items: center; gap: .8rem; background: var(--cream); border: 1px solid var(--line-soft); border-radius: 100px; padding: 10px 22px; box-shadow: var(--shadow-sm); }
.rating-badge .score { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.rating-badge .meta { font-size: .78rem; color: var(--ink-soft); text-align: left; }
.rating-badge .stars svg { width: 16px; height: 16px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review {
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.review .stars { margin-bottom: 1rem; }
.review p { margin: 0 0 1.4rem; font-size: .95rem; color: var(--ink-2); flex: 1; }
.review__by { display: flex; align-items: center; gap: .7rem; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; flex: none; }
.review__name { font-size: .9rem; font-weight: 500; }
.review__src { font-size: .74rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.faq__list { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding: 24px 0; font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
}
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq__item[aria-expanded="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq__a-inner { padding: 0 0 26px; color: var(--ink-soft); max-width: 46em; }
.faq__cta { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 40px 36px; }
.faq__cta h3 { font-size: 1.9rem; margin-bottom: .8rem; }
.faq__cta p { color: var(--ink-soft); margin: 0 0 1.6rem; }

/* ---------- Location ---------- */
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.location__card { }
.info-list { display: grid; gap: 1.4rem; margin: 2rem 0; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex: none; }
.info-row__icon svg { width: 20px; height: 20px; }
.info-row__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.info-row__value { font-size: 1.02rem; color: var(--ink); }
.info-row__value a { border-bottom: 1px solid var(--line); transition: border-color .3s var(--ease); }
.info-row__value a:hover { border-color: var(--gold); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); position: relative; aspect-ratio: 4/5; background: var(--cream-2); }
.map-frame img { width: 100%; height: 100%; object-fit: cover; }
.map-frame__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 30px; text-align: center; background: linear-gradient(180deg, transparent 40%, rgba(27,23,18,.55));
}
.map-frame__overlay .btn { }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-cta .eyebrow { color: var(--gold-2); }
.final-cta h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.2rem; }
.final-cta p { color: rgba(246,242,235,.72); max-width: 40em; margin: 0 auto 2.4rem; }
.final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: rgba(246,242,235,.72); padding-block: clamp(56px, 7vw, 88px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3.4rem; }
.footer .brand__text { color: var(--cream); }
.footer__about { margin: 1.4rem 0 1.6rem; font-size: .9rem; max-width: 30ch; }
.footer h2 { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 1.4rem; font-weight: 500; line-height: 1.4; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a, .footer__contact a { font-size: .92rem; color: rgba(246,242,235,.72); transition: color .3s var(--ease); }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-2); }
.footer__contact { display: grid; gap: .9rem; font-size: .92rem; }
.footer__contact div { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 3px; }
.socials { display: flex; gap: .7rem; margin-top: 1.6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(246,242,235,.18); display: grid; place-items: center; color: rgba(246,242,235,.8); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid rgba(246,242,235,.12); font-size: .8rem; }
.footer__bottom nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-2); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: .7rem;
  background: #25D366; color: #fff; padding: 14px 20px 14px 16px;
  border-radius: 100px; box-shadow: 0 14px 34px -8px rgba(0,0,0,.4);
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -8px rgba(0,0,0,.45); }
.wa-float svg { width: 24px; height: 24px; flex: none; }
.wa-float__text { white-space: nowrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 2rem; }
}
@media (max-width: 900px) {
  .nav, .header-cta span.full { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__media img { aspect-ratio: 5/5; }
  .hero__badge { left: auto; right: -10px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .steps { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .map-frame { max-width: 520px; aspect-ratio: 16/10; }
}
@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; }
  .wa-float__text { display: none; }
  .wa-float { padding: 15px; }
}
@media (min-width: 1600px) {
  :root { --container: 1320px; }
}
