/* =========================================================================
   Latina Body Contour Spa — stylesheet
   Palette: "noir & blush & gold" — warm ivory/champagne light base for
   airiness, the logo's rose-magenta pink promoted to a real supporting
   accent (rule lines, hairline diamonds, card-hover borders, the language
   toggle, gradient glows, the featured banner, primary CTAs), bronze-gold
   kept as jewelry (hairlines, icons, small dividers, secondary buttons —
   no longer the dominant accent), and a rich near-black ink used for the
   site's dark beats (About, footer) so the logo's black line-art + pink
   circle read as native rather than a light-brand mark on brown.
   Fonts: Cormorant Garamond (display) / Jost (body) — matches printed flyer.
   ========================================================================= */

:root{
  /* ---- color ---- */
  --ivory:        #FAF7F2;
  --champagne:    #F3EBDD;
  --sand:         #F1E9DC;
  --sand-deep:    #E9DDC8;
  --espresso:     #2A2320;
  --espresso-70:  rgba(42,35,32,.7);
  --espresso-50:  rgba(42,35,32,.5);
  /* bronze/champagne gold — now a supporting "jewelry" tone (hairlines,
     icons, dividers, secondary buttons), not the lead accent */
  --gold:         #A17C42;
  --gold-light:   #C3A05F;
  --gold-pale:    #E4CE9E;
  --gold-line:    rgba(161,124,66,.38);
  --gold-deep:    #8C6934;
  /* deeper "ink gold" — used for gold TEXT on light backgrounds so it
     clears WCAG AA contrast */
  --gold-text:    #7A5B2C;
  /* rose-magenta pink, lifted straight from the logo's circle mark — now a
     real supporting accent throughout (not just a micro-accent) */
  --pink:         #D24E93;
  --pink-deep:    #B6357C;
  --pink-soft:    #EBA7CC;
  --pink-pale:    #FBEAF3;
  --pink-line:    rgba(210,78,147,.4);
  /* deep noir ink — About + footer backgrounds, so the logo's black
     line-art feels native instead of sitting on brown espresso */
  --noir:         #1B1614;
  --noir-2:       #241C19;
  --white:        #FFFFFF;

  /* ---- type ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  /* ---- motion ---- */
  --ease: cubic-bezier(.32,.72,0,1);

  /* ---- layout ---- */
  --maxw: 1180px;
  --nav-h: 84px;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ivory);
  color:var(--espresso);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
section{ position:relative; }

/* honour reduced-motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ---------------------------------------------------------------- grain
   Fixed, pointer-events:none overlay — never attached to scrolling content */
.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- utility */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold-text); font-weight:500;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:linear-gradient(90deg, var(--pink), var(--gold)); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-head .eyebrow{ justify-content:center; margin-bottom:18px; }
.section-head h2{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(2.1rem, 4.4vw, 3.1rem); color:var(--espresso); line-height:1.1;
}
.section-head p:not(.eyebrow){
  margin-top:16px; font-size:1.02rem; color:var(--espresso-70); font-weight:300;
}
.hairline{
  width:64px; height:1px; margin:22px auto 0; background:var(--gold-line);
  position:relative;
}
.hairline::after{
  content:""; position:absolute; left:50%; top:50%; width:6px; height:6px;
  transform:translate(-50%,-50%) rotate(45deg); background:var(--pink-deep);
}

/* reveal-on-scroll (JS toggles .is-visible; html.js is set by script.js so
   content stays fully visible when JS is off, blocked, or fails to load) */
html.js .reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  filter:blur(6px);
}
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); filter:blur(0); }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }

/* directional variants — "stuff coming out of the sides": modest translateX
   distances, same easing/duration family as the base .reveal fade-up */
html.js .reveal.reveal-left{ transform:translateX(-56px); }
html.js .reveal.reveal-left.is-visible{ transform:translateX(0); }
html.js .reveal.reveal-right{ transform:translateX(56px); }
html.js .reveal.reveal-right.is-visible{ transform:translateX(0); }

/* gold hairline "draw" — scaleX(0) to scaleX(1) once its parent .reveal
   block enters view. Piggybacks on the existing IntersectionObserver via
   the parent's .is-visible class, no extra JS needed. */
html.js .hairline{
  transform:scaleX(0); transform-origin:center;
  transition:transform 1s var(--ease) .25s;
}
html.js .reveal.is-visible .hairline{ transform:scaleX(1); }

/* ---------------------------------------------------------------- buttons */
.btn{
  --pad-y:14px; --pad-x:26px;
  display:inline-flex; align-items:center; gap:12px;
  padding:var(--pad-y) var(--pad-x);
  border-radius:999px; border:1px solid transparent;
  font-family:var(--font-body); font-size:13.5px; letter-spacing:.06em;
  text-transform:uppercase; font-weight:500;
  transition:transform .5s var(--ease), background-color .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }

/* primary CTA system: noir fill + pink hover-glow — echoes the logo's
   black line-art with its pink circle as the accent. Ivory text on the
   noir gradient clears ~16.8:1 contrast (AA needs 4.5:1). */
.btn-gold{
  background:linear-gradient(135deg, var(--noir-2), var(--noir));
  color:var(--ivory);
  border-color:rgba(210,78,147,.32);
  box-shadow:0 10px 26px -12px rgba(27,22,20,.6);
}
.btn-gold:hover{
  border-color:var(--pink);
  box-shadow:0 14px 32px -10px rgba(182,53,124,.5);
  transform:translateY(-2px);
}
.btn-gold .btn-ic{ background:linear-gradient(135deg, var(--pink), var(--gold-light)); }

.btn-outline{
  background:transparent; border-color:var(--gold-line); color:var(--espresso);
}
.btn-outline:hover{ border-color:var(--gold); background:rgba(161,124,66,.06); transform:translateY(-2px); }

.btn-ghost-light{
  background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.35); color:var(--ivory);
}
.btn-ghost-light:hover{ background:rgba(255,255,255,.16); transform:translateY(-2px); }

.btn .btn-ic{
  width:26px; height:26px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.22);
  transition:transform .5s var(--ease);
  flex:0 0 auto;
}
.btn:hover .btn-ic{ transform:translate(2px,-1px) scale(1.06); }
.btn-outline .btn-ic{ background:rgba(161,124,66,.14); }
.btn .btn-ic svg{ width:12px; height:12px; }

/* ================================================================= NAV */
.nav-spacer{ height:calc(var(--nav-h) + 22px); }

.site-nav{
  position:fixed; top:16px; left:50%; transform:translateX(-50%);
  z-index:40; width:min(94vw, 1080px);
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:10px 12px 10px 18px;
  border-radius:999px;
  background:rgba(250,247,242,.72);
  border:1px solid rgba(161,124,66,.22);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 10px 30px -18px rgba(42,35,32,.35);
  transition:background-color .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.site-nav.is-scrolled{
  background:rgba(250,247,242,.92);
  box-shadow:0 14px 34px -16px rgba(42,35,32,.4);
}

.nav-brand{ display:flex; align-items:center; gap:10px; min-width:0; }
.nav-brand img{ height:40px; width:auto; }
.nav-brand span{
  font-family:var(--font-display); font-weight:600; font-size:1.05rem;
  color:var(--espresso); white-space:nowrap;
}

.nav-links{ display:none; align-items:center; gap:30px; }
.nav-links a{
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:500; color:var(--espresso-70);
  position:relative; padding:4px 0;
  transition:color .4s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background:var(--gold); transition:right .45s var(--ease);
}
.nav-links a:hover{ color:var(--espresso); }
.nav-links a:hover::after{ right:0; }

.nav-actions{ display:flex; align-items:center; gap:10px; }

.lang-toggle{
  display:flex; align-items:center; border-radius:999px;
  border:1px solid var(--gold-line); overflow:hidden; flex:0 0 auto;
}
.lang-toggle button{
  border:0; background:transparent; padding:7px 11px; font-size:11.5px;
  letter-spacing:.08em; font-weight:500; color:var(--espresso-70);
  transition:background-color .4s var(--ease), color .4s var(--ease);
}
.lang-toggle button.is-active{ background:var(--pink-deep); color:var(--ivory); }

.nav-cta{ display:none; }

.nav-burger{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--gold-line);
  background:transparent; display:flex; align-items:center; justify-content:center;
  position:relative; flex:0 0 auto;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:""; position:absolute; width:16px; height:1.4px; background:var(--espresso);
  transition:transform .5s var(--ease), opacity .3s var(--ease), top .35s var(--ease);
}
.nav-burger span{ top:19px; }
.nav-burger span::before{ top:-5px; left:0; }
.nav-burger span::after{ top:5px; left:0; }
.nav-burger.is-open span{ background:transparent; }
.nav-burger.is-open span::before{ top:0; transform:rotate(45deg); background:var(--espresso); }
.nav-burger.is-open span::after{ top:0; transform:rotate(-45deg); background:var(--espresso); }

/* mobile full-screen menu */
.mobile-menu{
  position:fixed; inset:0; z-index:35;
  background:rgba(250,247,242,.97);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:26px;
  opacity:0; visibility:hidden;
  transition:opacity .55s var(--ease), visibility 0s linear .55s;
}
.mobile-menu.is-open{ opacity:1; visibility:visible; transition:opacity .55s var(--ease); }
.mobile-menu a{
  font-family:var(--font-display); font-size:2rem; font-weight:500;
  color:var(--espresso);
  opacity:0; transform:translateY(28px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.mobile-menu.is-open a{ opacity:1; transform:translateY(0); }
.mobile-menu.is-open a:nth-child(1){ transition-delay:.08s; }
.mobile-menu.is-open a:nth-child(2){ transition-delay:.14s; }
.mobile-menu.is-open a:nth-child(3){ transition-delay:.2s; }
.mobile-menu.is-open a:nth-child(4){ transition-delay:.26s; }
/* .mobile-menu a{ color:var(--espresso); } above would otherwise win on
   specificity over .btn-gold's ivory text (two classes here beats one) */
.mobile-menu .btn{ color:var(--ivory); opacity:0; transform:translateY(28px); transition:opacity .6s var(--ease), transform .6s var(--ease), color .3s var(--ease); transition-delay:.32s; }
.mobile-menu.is-open .btn{ opacity:1; transform:translateY(0); }

@media(min-width:900px){
  .nav-links{ display:flex; }
  .nav-cta{ display:inline-flex; }
  .nav-burger{ display:none; }
  .mobile-menu{ display:none; }
}

/* ================================================================ HERO */
.hero{
  position:relative; min-height:100dvh;
  display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
  padding:calc(var(--nav-h) + 40px) 24px 90px;
  isolation:isolate;
}
.hero-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(60% 55% at 18% 12%, rgba(195,160,95,.32), transparent 60%),
    radial-gradient(55% 50% at 85% 15%, rgba(210,78,147,.16), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(161,124,66,.24), transparent 65%),
    linear-gradient(180deg, #FCF9F4 0%, var(--ivory) 45%, var(--sand) 100%);
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(161,124,66,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161,124,66,.16) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(70% 60% at 50% 40%, black, transparent 75%);
  mask-image:radial-gradient(70% 60% at 50% 40%, black, transparent 75%);
  opacity:.5;
}

/* asymmetric split: text left, ornamental panel right (stacks on mobile) */
.hero-grid{
  display:grid; grid-template-columns:1fr; gap:56px; align-items:center; width:100%;
}
@media(min-width:900px){
  .hero{ text-align:left; }
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:40px; }
}

.hero-content{ display:flex; flex-direction:column; align-items:center; }
@media(min-width:900px){ .hero-content{ align-items:flex-start; } }

.hero h1{
  font-family:var(--font-display); font-weight:500; font-style:italic;
  font-size:clamp(2.4rem, 6.4vw, 4.2rem); line-height:1.08; color:var(--espresso);
  max-width:16ch; margin:18px auto 0;
}
@media(min-width:900px){ .hero h1{ margin:18px 0 0; } }

.hero .eyebrow{ justify-content:center; }
@media(min-width:900px){ .hero .eyebrow{ justify-content:flex-start; } }

.hero-sub{
  margin:26px auto 0; max-width:46ch; font-size:1.05rem; font-weight:300;
  color:var(--espresso-70);
}
@media(min-width:900px){ .hero-sub{ margin:26px 0 0; } }

.hero-actions{
  margin-top:38px; display:flex; flex-direction:column; align-items:center; gap:16px;
}
@media(min-width:900px){ .hero-actions{ align-items:flex-start; } }

.hero-note{
  font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-text);
  display:flex; align-items:center; gap:8px;
}
.hero-note::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); }

/* ---- ornamental panel: gold arcs (SVG) + floating logo medallion ---- */
.hero-ornament{
  position:relative; width:100%; max-width:380px; aspect-ratio:1/1; margin:0 auto;
  display:flex; align-items:center; justify-content:center;
}
.ornament-arcs{
  position:absolute; inset:0; width:100%; height:100%;
  animation:ornamentSpin 90s linear infinite;
}
.ornament-medallion{
  position:relative; width:42%; aspect-ratio:1/1; border-radius:50%;
  background:linear-gradient(160deg, var(--pink-pale), var(--gold-pale) 55%, var(--ivory));
  border:1px solid var(--pink-line);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 24px 60px -22px rgba(42,35,32,.4);
  animation:ornamentFloat 7s ease-in-out infinite;
}
.ornament-medallion img{ width:58%; }

@media(max-width:899px){ .hero-ornament{ max-width:260px; } }

@keyframes ornamentFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes ornamentSpin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--gold-text); opacity:.85;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(var(--gold), transparent); animation:cue 2.2s var(--ease) infinite; }
.scroll-cue span{ font-size:10px; letter-spacing:.25em; text-transform:uppercase; }
@keyframes cue{ 0%{ opacity:.2; transform:scaleY(.3); transform-origin:top; } 50%{ opacity:1; transform:scaleY(1); transform-origin:top; } 100%{ opacity:.2; transform:scaleY(.3); transform-origin:top; } }

/* ============================================================ SERVICES */
.services{ padding:120px 0 100px; background:var(--ivory); overflow-x:clip; }

.svc-group{ margin-bottom:64px; }
.svc-group:last-child{ margin-bottom:0; }

.svc-group-head{
  display:flex; align-items:baseline; gap:18px; margin-bottom:26px;
}
.svc-group-head .num{
  font-family:var(--font-display); font-style:italic; font-size:1.1rem; color:var(--gold-text);
}
.svc-group-head h3{
  font-family:var(--font-display); font-weight:600; font-size:clamp(1.4rem,2.6vw,1.85rem);
  color:var(--espresso);
}
.svc-group-head .rule{ flex:1; height:1px; background:var(--gold-line); }

/* alternate category alignment left/right for a less uniform rhythm */
.svc-group-alt .svc-group-head{ flex-direction:row-reverse; text-align:right; }

.svc-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
@media(min-width:640px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }

/* double-bezel card */
.svc-shell{
  padding:6px; border-radius:1.6rem;
  background:rgba(161,124,66,.08);
  border:1px solid rgba(161,124,66,.18);
  transition:transform .55s var(--ease), background-color .55s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease);
}
.svc-shell:hover{
  transform:translateY(-6px);
  background:linear-gradient(135deg, rgba(210,78,147,.12), rgba(161,124,66,.14));
  border-color:var(--pink-line);
  box-shadow:0 22px 44px -24px rgba(182,53,124,.3);
}

.svc-card{
  height:100%; background:var(--white);
  border-radius:calc(1.6rem - 6px);
  padding:26px 24px 22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
  display:flex; flex-direction:column; gap:14px;
}
.svc-card h4{
  font-family:var(--font-display); font-weight:600; font-size:1.4rem; color:var(--espresso);
  line-height:1.15;
}
.svc-card p{ font-size:.92rem; color:var(--espresso-70); font-weight:300; flex:1; }

.svc-meta{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding-top:14px; border-top:1px solid rgba(161,124,66,.18);
}
.svc-meta .price{ font-family:var(--font-display); font-weight:600; font-size:1.15rem; color:var(--gold-text); }
.svc-meta .dur{
  font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--espresso-50);
  display:flex; align-items:center; gap:6px;
}
.svc-meta .dur svg{ width:13px; height:13px; }

.svc-book{
  align-self:flex-start; margin-top:2px;
  display:inline-flex; align-items:center; gap:8px;
  font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; font-weight:500;
  color:var(--gold-text);
  padding:9px 16px; border-radius:999px; border:1px solid var(--gold-line);
  transition:background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.svc-book:hover{ background:var(--pink-deep); color:var(--ivory); border-color:var(--pink-deep); }
.svc-book svg{ width:11px; height:11px; transition:transform .4s var(--ease); }
.svc-book:hover svg{ transform:translate(2px,-1px); }

/* featured (free consultation) — pink+gold blend so the site's #1
   conversion entry point reads as unmissable but still refined */
.svc-shell.is-featured{
  background:linear-gradient(135deg, rgba(210,78,147,.20), rgba(161,124,66,.20));
  border:1.5px solid var(--pink);
  box-shadow:0 26px 52px -28px rgba(182,53,124,.4);
}
.svc-shell.is-featured .svc-card{ background:linear-gradient(180deg,#FFFDF9,var(--white)); }

/* "Start Here" tag — pink pulled from the logo's circle mark */
.svc-badge{
  align-self:flex-start;
  font-size:10px; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  color:var(--ivory); background:var(--pink-deep); padding:5px 12px; border-radius:999px;
  margin-bottom:-4px;
}

/* free-consultation banner — standalone, full-width block above Services
   group 01 (its own top-level child of .wrap, so it needs no grid-column
   span); the primary CTA inside it mirrors the noir+pink .btn-gold system
   instead of the quiet gold-outline used on ordinary service cards */
.svc-feature-top{ margin-bottom:64px; }
.svc-book-primary{
  background:linear-gradient(135deg, var(--noir-2), var(--noir));
  color:var(--ivory); border-color:transparent;
}
.svc-card-banner{ gap:22px; }
@media(min-width:760px){
  .svc-card-banner{
    flex-direction:row; align-items:center; justify-content:space-between;
    gap:32px; padding:34px 38px;
  }
  .svc-banner-text{ max-width:56%; display:flex; flex-direction:column; gap:12px; }
  .svc-banner-action{
    display:flex; flex-direction:column; align-items:flex-end; gap:16px; flex:0 0 auto;
  }
  .svc-banner-action .svc-meta{ border-top:0; padding-top:0; justify-content:flex-end; gap:18px; }
}

/* =============================================================== ABOUT
   Dark "luxe" inversion — now that the Promos section is gone, About
   carries the page's one dark beat so the rhythm still breathes
   light -> light -> gold band -> DARK -> light -> DARK (footer). */
.about{
  padding:120px 0; color:var(--ivory); overflow-x:clip;
  background:
    radial-gradient(55% 60% at 82% 0%, rgba(210,78,147,.16), transparent 62%),
    radial-gradient(50% 55% at 8% 100%, rgba(161,124,66,.18), transparent 60%),
    var(--noir);
}
.about-grid{
  display:grid; grid-template-columns:1fr; gap:48px; align-items:center;
}
@media(min-width:900px){ .about-grid{ grid-template-columns:.85fr 1.15fr; gap:70px; } }

.about-visual{
  position:relative; aspect-ratio:4/5; border-radius:2rem;
  background:linear-gradient(150deg, rgba(195,160,95,.28), var(--noir-2) 65%);
  border:1px solid rgba(210,78,147,.3);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.about-visual img{ width:56%; opacity:.95; }
.about-visual::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(55% 45% at 26% 18%, rgba(210,78,147,.28), transparent 60%),
    radial-gradient(55% 45% at 80% 85%, rgba(195,160,95,.24), transparent 60%);
}

.about-copy .eyebrow{ margin-bottom:18px; color:var(--gold-light); }
.about-copy .eyebrow::before{ background:linear-gradient(90deg, var(--pink-soft), var(--gold-light)); }
.about-copy h2{
  font-family:var(--font-display); font-weight:500; font-size:clamp(2rem,3.6vw,2.7rem);
  line-height:1.14; margin-bottom:22px; color:var(--ivory);
}
.about-copy p:not(.eyebrow){ font-size:1.02rem; color:rgba(250,247,242,.75); font-weight:300; }
.about-copy p + p{ margin-top:16px; }

.about-points{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:32px; }
.about-point{ display:flex; gap:12px; align-items:flex-start; }
.about-point .ic{
  flex:0 0 auto; width:34px; height:34px; border-radius:50%;
  background:rgba(195,160,95,.18); display:flex; align-items:center; justify-content:center;
}
.about-point .ic svg{ width:16px; height:16px; stroke:var(--gold-light); }
.about-point span{ font-size:.86rem; color:rgba(250,247,242,.75); line-height:1.4; }

/* ============================================================ POLICIES */
.policies{
  padding:44px 0; background:linear-gradient(120deg, var(--gold-light), var(--gold-deep));
  color:var(--espresso);
}
.policies .wrap{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:14px 34px; text-align:center;
}
.policies p{ font-size:.92rem; font-weight:400; }
.policies .divider{ width:5px; height:5px; border-radius:50%; background:rgba(42,35,32,.4); }
.policies strong{ font-weight:600; }

/* ========================================================== LOCATION */
.location{ padding:120px 0; background:var(--sand-deep); overflow-x:clip; }
.loc-grid{ display:grid; grid-template-columns:1fr; gap:40px; }
@media(min-width:900px){ .loc-grid{ grid-template-columns:1fr 1fr; gap:56px; align-items:stretch; } }

.loc-map{
  border-radius:1.6rem; overflow:hidden; border:1px solid var(--gold-line);
  min-height:320px; box-shadow:0 20px 46px -26px rgba(42,35,32,.4);
}
.loc-map iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; filter:saturate(.85) contrast(1.02); }

.loc-info{
  background:var(--white); border:1px solid var(--gold-line); border-radius:1.6rem;
  padding:38px 34px;
}
.loc-info h3{ font-family:var(--font-display); font-weight:600; font-size:1.6rem; margin-bottom:6px; }
.loc-addr{ color:var(--espresso-70); font-size:.98rem; margin-bottom:26px; }

.loc-hours{ display:grid; gap:10px; margin-bottom:26px; }
.loc-hours .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid rgba(161,124,66,.16);
  font-size:.92rem;
}
.loc-hours .row:last-child{ border-bottom:0; }
.loc-hours .day{ color:var(--espresso); font-weight:500; }
.loc-hours .time{ color:var(--espresso-70); }

.loc-note{
  display:flex; align-items:center; gap:8px; font-size:12px;
  letter-spacing:.08em; text-transform:uppercase; color:var(--gold-text); font-weight:500;
}
.loc-note::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); }

/* =============================================================== FOOTER */
.site-footer{
  color:var(--ivory); padding:90px 0 30px;
  background:
    radial-gradient(50% 55% at 12% 0%, rgba(210,78,147,.14), transparent 60%),
    radial-gradient(55% 60% at 88% 100%, rgba(161,124,66,.16), transparent 60%),
    var(--noir);
}
.footer-top{
  display:grid; grid-template-columns:1fr; gap:44px; padding-bottom:56px;
  border-bottom:1px solid rgba(250,247,242,.12);
}
@media(min-width:800px){ .footer-top{ grid-template-columns:1.2fr 1fr 1fr; gap:40px; } }

.footer-brand img{ height:52px; margin-bottom:16px; }
.footer-brand p{ color:rgba(250,247,242,.6); font-size:.92rem; max-width:34ch; }

.footer-col h5{
  font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
  margin-bottom:20px; font-weight:600;
}
.footer-col ul{ display:grid; gap:13px; }
.footer-col a{
  display:flex; align-items:center; gap:10px; font-size:.92rem;
  color:rgba(250,247,242,.82); transition:color .4s var(--ease), transform .4s var(--ease);
}
.footer-col a:hover{ color:var(--gold-light); transform:translateX(3px); }
.footer-col a svg{ width:15px; height:15px; flex:0 0 auto; stroke:var(--gold-light); }

.footer-bottom{
  padding-top:28px; display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:space-between;
  font-size:12px; color:rgba(250,247,242,.5);
}
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(250,247,242,.18);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .4s var(--ease), background-color .4s var(--ease), transform .4s var(--ease);
}
.footer-social a:hover{ border-color:var(--gold); background:rgba(161,124,66,.14); transform:translateY(-2px); }
.footer-social svg{ width:15px; height:15px; stroke:var(--gold-light); }

/* ============================================================ responsive
   large-screen refinements */
@media(min-width:900px){
  .wrap{ padding:0 40px; }
}
