/* ============================================================
   ANOO'S — Unwanted Hair Removal landing page
   ============================================================ */

/* ---------------------------------------------- 1. tokens -- */
:root{
  /* surfaces */
  --cream:      #FBF8F3;
  --cream-2:    #F6F0E6;
  --sand:       #EFE4D2;
  --line:       #E8DCC8;

  /* ink */
  --ink:        #1A1512;
  --ink-2:      #43382F;
  --muted:      #7C6E62;

  /* metal */
  --gold:       #C39A3C;
  --gold-lt:    #E7CE8E;
  --gold-dk:    #96701E;
  --gold-glow:  rgba(195,154,60,.28);

  /* accents — brand pink sampled from the ANOO'S logo */
  --pink:       #D4145A;
  --pink-dk:    #A20E44;
  --yellow:     #F7CF46;
  --dark:       #17140F;
  --dark-2:     #221D17;

  /* type */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;

  /* metrics */
  --shell:  1220px;
  --gut:    clamp(18px, 4vw, 40px);
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   26px;
  --r-xl:   34px;
  --header-h: 84px;

  --shadow-sm: 0 2px 10px rgba(60, 44, 20, .06);
  --shadow-md: 0 14px 38px -18px rgba(60, 44, 20, .34);
  --shadow-lg: 0 34px 80px -34px rgba(38, 27, 10, .48);

  --ease: cubic-bezier(.22, .68, .32, 1);
}

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

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video{ display: block; max-width: 100%; }
img{ height: auto; }

/* any display: rule below would otherwise beat the UA's [hidden] style */
[hidden]{ display: none !important; }
button, input, select, textarea{ font: inherit; color: inherit; }
button{ cursor: pointer; }
a{ color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote{ margin: 0; }
ul, ol{ padding: 0; list-style: none; }

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

body.is-locked{ overflow: hidden; }

.shell{
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}

.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: fixed; top: 10px; left: 10px; z-index: 300;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: .82rem; font-weight: 600;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus{ transform: none; }

:where(a, button, input, select, [tabindex]):focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------- 3. buttons -- */
.btn{
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 28px;
  border: 0; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .86rem; font-weight: 600; letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.btn:hover{ transform: translateY(-2px); filter: brightness(1.06); }
.btn:active{ transform: translateY(0); }

.btn--pink{
  --btn-bg: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  box-shadow: 0 10px 26px -12px rgba(212, 20, 90, .8);
}
.btn--pink:hover{ box-shadow: 0 16px 34px -12px rgba(212, 20, 90, .9); }

.btn--gold{
  --btn-bg: linear-gradient(135deg, #C9A24A 0%, #9C7522 55%, #C9A24A 100%);
  padding-inline: 46px;
  text-transform: uppercase;
  letter-spacing: .16em;
  box-shadow: 0 12px 28px -14px rgba(150, 112, 30, .9);
}

.btn__arrow{ font-size: .95em; transition: transform .22s var(--ease); }
.btn:hover .btn__arrow{ transform: translate(2px, -2px); }

/* -------------------------------------- 4. section heading -- */
.sec-head{ text-align: center; margin-bottom: clamp(30px, 4.6vw, 56px); }

.sec-head__title{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  background: linear-gradient(180deg, #4A3A22 0%, #7A5E2B 46%, #B08A38 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sec-head__title--sm{ font-size: clamp(1.6rem, 3.4vw, 2.3rem); }

.sec-head__sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(.86rem, 1.5vw, .98rem);
  letter-spacing: .02em;
}

.sec-head--row{ margin-bottom: clamp(22px, 3vw, 38px); }
.sec-head--row .sec-head__title{
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  justify-content: center;
}

/* ----------------------------------------------- 5. brand -- */
.brand{ display: block; flex: none; }
.brand img{
  width: auto;
  height: clamp(38px, 4.4vw, 50px);
  transition: opacity .2s var(--ease);
}
.brand:hover img{ opacity: .82; }

.brand--lg img{ height: clamp(66px, 9vw, 96px); }

/* ---------------------------------------------- 6. header -- */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header::after{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 rgba(200, 178, 138, .34), 0 10px 30px -22px rgba(60, 44, 20, .5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.site-header.is-stuck::after{ opacity: 1; }

.site-header__inner{
  min-height: var(--header-h);
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px);
}

.nav{ margin-inline: auto; }

.nav__links{
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px);
}
.nav__links a{
  position: relative;
  padding: 6px 0;
  font-size: .84rem; font-weight: 500; letter-spacing: .02em;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav__links a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active{ color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after{ transform: scaleX(1); }

/* drawer chrome — only rendered on small screens */
.nav__head, .nav__foot{ display: none; }
.nav-scrim{ display: none; }

.site-header__actions{ display: flex; align-items: center; gap: 16px; }

.phone-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 700; letter-spacing: .01em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.phone-link svg{ width: 17px; height: 17px; fill: var(--gold); flex: none; }
.phone-link:hover{ color: var(--gold-dk); }
.phone-link--light{ color: #fff; }
.phone-link--light svg{ fill: var(--gold-lt); }
.phone-link--light:hover{ color: var(--gold-lt); }

.nav-toggle{
  display: none;
  width: 44px; height: 40px;
  padding: 10px 9px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, .7);
}
.nav-toggle span{
  display: block; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span{ margin-top: 5px; }
.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); }

/* ------------------------------------------------ 7. hero -- */
.hero{
  position: relative;
  padding-top: calc(var(--header-h) + clamp(18px, 3vw, 40px));
  padding-bottom: clamp(70px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}

.hero__wash{
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 78% 22%, #FFFFFF 0%, #FDF9F3 34%, #F7EFE2 68%, #F2E7D6 100%),
    var(--cream-2);
}
.hero__wash::before{
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/flourish.svg");
  background-repeat: no-repeat;
  background-position: center right -6%;
  background-size: 78% auto;
  opacity: .5;
}
.hero__wash::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, rgba(251, 248, 243, 0), var(--cream));
}

.hero__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: min(76vh, 660px);
}

.hero__eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dk);
}
.hero__eyebrow span{
  width: 30px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.3vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--ink);
}

.hero__kicker{
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-2);
}

.hero__price{
  display: flex; align-items: flex-start; gap: 2px;
  margin-top: 2px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.9rem, 7.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
}
/* Playfair has no rupee glyph — render it in the UI face, solid gold */
.hero__rupee{
  font-family: var(--sans);
  font-size: .46em; font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
  margin-right: .05em;
  color: var(--gold-dk);
}
.hero__slash{
  font-family: var(--sans);
  font-size: .4em; font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

.hero__bonus{
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--yellow) 0%, #FFE58A 52%, var(--yellow) 100%);
  box-shadow: 0 10px 24px -14px rgba(184, 148, 26, .9);
  font-size: clamp(.72rem, 1.5vw, .8rem);
  font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  color: #3D2E06;
}
.hero__bonus b{ font-weight: 800; }

.hero__foot{
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(22px, 3.4vw, 38px);
}

.seal{
  width: clamp(88px, 11vw, 116px); aspect-ratio: 1;
  flex: none;
  animation: sealSpin 26s linear infinite;
}
.seal svg{ width: 100%; height: 100%; overflow: visible; }
.seal__ring{ fill: none; stroke: var(--ink); stroke-width: 2.4; }
.seal__ring--in{ stroke-width: 1.1; stroke-dasharray: 3 4; opacity: .55; }
.seal__arc{
  font-family: var(--sans); font-size: 11.4px; font-weight: 700;
  letter-spacing: .16em; fill: var(--ink);
}
.seal__word{
  font-family: var(--sans); font-size: 25px; font-weight: 800;
  letter-spacing: .04em; fill: var(--ink); text-anchor: middle;
}
.seal__sub{
  font-family: var(--sans); font-size: 9.6px; font-weight: 700;
  letter-spacing: .17em; fill: var(--gold-dk); text-anchor: middle;
}
.seal__star{ fill: var(--gold); }
@keyframes sealSpin{ to{ transform: rotate(360deg); } }

.hero__tc{
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

.hero__figure{
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(100%, 560px);
}
.hero__figure img{
  position: relative; z-index: 1;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(70, 52, 26, .18));
  animation: heroRise 1s var(--ease) both;
}
.hero__halo{
  position: absolute; z-index: 0;
  left: 50%; top: 52%;
  width: 86%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .95) 0%, rgba(247, 235, 214, .7) 46%, rgba(247, 235, 214, 0) 72%);
}
@keyframes heroRise{
  from{ opacity: 0; transform: translateY(26px) scale(.985); }
  to  { opacity: 1; transform: none; }
}

.scroll-cue{
  position: absolute; left: 50%; bottom: 22px; z-index: 2;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .64rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue svg{
  width: 15px; height: 15px;
  fill: none; stroke: var(--gold); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  animation: cueBob 1.9s var(--ease) infinite;
}
@keyframes cueBob{
  0%, 100%{ transform: translateY(0); opacity: 1; }
  50%     { transform: translateY(5px); opacity: .5; }
}

/* ------------------------------------------ 8. lead form -- */
.consult{
  position: relative;
  padding: clamp(44px, 6vw, 68px) 0 clamp(46px, 6vw, 72px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-block: 1px solid rgba(232, 220, 200, .8);
}

.consult__title{
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.2;
  color: var(--ink);
}
.consult__sub{
  max-width: 46ch;
  margin: 8px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

.lead-form{ margin-top: clamp(22px, 3vw, 34px); }

.lead-form__grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.field{ position: relative; }

.field input,
.field select{
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .78);
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder{ color: #A2968A; }
.field select{
  appearance: none; -webkit-appearance: none;
  padding-right: 42px;
  color: #A2968A;
  cursor: pointer;
}
.field select.has-value{ color: var(--ink); }
.field select option{ color: var(--ink); }

.field--select::after{
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.6px solid var(--gold-dk);
  border-bottom: 1.6px solid var(--gold-dk);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field input:hover, .field select:hover{ border-color: #DCC9A6; }
.field input:focus, .field select:focus{
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.field.is-invalid input,
.field.is-invalid select{
  border-color: #D24A4A;
  box-shadow: 0 0 0 3px rgba(210, 74, 74, .14);
}
.field__err{
  min-height: 0;
  margin-top: 5px;
  font-size: .74rem; font-weight: 500;
  color: #C33A3A;
}

.hp{
  position: absolute !important;
  left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.lead-form__foot{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-top: 22px;
}
.lead-form__note{ font-size: .74rem; color: var(--muted); text-align: center; }

.btn__spin{
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.btn.is-busy{ pointer-events: none; opacity: .8; }
.btn.is-busy .btn__spin{ display: block; }

.lead-form__status{
  margin-top: 16px;
  text-align: center;
  font-size: .9rem; font-weight: 600;
}
.lead-form__status.is-ok{ color: #1F7A4C; }
.lead-form__status.is-err{ color: #C33A3A; }

/* -------------------------------------------- 9. services -- */
.services{ padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px); }

.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.svc{
  display: flex; flex-direction: column;
  border: 1px solid rgba(196, 166, 110, .55);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.svc:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.svc__media{
  position: relative;
  aspect-ratio: 11 / 8;
  overflow: hidden;
  background: var(--sand);
}
.svc__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc:hover .svc__media img{ transform: scale(1.05); }

.svc__body{
  flex: 1;
  display: flex; flex-direction: column;
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(165deg, #F4E4C6 0%, #EBD8B2 46%, #E2CB9E 100%);
  border-top: 1px solid rgba(196, 166, 110, .5);
}

.svc__tag{
  font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #8A6B24;
}

.svc__name{
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  line-height: 1.22;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #2C2109;
}

.svc__desc{
  margin-top: 8px;
  font-size: .82rem;
  line-height: 1.55;
  color: #6B5528;
}

.svc__more{
  margin-top: auto;
  padding: 11px 20px 11px 22px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(120, 92, 30, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #3B2C0B;
  transition: background .24s var(--ease), border-color .24s var(--ease), gap .24s var(--ease);
}
.svc__more span{ transition: transform .24s var(--ease); }
.svc__more:hover{ background: #fff; border-color: var(--gold-dk); }
.svc__more:hover span{ transform: translateX(4px); }

/* ---------------------------------------------- 10. stats -- */
.stats{ padding: clamp(20px, 3vw, 34px) 0 clamp(56px, 7vw, 88px); }

.stats__panel{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(34px, 5vw, 58px) clamp(22px, 4vw, 56px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(90% 140% at 50% -20%, #2C2519 0%, rgba(44, 37, 25, 0) 62%),
    linear-gradient(160deg, #201B14 0%, var(--dark) 58%, #100E0A 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats__panel::before{
  content: ""; position: absolute; inset: 0;
  background: url("../images/flourish.svg") no-repeat center / 130% auto;
  opacity: .06;
  filter: invert(1);
}

.stat{ position: relative; text-align: center; }
.stat + .stat::before{
  content: ""; position: absolute; left: calc(-1 * clamp(10px, 1.5vw, 20px)); top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(199, 161, 74, .45), transparent);
}

.stat__num{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.6vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #F3DFA8 0%, #D9B35C 44%, #A97C22 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.stat__label{
  margin-top: 10px;
  font-size: clamp(.8rem, 1.5vw, .94rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 252, 246, .82);
}

/* ---------------------------------------------- 11. rails -- */
.rail{ position: relative; }

.rail__track{
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  padding: 6px 2px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}
.rail__track::-webkit-scrollbar{ display: none; }
.rail__track > *{ scroll-snap-align: center; flex: none; }

.rail__nav{
  position: absolute; top: 50%; z-index: 6;
  width: 46px; height: 46px;
  transform: translateY(-50%);
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
  transition: opacity .24s var(--ease), transform .24s var(--ease), background .24s var(--ease);
}
.rail__nav svg{
  width: 20px; height: 20px;
  fill: none; stroke: var(--ink); stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.rail__nav:hover{ background: var(--ink); }
.rail__nav:hover svg{ stroke: #fff; }
.rail__nav--prev{ left: -8px; }
.rail__nav--next{ right: -8px; }
.rail__nav[disabled]{ opacity: 0; pointer-events: none; }

/* ---------------------------------------------- 12. media -- */
.media{ padding: clamp(20px, 3vw, 30px) 0 clamp(40px, 5vw, 60px); }

.media__track{ justify-content: center; }
@media (max-width: 1000px){ .media__track{ justify-content: flex-start; } }

.reel{ width: clamp(200px, 25vw, 268px); }

.reel__btn{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 1px solid rgba(196, 166, 110, .5);
  border-radius: var(--r-md);
  background: #17140F;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.reel__btn:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.reel__thumb{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.reel__btn:hover .reel__thumb{ transform: scale(1.05); opacity: .88; }

.reel__btn::after{
  content: ""; position: absolute; inset: auto 0 0 0; height: 46%;
  background: linear-gradient(180deg, transparent, rgba(10, 8, 5, .82));
  pointer-events: none;
}

.reel__play{
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 58px; height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .6);
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.reel__play::before{
  content: ""; position: absolute; left: 54%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ink);
}
.reel__btn:hover .reel__play{ transform: translate(-50%, -50%) scale(1.1); background: var(--gold-lt); }

.reel__cap{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 16px;
  text-align: left;
  font-size: .78rem; font-weight: 600; line-height: 1.35;
  color: #fff;
}

/* -------------------------------------------- 13. results -- */
.results{ padding: clamp(24px, 3vw, 34px) 0 clamp(50px, 6vw, 76px); }

.results__panel{
  position: relative;
  padding: clamp(24px, 3.6vw, 44px);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #201B14 0%, var(--dark) 58%, #100E0A 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.results__panel::before{
  content: ""; position: absolute; inset: 0;
  background: url("../images/flourish.svg") no-repeat center / 130% auto;
  opacity: .06; filter: invert(1);
}

.results__grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

/* Each tile holds one image that is already a before | after pair, as in the PDF. */
.ba__frame{
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(199, 161, 74, .55);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #241F18;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.ba__frame:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 46px -22px rgba(0, 0, 0, .85);
}

.ba__frame img{
  width: 100%; height: 100%;
  object-fit: cover;
}

.ba__label{
  position: absolute; bottom: 10px; z-index: 2;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(15, 12, 8, .62);
  backdrop-filter: blur(4px);
  font-size: .56rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
.ba__label--b{ left: 10px; }
.ba__label--a{ right: 10px; }

.results__disclaimer{
  position: relative;
  margin-top: clamp(20px, 2.6vw, 30px);
  text-align: center;
  font-size: .74rem;
  color: rgba(255, 252, 246, .5);
}

/* --------------------------------------- 14. testimonials -- */
.tmns{
  padding: clamp(50px, 7vw, 84px) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 60%, var(--cream) 100%);
}

.tmn{
  position: relative;
  width: clamp(280px, 33vw, 380px);
  display: flex; flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.tmn:hover{
  transform: translateY(-5px);
  border-color: rgba(196, 166, 110, .8);
  box-shadow: var(--shadow-md);
}

.tmn__quote{
  position: absolute; top: 4px; right: 20px;
  font-family: var(--serif);
  font-size: 5.4rem; line-height: 1;
  color: rgba(196, 166, 110, .22);
  pointer-events: none;
}

.tmn__stars{ color: var(--gold); font-size: .95rem; letter-spacing: .16em; }

.tmn__text{
  flex: 1;
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink-2);
}

.tmn__by{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tmn__by b{ display: block; font-size: .92rem; font-weight: 700; color: var(--ink); }
.tmn__by span{
  display: block; margin-top: 2px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dk);
}

/* ------------------------------------------ 15. locations -- */
.locs{ padding: clamp(50px, 7vw, 84px) 0 clamp(56px, 8vw, 96px); }

.locs__pin{
  width: auto;
  height: clamp(30px, 4vw, 42px);
  object-fit: contain;
}

.locs__gm{
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: -.01em;
  background: linear-gradient(92deg, #4285F4 0%, #EA4335 32%, #FBBC05 62%, #34A853 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.loc-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.loc{
  position: relative;
  display: flex; align-items: flex-end;
  height: clamp(92px, 11vw, 124px);
  padding: 14px 16px;
  border: 1px solid rgba(196, 166, 110, .38);
  border-radius: var(--r-sm);
  overflow: hidden;
  isolation: isolate;
  background: #241E17;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.loc__img{
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

/* legibility scrim over the branch photo */
.loc::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12, 10, 7, .12) 0%, rgba(12, 10, 7, .52) 52%, rgba(12, 10, 7, .86) 100%);
  transition: opacity .35s var(--ease);
}

.loc:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.loc:hover .loc__img{ transform: scale(1.07); }
.loc:hover::after{ opacity: .82; }

.loc__name{
  position: relative; z-index: 2;
  font-size: clamp(.68rem, 1.35vw, .8rem);
  font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.loc__go{
  position: absolute; top: 12px; right: 14px; z-index: 2;
  font-size: .82rem;
  color: var(--gold-lt);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.loc:hover .loc__go{ opacity: 1; transform: none; }

/* --------------------------------------------- 16. footer -- */
.site-footer{
  padding: clamp(48px, 6vw, 76px) 0 0;
  background: linear-gradient(170deg, #201B14 0%, var(--dark) 55%, #0C0A07 100%);
  color: rgba(255, 252, 246, .8);
}

.site-footer__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.site-footer__tag{
  margin-top: 16px;
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(232, 206, 142, .72);
}
.site-footer__brand .phone-link{ margin-top: 18px; }

.site-footer__h{
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.14rem;
  letter-spacing: .02em;
  color: rgba(255, 252, 246, .92);
  text-align: center;
}

.fsvc{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px) clamp(10px, 2vw, 24px);
  justify-items: center;
}
.fsvc li:nth-child(4){ grid-column: 1 / 2; justify-self: end; transform: translateX(50%); }
.fsvc li:nth-child(5){ grid-column: 2 / 3; justify-self: end; transform: translateX(50%); }

.fsvc a{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}

.fsvc__ic{
  width: clamp(62px, 7.4vw, 82px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(201, 162, 74, .3));
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.fsvc a:hover .fsvc__ic{
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 16px 26px rgba(201, 162, 74, .55));
}

.fsvc b{
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 252, 246, .84);
}

.site-footer__bar{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 22px;
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(199, 161, 74, .2);
  font-size: .74rem;
  color: rgba(255, 252, 246, .48);
}

/* ----------------------------------- 17. floating actions -- */
.call-tab{
  position: fixed; right: 0; top: 50%; z-index: 100;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 11px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(180deg, #241E17, var(--dark));
  box-shadow: -6px 0 22px -10px rgba(0, 0, 0, .5);
  font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: #fff;
  transition: padding .24s var(--ease), background .24s var(--ease);
}
.call-tab svg{ width: 14px; height: 14px; fill: var(--gold-lt); transform: rotate(90deg); }
.call-tab:hover{ padding-inline: 15px; background: linear-gradient(180deg, #3A3128, #241E17); }

.mobile-bar{
  position: fixed; inset: auto 0 0 0; z-index: 110;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 248, 243, .95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px -18px rgba(60, 44, 20, .7);
}
.mobile-bar > *{
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px;
  border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}
.mobile-bar__call{
  border: 1px solid var(--ink);
  color: var(--ink);
}
.mobile-bar__call svg{ width: 16px; height: 16px; fill: var(--gold-dk); }
.mobile-bar__book{
  background: linear-gradient(135deg, var(--pink), var(--pink-dk));
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(228, 17, 94, .9);
}

/* ------------------------------- 18. modal + lightbox -- */
.modal, .lightbox{
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(14px, 4vw, 40px);
}
.modal[hidden], .lightbox[hidden]{ display: none; }

.modal__scrim, .lightbox__scrim{
  position: absolute; inset: 0;
  background: rgba(16, 12, 7, .68);
  backdrop-filter: blur(6px);
  animation: fadeIn .28s var(--ease) both;
}
@keyframes fadeIn{ from{ opacity: 0; } to{ opacity: 1; } }

.modal__panel{
  position: relative;
  width: min(100%, 620px);
  max-height: min(88vh, 820px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, #FFFDF9 0%, var(--cream-2) 100%);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  animation: popIn .34s var(--ease) both;
}
@keyframes popIn{
  from{ opacity: 0; transform: translateY(18px) scale(.97); }
  to  { opacity: 1; transform: none; }
}

.modal__x, .lightbox__x{
  position: absolute; top: 12px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, .06);
  font-size: 1.6rem; line-height: 1;
  color: var(--ink);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.modal__x:hover, .lightbox__x:hover{ background: rgba(0, 0, 0, .12); transform: rotate(90deg); }

.modal__tag{
  font-size: .64rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dk);
}
.modal__title{
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  line-height: 1.16;
  color: var(--ink);
}
.modal__lede{
  margin-top: 10px;
  font-size: 1rem; font-weight: 600;
  color: var(--gold-dk);
}
.modal__desc{
  margin-top: 12px;
  font-size: .92rem; line-height: 1.72;
  color: var(--ink-2);
}

.modal__facts{
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .7);
}
.modal__facts div{ display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 12px; }
.modal__facts dt{
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk);
  padding-top: 2px;
}
.modal__facts dd{ margin: 0; font-size: .9rem; color: var(--ink-2); }

.modal__benefits{ margin-top: 22px; }
.modal__benefits-h{
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dk);
}
.modal__benefits ul{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.modal__benefits li{
  padding: 8px 15px;
  border: 1px solid rgba(196, 166, 110, .55);
  border-radius: 999px;
  background: linear-gradient(160deg, #F6E7C8, #EEDCB4);
  font-size: .78rem; font-weight: 600;
  color: #4A380E;
}

.modal__cta{ margin-top: 26px; width: 100%; }

.lightbox__panel{
  position: relative;
  width: min(100%, 420px);
}
.lightbox__frame{
  aspect-ratio: 9 / 16;
  max-height: 84vh;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  animation: popIn .34s var(--ease) both;
}
.lightbox__frame iframe{ width: 100%; height: 100%; border: 0; }
.lightbox__x{
  top: -50px; right: 0;
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.lightbox__x:hover{ background: rgba(255, 255, 255, .3); }

/* --------------------------------- 18b. thank-you page -- */
.btn--ghost{
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid rgba(120, 92, 30, .4);
  padding-inline: 34px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.btn--ghost:hover{ background: rgba(255, 255, 255, .7); border-color: var(--gold-dk); }

.page-thanks{ background: var(--cream-2); }

.thanks{
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 84px)) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.thanks__wash{
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(90% 70% at 50% 0%, #FFFFFF 0%, #FDF9F3 36%, #F7EFE2 70%, #F2E7D6 100%);
}
.thanks__wash::before{
  content: ""; position: absolute; inset: 0;
  background: url("../images/flourish.svg") no-repeat center top -10% / 120% auto;
  opacity: .4;
}
.thanks__wash::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(180deg, rgba(246, 240, 230, 0), var(--cream-2));
}

.thanks__inner{
  max-width: 760px;
  text-align: center;
}

.thanks__tick{
  display: inline-grid; place-items: center;
  width: clamp(76px, 10vw, 96px); aspect-ratio: 1;
  margin-bottom: 22px;
}
.thanks__tick svg{ width: 100%; height: 100%; overflow: visible; }
.thanks__tick-ring{
  fill: rgba(255, 255, 255, .7);
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 183;
  stroke-dashoffset: 183;
  animation: tickRing .8s var(--ease) .1s forwards;
}
.thanks__tick-mark{
  fill: none;
  stroke: var(--gold-dk);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: tickMark .45s var(--ease) .75s forwards;
}
@keyframes tickRing{ to{ stroke-dashoffset: 0; } }
@keyframes tickMark{ to{ stroke-dashoffset: 0; } }

.thanks__eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-size: .7rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dk);
}
.thanks__eyebrow span{
  width: 26px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.thanks__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

.thanks__lede{
  max-width: 56ch;
  margin: 16px auto 0;
  font-size: clamp(.96rem, 1.8vw, 1.08rem);
  line-height: 1.7;
  color: var(--ink-2);
}
.thanks__lede b{ color: var(--ink); font-weight: 700; }

.refcard{
  display: inline-block;
  margin-top: 24px;
  padding: 16px clamp(28px, 5vw, 48px);
  border: 1px dashed var(--gold);
  border-radius: var(--r-md);
  background: rgba(255, 253, 249, .84);
  box-shadow: var(--shadow-sm);
}
.refcard__label{
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dk);
}
.refcard__code{
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: .18em;
  color: var(--ink);
}
.refcard__hint{
  margin-top: 4px;
  font-size: .72rem;
  color: var(--muted);
}

.thanks__mail{
  max-width: 54ch;
  margin: 12px auto 0;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}
.thanks__mail b{ color: var(--gold-dk); }

.thanks__summary{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.thanks__summary li{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
}
.thanks__summary span{
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dk);
}
.thanks__summary b{ font-size: .88rem; font-weight: 600; color: var(--ink); }

.thanks__steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 5vw, 52px);
  text-align: left;
}
.thanks__steps li{
  position: relative;
  padding: clamp(20px, 2.6vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
}
.thanks__step-n{
  display: grid; place-items: center;
  width: 32px; height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(150deg, #F0DCA8 0%, #C9A24A 45%, #8F6A1B 100%);
  font-family: var(--serif);
  font-size: .96rem; font-weight: 700;
  color: #2A1F08;
}
.thanks__steps b{
  display: block;
  font-size: .96rem; font-weight: 700;
  color: var(--ink);
}
.thanks__steps p{
  margin-top: 6px;
  font-size: .84rem; line-height: 1.6;
  color: var(--muted);
}

.thanks__cta{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: clamp(30px, 4vw, 44px);
}

.thanks__note{
  max-width: 52ch;
  margin: 20px auto 0;
  font-size: .78rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 820px){
  .thanks__steps{ grid-template-columns: 1fr; }
  .thanks__cta .btn{ width: 100%; }
}

/* -------------------------------------------- 19. reveal -- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in{ opacity: 1; transform: none; }

/* ---------------------------------------- 20. responsive -- */
@media (max-width: 1120px){
  .rail__nav--prev{ left: 0; }
  .rail__nav--next{ right: 0; }
}

@media (max-width: 1024px){
  :root{ --header-h: 74px; }

  .nav-toggle{ display: block; }

  /* ---- right-to-left off-canvas drawer ---- */
  .nav-scrim{
    display: block;
    position: fixed; inset: 0; z-index: 130;
    background: rgba(20, 15, 9, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .34s var(--ease);
  }
  .nav-scrim[hidden]{ display: none; }
  .nav-scrim.is-shown{ opacity: 1; }

  .nav{
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 140;
    width: min(84vw, 336px);
    display: flex; flex-direction: column;
    margin: 0;
    padding: 0 0 calc(22px + env(safe-area-inset-bottom));
    background: linear-gradient(200deg, #FFFDF9 0%, var(--cream-2) 62%, #F1E7D8 100%);
    box-shadow: -22px 0 54px -28px rgba(40, 28, 10, .8);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .38s var(--ease), visibility 0s linear .38s;
  }
  .nav.is-open{
    transform: translateX(0);
    visibility: visible;
    transition: transform .38s var(--ease), visibility 0s;
  }

  .nav__head{
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 16px var(--gut);
    border-bottom: 1px solid var(--line);
  }
  .nav__logo{ height: 34px; width: auto; }
  .nav__close{
    width: 40px; height: 40px; flex: none;
    display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    font-size: 1.7rem; line-height: 1;
    color: var(--ink);
    transition: background .2s var(--ease), transform .2s var(--ease);
  }
  .nav__close:hover{ background: #fff; transform: rotate(90deg); }

  .nav__links{
    flex-direction: column; align-items: stretch;
    gap: 0;
    padding: 10px var(--gut) 0;
  }
  .nav__links a{
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem; font-weight: 500;
    /* stagger the links in as the drawer lands */
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav__links a::after{ display: none; }
  .nav.is-open .nav__links a{ opacity: 1; transform: none; }
  .nav.is-open .nav__links a:nth-child(1){ transition-delay: .10s; }
  .nav.is-open .nav__links a:nth-child(2){ transition-delay: .16s; }
  .nav.is-open .nav__links a:nth-child(3){ transition-delay: .22s; }
  .nav.is-open .nav__links a:nth-child(4){ transition-delay: .28s; }

  .nav__foot{
    display: flex; flex-direction: column; align-items: stretch; gap: 14px;
    margin-top: auto;
    padding: 26px var(--gut) 0;
  }
  .nav__foot .phone-link{ justify-content: center; font-size: 1rem; }
  .nav__foot .btn{ width: 100%; }

  .site-header__inner{ justify-content: space-between; }
  .site-header__actions .phone-link{ display: none; }

  .hero__inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    min-height: 0;
  }
  .hero__copy{ order: 2; }
  .hero__figure{
    order: 1;
    justify-self: center;
    width: min(100%, 400px);
  }
  .hero__eyebrow, .hero__price, .hero__foot{ justify-content: center; }
  .hero__eyebrow{ display: inline-flex; }
  .hero__wash::before{ background-size: 150% auto; background-position: center top 10%; opacity: .35; }
  .scroll-cue{ display: none; }

  .lead-form__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .svc-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc:last-child{ grid-column: 1 / -1; }
  .svc:last-child{ flex-direction: row; }
  .svc:last-child .svc__media{ flex: 0 0 44%; aspect-ratio: auto; }
  .svc:last-child .svc__body{ flex: 1; border-top: 0; border-left: 1px solid rgba(196, 166, 110, .5); }

  .results__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ba:last-child{ grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }

  .loc-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .site-footer__inner{ grid-template-columns: 1fr; justify-items: center; text-align: center; }

  .call-tab{ display: none; }
  .mobile-bar{ display: flex; }
  body{ padding-bottom: 72px; }
}

@media (max-width: 720px){
  :root{ --header-h: 68px; }

  .site-header__actions .btn--pink{ padding: 11px 18px; font-size: .78rem; }
  .btn__arrow{ display: none; }

  .hero{ padding-bottom: 44px; }
  .hero__figure{ width: min(84%, 330px); }
  .hero__foot{ gap: 12px; }

  .lead-form__grid{ grid-template-columns: 1fr; }
  .btn--gold{ width: 100%; }

  .svc-grid{ grid-template-columns: 1fr; }
  .svc:last-child{ flex-direction: column; }
  .svc:last-child .svc__media{ flex: none; aspect-ratio: 11 / 8; }
  .svc:last-child .svc__body{ border-top: 1px solid rgba(196, 166, 110, .5); border-left: 0; }

  .stats__panel{ grid-template-columns: 1fr; gap: 26px; }
  .stat + .stat::before{
    left: 18%; right: 18%; top: -13px; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 74, .45), transparent);
  }

  .results__grid{ grid-template-columns: 1fr; }
  .ba:last-child{ max-width: none; }

  .loc-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .fsvc{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fsvc li:nth-child(4), .fsvc li:nth-child(5){
    grid-column: auto; justify-self: center; transform: none;
  }

  .rail__nav{ width: 40px; height: 40px; }
  .site-footer__bar{ justify-content: center; text-align: center; }
}

@media (max-width: 420px){
  .hero__title{ font-size: 2.2rem; }
  .tmn{ width: min(84vw, 320px); }
}

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

@media print{
  .site-header, .call-tab, .mobile-bar, .rail__nav, .scroll-cue{ display: none !important; }
  body{ padding: 0; }
}
