/*
  Designed and developed by Wave Agency - wavegency.com
  Version 1-0-13
*/

/* ---------- self hosted fonts ---------- */

/* Body: Poppins (open source, SIL Open Font License) */
@font-face{
  font-family:"Poppins";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("../../fonts/poppins-400.woff2") format("woff2");
}
@font-face{
  font-family:"Poppins";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("../../fonts/poppins-500.woff2") format("woff2");
}
@font-face{
  font-family:"Poppins";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("../../fonts/poppins-600.woff2") format("woff2");
}
@font-face{
  font-family:"Poppins";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("../../fonts/poppins-700.woff2") format("woff2");
}

/* Headlines, subheads, and eyebrows: Neutra Text (licensed to the client) */
@font-face{
  font-family:"Neutra Text";
  font-style:normal;
  font-weight:300;
  font-display:swap;
  src:url("../../fonts/neutra-text-light.woff2") format("woff2");
}
@font-face{
  font-family:"Neutra Text";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("../../fonts/neutra-text-book.woff2") format("woff2");
}
@font-face{
  font-family:"Neutra Text";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("../../fonts/neutra-text-bold.woff2") format("woff2");
}
/* Small caps cut, used for the eyebrow labels */
@font-face{
  font-family:"Neutra Text SC";
  font-style:normal;
  font-weight:300;
  font-display:swap;
  src:url("../../fonts/neutra-text-sc.woff2") format("woff2");
}
/* Montserrat stays as a close geometric fallback if a Neutra face is unavailable */
@font-face{
  font-family:"Montserrat";
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url("../../fonts/montserrat-variable.woff2") format("woff2");
}

/* ---------- tokens ---------- */
:root{
  --ink:#09090b;
  --ink-2:#0f0e12;
  --surface:#15131a;
  --surface-2:#1c1922;
  --line:rgba(245,242,238,0.09);
  --line-strong:rgba(245,242,238,0.16);
  --red:#c8102e;
  --red-bright:#ff2e3f;
  --red-deep:#7a0a1c;
  --white:#f6f3ee;
  --muted:#a7a09b;
  --muted-2:#7d7772;
  --gold:#e7c9a0;
  --r-sm:10px;
  --r-md:16px;
  --r-lg:26px;
  --maxw:1180px;
  --display:"Neutra Text","Montserrat",system-ui,sans-serif;
  --display-sc:"Neutra Text SC","Neutra Text","Montserrat",system-ui,sans-serif;
  --sans:"Poppins",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:100px}
html{overflow-x:hidden;max-width:100%}
body{
  background:var(--ink);
  color:var(--white);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
  position:relative;
}
/* overflow:clip contains overflow without the iOS body-scroll quirks of hidden */
@supports (overflow:clip){
  html,body{overflow-x:clip}
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
h1,h2,h3{font-family:var(--display);font-weight:500;line-height:1.08;letter-spacing:-0.01em}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 26px}
.skip-link{position:absolute;left:-999px;top:0;z-index:200;background:var(--red);color:#fff;padding:12px 18px;border-radius:0 0 10px 0}
.skip-link:focus{left:0}

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

/* ---------- shared bits ---------- */
.eyebrow{
  font-family:var(--display-sc);
  font-size:18px;font-weight:300;
  letter-spacing:0.14em;text-transform:lowercase;
  color:var(--red-bright);
  display:inline-flex;align-items:center;gap:12px;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--red);display:inline-block}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:var(--sans);font-weight:600;font-size:15px;letter-spacing:0.01em;
  padding:15px 26px;border-radius:100px;border:1px solid transparent;
  cursor:pointer;transition:transform .25s ease,background .25s ease,border-color .25s ease,box-shadow .25s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 30px -12px rgba(200,16,46,0.8)}
.btn-primary:hover{background:var(--red-bright);transform:translateY(-2px);box-shadow:0 16px 40px -12px rgba(255,46,63,0.7)}
.btn-ghost{border-color:var(--line-strong);color:var(--white);background:rgba(255,255,255,0.02)}
.btn-ghost:hover{border-color:var(--white);transform:translateY(-2px)}

/* horizon divider, the recurring sunrise motif */
.horizon{position:relative;height:1px;background:var(--line);margin:0;border:0}
.horizon::after{
  content:"";position:absolute;left:50%;top:0;transform:translateX(-50%);
  width:min(560px,80%);height:1px;
  background:linear-gradient(90deg,transparent,var(--red),transparent);
  box-shadow:0 0 26px 3px rgba(200,16,46,0.55);
}

.section-pad{padding:96px 0}

/* ---------- logo ---------- */
.logo{display:inline-flex;align-items:center;gap:0}
.logo .logo-img{height:40px;width:auto;display:block}
.logo.footer .logo-img{height:48px}

/* ---------- top bar ---------- */
.bar{
  position:sticky;top:0;z-index:60;
  background:rgba(9,9,11,0.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.bar-inner{display:flex;align-items:center;justify-content:space-between;height:84px}
.bar nav{display:flex;align-items:center;gap:34px}
.bar nav a.nav-link{font-size:14.5px;font-weight:500;color:var(--muted);transition:color .2s}
.bar nav a.nav-link:hover{color:var(--white)}
.bar .btn{padding:11px 20px;font-size:14px}

/* ---------- mobile menu ---------- */
.nav-toggle-cb{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none;overflow:hidden}
.menu-btn{display:none;width:46px;height:46px;align-items:center;justify-content:center;cursor:pointer;margin-right:-8px;color:var(--white)}
.menu-ico{position:relative;width:24px;height:16px;display:block}
.menu-ico span{position:absolute;left:0;width:100%;height:2px;background:currentColor;border-radius:2px}
.menu-ico span:nth-child(1){top:0}
.menu-ico span:nth-child(2){top:7px}
.menu-ico span:nth-child(3){top:14px}
.mobile-menu{
  position:fixed;inset:0;z-index:90;display:none;flex-direction:column;
  background:var(--ink);padding:20px 26px calc(30px + env(safe-area-inset-bottom));
}
.nav-toggle-cb:checked ~ .mobile-menu{display:flex}
html:has(.nav-toggle-cb:checked){overflow:hidden}
.mm-top{display:flex;align-items:center;justify-content:space-between;height:44px}
.mm-top .logo-img{height:30px;width:auto}
.mm-close{width:46px;height:46px;display:flex;align-items:center;justify-content:center;margin-right:-10px;cursor:pointer;color:var(--white)}
.mm-close svg{width:26px;height:26px;stroke:currentColor}
.mm-nav{display:flex;flex-direction:column;margin-top:30px;flex:1}
.mm-nav a{font-family:var(--display);font-weight:500;font-size:30px;color:var(--white);
  padding:16px 0;border-bottom:1px solid var(--line);transition:color .2s}
.mm-nav a:hover,.mm-nav a:active{color:var(--red-bright)}
.mm-nav .mm-refer{color:var(--red-bright)}
.mm-cta{width:100%;font-size:16px;padding:17px 26px;margin-top:24px}

/* ---------- hero (full bleed banner) ---------- */
.hero{position:relative;min-height:88vh;display:flex;align-items:center;overflow:hidden;padding:120px 0 96px}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:62% center;z-index:0}
.hero-overlay{position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(90deg, rgba(9,9,11,0.95) 0%, rgba(9,9,11,0.82) 32%, rgba(9,9,11,0.44) 58%, rgba(9,9,11,0.1) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(9,9,11,0.4) 24%, transparent 54%)}
.hero-content{position:relative;z-index:2;width:100%}
.hero-copy{max-width:640px}
.hero h1{font-size:clamp(40px,6vw,76px);font-weight:700;margin:22px 0 0}
.hero h1 em{font-style:normal;color:var(--red-bright);white-space:nowrap}
.hero .lede{font-family:var(--display);font-weight:300;color:rgba(246,243,238,0.86);font-size:20px;line-height:1.5;max-width:30em;margin:22px 0 34px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-badge{display:inline-flex;align-items:center;gap:9px;margin-top:30px;
  background:rgba(9,9,11,0.5);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid var(--line-strong);border-radius:100px;
  padding:9px 18px;font-size:13px;font-weight:500;letter-spacing:0.02em;color:var(--white)}
.hero-badge .dot{width:8px;height:8px;border-radius:50%;background:var(--red-bright);box-shadow:0 0 10px var(--red-bright)}

/* branded image wrap and fallback */
.imgwrap{position:relative;width:100%;height:100%;background:
    radial-gradient(120% 90% at 70% 10%,rgba(200,16,46,0.30),transparent 55%),
    linear-gradient(160deg,#1a1017,#0c0b0e);}
.imgwrap .imgtag{position:relative;z-index:2}
.imgwrap .ph{
  position:absolute;inset:0;z-index:1;display:flex;align-items:center;justify-content:center;
}
.imgwrap .ph .sun{width:46px;height:23px;opacity:0.8}

/* ---------- section headings ---------- */
.sec-head{max-width:44rem}
.sec-head h2{font-size:clamp(30px,4vw,46px);margin:18px 0 0}
.sec-head p.sub{font-family:var(--display);font-weight:300;color:var(--muted);margin-top:16px;font-size:19px;line-height:1.45}

/* ---------- welcome letter ---------- */
.letter-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;align-items:start}
.letter-fig{border-radius:var(--r-md);overflow:hidden;aspect-ratio:3/4;border:1px solid var(--line-strong);position:sticky;top:100px}
.letter-body p{margin-bottom:20px;font-size:18.5px;line-height:1.7}
.letter-body p.first{font-family:var(--display);font-size:24px;line-height:1.45;color:var(--white)}
.letter-body .sign{margin-top:28px;font-family:var(--display);font-style:normal;font-size:20px;color:var(--red-bright)}
.letter-body .sign span{display:block;font-family:var(--sans);font-style:normal;font-size:14px;color:var(--muted);letter-spacing:0.04em;margin-top:4px}

/* ---------- app section ---------- */
.app{background:
    radial-gradient(90% 120% at 100% 0%,rgba(200,16,46,0.16),transparent 55%),
    var(--ink);}
.app-card{
  background:linear-gradient(150deg,var(--surface),var(--ink-2));
  border:1px solid var(--line-strong);border-radius:var(--r-lg);
  padding:52px;display:grid;grid-template-columns:1.15fr 0.85fr;gap:40px;align-items:center;
  box-shadow:0 40px 90px -40px rgba(0,0,0,0.85);
}
.app-card h3.app-title{font-family:var(--display);font-weight:500;font-size:30px}
.app-list{list-style:none;margin:26px 0 30px;display:grid;gap:16px}
.app-list li{display:flex;gap:14px;align-items:flex-start;font-size:16.5px;color:var(--white)}
.app-list li b{font-weight:600}
.app-list li span{color:var(--muted);font-weight:400}
.app-list .ic{flex:0 0 auto;width:26px;height:26px;border-radius:8px;background:rgba(200,16,46,0.16);
  display:flex;align-items:center;justify-content:center;margin-top:2px}
.app-list .ic svg{width:14px;height:14px;stroke:var(--red-bright)}
.store-row{display:flex;gap:14px;flex-wrap:wrap}
.store-badge{display:inline-block;border-radius:8px;line-height:0;transition:transform .2s ease,opacity .2s ease}
.store-badge:hover{transform:translateY(-2px);opacity:0.88}
.store-badge img{height:48px;width:auto;display:block}
.qr-mini{display:flex;align-items:center;gap:16px;margin-top:24px;padding-top:22px;border-top:1px solid var(--line)}
.qr-mini-label{font-family:var(--display-sc);font-weight:300;letter-spacing:0.08em;text-transform:lowercase;color:var(--muted);font-size:15px}
.qr-mini-codes{display:flex;gap:12px}
.qr-mini-img{width:62px;height:62px;background:#fff;border-radius:8px;padding:5px}
.app-phone{display:flex;align-items:center;justify-content:center;position:relative}
.app-phone::before{content:"";position:absolute;width:78%;height:70%;border-radius:50%;
  background:radial-gradient(circle at center,rgba(200,16,46,0.4),transparent 65%);filter:blur(24px);z-index:0}
.app-phone img{position:relative;z-index:1;max-height:520px;width:auto;filter:drop-shadow(0 30px 60px rgba(0,0,0,0.6))}

/* ---------- hours and scheduling ---------- */
.ops-grid{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:stretch}
.panel{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);padding:36px 38px;min-width:0}
.panel-title{font-family:var(--display);font-weight:500;font-size:26px;display:flex;align-items:baseline;gap:12px;margin-bottom:24px}
.panel-title .tag{font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--muted-2)}
.hours{list-style:none}
.hours li{display:flex;justify-content:space-between;align-items:center;padding:13px 0;border-bottom:1px solid var(--line)}
.hours li:last-child{border-bottom:0}
.hours .day{font-weight:500;color:var(--white)}
.hours .time{font-variant-numeric:tabular-nums;color:var(--muted);font-size:15.5px;letter-spacing:0.02em}
.hours li.today{margin:0 -14px;padding:13px 14px;background:rgba(200,16,46,0.09);border-radius:10px;border-bottom:1px solid transparent}
.hours li.today .day{color:var(--red-bright)}
.hours li.today .time{color:var(--white)}
.sched{list-style:none;display:grid;gap:18px}
.sched li{padding-left:34px;position:relative;color:var(--muted);font-size:16.5px}
.sched li strong{color:var(--white);font-weight:600;display:block;margin-bottom:2px;font-size:17px}
.sched li::before{content:"";position:absolute;left:0;top:5px;width:18px;height:18px;border-radius:6px;
  background:rgba(200,16,46,0.18);border:1px solid rgba(200,16,46,0.4)}
.sched-note{margin-top:26px;padding:18px 20px;background:var(--ink-2);border-radius:12px;border:1px solid var(--line);
  color:var(--muted);font-size:15px}
.sched-note b{color:var(--white)}
.sched-note a{color:var(--white);text-decoration:underline;text-underline-offset:3px;overflow-wrap:anywhere}
.sched-note a:hover{color:var(--red-bright)}

/* ---------- modalities ---------- */
.mods{display:grid;gap:22px;margin-top:52px}
.mod{
  display:grid;grid-template-columns:230px 1fr;gap:0;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;
  transition:border-color .3s,transform .3s;
}
.mod:hover{border-color:var(--line-strong)}
.mod-fig{position:relative;min-height:230px;display:flex;align-items:center;justify-content:center;padding:30px;
  background:radial-gradient(120% 90% at 50% 42%,rgba(200,16,46,0.15),transparent 62%)}
.mod-icon{width:132px;height:132px;filter:drop-shadow(0 12px 26px rgba(0,0,0,0.45))}
.mod-body{padding:32px 36px}
.mod-num{font-family:var(--display);font-size:14px;color:var(--red-bright);letter-spacing:0.02em}
.mod-body h3{font-size:26px;margin:6px 0 12px;display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.mod-body h3 .pill{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(231,201,160,0.3);border-radius:100px;padding:4px 11px}
.mod-body > p{color:var(--muted);font-size:16.5px;max-width:52em}
.mod-tips{margin-top:20px;padding-top:20px;border-top:1px solid var(--line)}
.mod-tips .lbl{font-size:11px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted-2);margin-bottom:12px}
.mod-tips ul{list-style:none;display:grid;gap:9px}
.mod-tips li{position:relative;padding-left:24px;font-size:15.5px;color:var(--white)}
.mod-tips li::before{content:"";position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:50%;
  background:var(--red);box-shadow:0 0 8px rgba(200,16,46,0.7)}
.mods-note{color:var(--muted-2);font-size:13.5px;margin-top:26px;max-width:60em}

/* ---------- first visit ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:48px}
.step{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);padding:28px 26px}
.step .n{font-family:var(--display);font-size:34px;color:var(--red-bright);line-height:1}
.step h3{font-family:var(--display);font-weight:500;font-size:20px;margin:14px 0 8px}
.step p{color:var(--muted);font-size:15px;line-height:1.6}

/* ---------- essentials accordion ---------- */
.ess-grid{display:grid;gap:16px;margin-top:48px;max-width:920px}
details.acc{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden}
details.acc[open]{border-color:var(--line-strong)}
details.acc summary{
  list-style:none;cursor:pointer;padding:26px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px;
  font-family:var(--display);font-size:23px;font-weight:500;
}
details.acc summary::-webkit-details-marker{display:none}
.acc .chev{flex:0 0 auto;width:32px;height:32px;border-radius:50%;border:1px solid var(--line-strong);
  display:flex;align-items:center;justify-content:center;transition:transform .3s,border-color .3s}
details.acc[open] .chev{transform:rotate(45deg);border-color:var(--red)}
.acc .chev svg{width:14px;height:14px;stroke:var(--white)}
.acc-body{padding:0 32px 30px}
.acc-body ul{list-style:none;display:grid;gap:14px}
.acc-body li{position:relative;padding-left:26px;color:var(--muted);font-size:16px;line-height:1.6;overflow-wrap:anywhere}
.acc-body li strong{color:var(--white);font-weight:600}
.acc-body li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;border-radius:50%;background:var(--red)}
.acc-body .fee{display:inline-block;font-variant-numeric:tabular-nums;color:var(--red-bright);font-weight:600}

/* ---------- referral (prominent band) ---------- */
.referral{
  position:relative;overflow:hidden;color:#fff;
  padding:78px 0;
  background:linear-gradient(135deg,#8f0c20 0%,#c8102e 46%,#a30d24 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.25);
}
.referral-glow{
  position:absolute;top:-40%;right:0;width:min(760px,100%);height:auto;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle at center,rgba(255,255,255,0.22),transparent 62%);
  pointer-events:none;
}
.refer-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.35fr 0.65fr;gap:44px;align-items:center}
.referral .eyebrow{color:#ffffff}
.referral .eyebrow::before{background:rgba(255,255,255,0.85)}
.refer-lead h2{color:#fff;font-size:clamp(34px,5vw,58px);margin:14px 0 0;letter-spacing:-0.02em}
.refer-lede{font-family:var(--display);font-weight:300;color:rgba(255,255,255,0.92);font-size:20px;line-height:1.5;margin:18px 0 26px;max-width:32em}
.refer-cta{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.btn-light{background:#fff;color:var(--red);box-shadow:0 12px 30px -12px rgba(0,0,0,0.5)}
.btn-light:hover{background:#fff;color:var(--red-deep);transform:translateY(-2px)}
.refer-fine{color:rgba(255,255,255,0.82);font-size:13.5px;max-width:16em}
.refer-amounts{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;gap:22px}
.amt{display:flex;flex-direction:column;align-items:center;
  background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.35);
  border-radius:var(--r-md);padding:22px 26px;min-width:132px;backdrop-filter:blur(4px)}
.amt-num{font-family:var(--display);font-weight:500;font-size:clamp(40px,5vw,60px);line-height:1;color:#fff}
.amt-lbl{font-family:var(--display-sc);font-weight:300;font-size:15px;letter-spacing:0.1em;text-transform:lowercase;color:rgba(255,255,255,0.92);margin-top:8px}
.amt-plus{font-family:var(--display);font-weight:300;font-size:40px;color:rgba(255,255,255,0.85)}
.refer-steps-wrap{position:relative;z-index:2;margin-top:46px;padding-top:34px;border-top:1px solid rgba(255,255,255,0.22)}
.refer-steps{list-style:none;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.refer-steps li{display:flex;gap:15px;align-items:flex-start;font-size:16px;color:rgba(255,255,255,0.86);line-height:1.5}
.refer-steps li b{color:#fff;font-weight:600;display:block;margin-bottom:2px}
.refer-steps .rn{flex:0 0 auto;width:40px;height:40px;border-radius:50%;
  background:#fff;color:var(--red);display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:700;font-size:18px}

/* prominent nav link for referral */
.nav-refer{color:var(--red-bright) !important;font-weight:600}
.nav-refer:hover{color:#fff !important}

/* ---------- contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.contact-h{font-size:clamp(30px,4vw,44px);margin-top:16px}
.contact-list{display:grid;gap:6px;margin-top:30px}
.crow{display:flex;gap:18px;align-items:flex-start;padding:20px 0;border-bottom:1px solid var(--line)}
.crow:last-child{border-bottom:0}
.crow .ci{flex:0 0 auto;width:44px;height:44px;border-radius:12px;background:rgba(200,16,46,0.12);
  border:1px solid rgba(200,16,46,0.3);display:flex;align-items:center;justify-content:center}
.crow .ci svg{width:20px;height:20px;stroke:var(--red-bright)}
.crow .ct small{display:block;font-size:12px;letter-spacing:0.14em;text-transform:uppercase;color:var(--muted-2);margin-bottom:4px}
.crow .ct{min-width:0}
.crow .ct a,.crow .ct span{font-size:18px;font-weight:500;color:var(--white);overflow-wrap:anywhere}
.crow .ct a:hover{color:var(--red-bright)}
.map{border-radius:var(--r-md);overflow:hidden;border:1px solid var(--line-strong);min-height:420px;position:relative}
.map iframe{width:100%;height:100%;min-height:420px;border:0;filter:grayscale(1) contrast(1.05)}
.socials{display:flex;gap:20px;margin-top:26px}
.soc{display:flex;align-items:center;justify-content:center;padding:4px;color:var(--white);transition:color .2s,transform .2s}
.soc:hover{color:var(--red-bright);transform:translateY(-2px)}
.soc svg{width:26px;height:26px;fill:currentColor}
.soc svg[stroke-width]{fill:none;stroke:currentColor}
.foot-socials{display:flex;gap:18px;margin-top:4px}

/* ---------- footer ---------- */
.foot{background:var(--ink-2);border-top:1px solid var(--line);padding:64px 0 40px}
.foot-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;flex-wrap:wrap}
.foot-tag{color:var(--muted);max-width:26em;margin-top:18px;font-size:15px}
.foot-links{display:flex;gap:60px;flex-wrap:wrap}
.foot-col h2{font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--muted-2);margin-bottom:16px}
.foot-col a{display:block;color:var(--muted);font-size:15px;padding:5px 0;transition:color .2s}
.foot-col a:hover{color:var(--white)}
.foot-bottom{margin-top:52px;padding-top:26px;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;color:var(--muted-2);font-size:13px}
.foot-bottom .disc{max-width:60em}
.foot-bottom a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}

/* reveal on scroll, progressive enhancement only.
   Content stays fully visible unless scripting is enabled, so nothing
   is ever hidden behind JavaScript for crawlers or no script users. */
.reveal.in{opacity:1;transform:none}
@media (scripting: enabled){
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
}

/* ---------- light stripe theming ---------- */
.tone-light{
  --ink:#f2eee7;
  --ink-2:#ffffff;
  --surface:#ffffff;
  --surface-2:#f7f2ea;
  --line:rgba(24,20,28,0.12);
  --line-strong:rgba(24,20,28,0.20);
  --white:#181219;
  --muted:#5d5760;
  --muted-2:#8a838d;
  background:#f2eee7;
  color:#181219;
}
.tone-light .btn-ghost{background:rgba(24,20,28,0.02);border-color:var(--line-strong);color:var(--white)}
.tone-light .btn-ghost:hover{border-color:var(--white)}
.tone-light .mod{box-shadow:0 24px 50px -34px rgba(24,20,28,0.35)}
.tone-light .mod-fig{background:radial-gradient(120% 90% at 50% 42%,rgba(200,16,46,0.07),#f5f0e8)}
.tone-light .mod-icon{filter:drop-shadow(0 10px 22px rgba(24,20,28,0.14))}
.tone-light .mod-body h3 .pill{color:var(--red);border-color:rgba(200,16,46,0.35)}
.tone-light .step{box-shadow:0 20px 44px -34px rgba(24,20,28,0.3)}

/* ---------- hours schedule cta ---------- */
.hours-cta{text-align:center;margin-top:46px}
.hours-cta .btn{font-size:16px}
.hours-cta-note{color:var(--muted);font-size:14px;margin-top:14px}

/* ---------- fda badge ---------- */
.fda-badge{height:42px;width:auto;margin-top:26px;opacity:0.92}

/* ---------- responsive ---------- */
@media(max-width:940px){
  .letter-grid,.app-card,.ops-grid,.contact-grid,.refer-inner{grid-template-columns:1fr}
  .hero{min-height:auto;padding:118px 0 72px}
  .hero-overlay{background:
    linear-gradient(0deg, var(--ink) 2%, rgba(9,9,11,0.34) 44%, rgba(9,9,11,0.14) 100%),
    linear-gradient(90deg, rgba(9,9,11,0.6) 0%, rgba(9,9,11,0.22) 100%)}
  .letter-fig{position:static;aspect-ratio:1/1}
  .app-card{padding:36px 28px}
  .app-phone{order:-1}
  .app-phone img{max-height:440px}
  .refer-inner{gap:34px}
  .refer-amounts{justify-content:flex-start}
  .mod{grid-template-columns:1fr}
  .mod-fig{min-height:200px}
  .steps{grid-template-columns:1fr 1fr}
  .bar nav{display:none}
  .menu-btn{display:flex}
}
@media(min-width:941px){
  .mobile-menu{display:none !important}
}
@media(max-width:560px){
  body{font-size:16px}
  .wrap{padding:0 18px}
  .section-pad{padding:66px 0}
  .hero{min-height:auto;padding:104px 0 60px}
  .hero-bg{object-position:64% center}
  .hero h1{font-size:clamp(31px,8.6vw,37px)}
  .hero .lede{font-size:16px;margin:18px 0 30px}
  .referral{padding:56px 0}
  .refer-steps{grid-template-columns:1fr;gap:18px}
  .amt{min-width:0;flex:1;padding:18px}
  .bar-inner{height:70px}
  .bar .logo .logo-img{height:30px}
  .bar .btn{padding:9px 15px;font-size:13px}
  .qr-mini{display:none}
  .app-phone img{max-height:400px}
  .steps{grid-template-columns:1fr}
  .app-list li{font-size:15.5px}
  .panel{padding:28px 24px}
  .mod-body{padding:26px 24px}
  .foot-links{gap:36px}
  .hours-cta .btn{white-space:normal;line-height:1.35;max-width:100%}
  .btn{max-width:100%}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  .reveal{opacity:1;transform:none}
  html{scroll-behavior:auto}
}
