/* ============================================================
   TOKENS — light is the base; dark redefines only the values.
   ============================================================ */
:root{
  --ink:            #1C221E;
  --ink-soft:       #4C5852;
  --ink-faint:      #6F7A74;
  --ground:         #FAF8F2;
  --surface:        #FFFDF8;
  --surface-sunk:   #F3EDE0;
  --line:           #E2D9C6;
  --line-strong:    #CFC3A8;

  --emerald:        #12543E;
  --emerald-deep:   #0A3527;
  --emerald-bright: #1B7A59;
  --emerald-ink:    #0E4733;
  --on-emerald:     #F2F7F3;
  --on-emerald-dim: #B7CFC2;

  --gold:           #B0842A;
  --gold-text:      #8A6516;
  --gold-soft:      #E8D6AA;

  --danger:         #9B2C1F;
  --danger-bg:      #FBEDEA;

  --veil-rgb:       250,248,242;
  --shadow-sm: 0 1px 2px rgba(20,40,32,.06), 0 2px 8px rgba(20,40,32,.05);
  --shadow-md: 0 2px 4px rgba(20,40,32,.06), 0 14px 34px rgba(20,40,32,.09);
  --shadow-lg: 0 3px 6px rgba(10,40,30,.08), 0 26px 60px rgba(10,40,30,.14);

  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 34px;
  --bar-h: 0px;

  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --label: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --ink:#E9E6DC; --ink-soft:#B3BDB6; --ink-faint:#8B968F;
    --ground:#0E1512; --surface:#161E1A; --surface-sunk:#1B2420;
    --line:#2A3630; --line-strong:#3B4A42;
    --emerald:#2E8F69; --emerald-deep:#0A241B; --emerald-bright:#3FAF82;
    --emerald-ink:#0C2D22; --on-emerald:#EAF4EE; --on-emerald-dim:#9FBFAF;
    --gold:#D9B160; --gold-text:#E2C283; --gold-soft:#4A3B1C;
    --danger:#F0A79B; --danger-bg:#2E1A16;
    --veil-rgb:14,21,18;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 2px 6px rgba(0,0,0,.45), 0 16px 34px rgba(0,0,0,.4);
    --shadow-lg: 0 3px 8px rgba(0,0,0,.5), 0 28px 60px rgba(0,0,0,.5);
  }
}
:root[data-theme="dark"]{
  --ink:#E9E6DC; --ink-soft:#B3BDB6; --ink-faint:#8B968F;
  --ground:#0E1512; --surface:#161E1A; --surface-sunk:#1B2420;
  --line:#2A3630; --line-strong:#3B4A42;
  --emerald:#2E8F69; --emerald-deep:#0A241B; --emerald-bright:#3FAF82;
  --emerald-ink:#0C2D22; --on-emerald:#EAF4EE; --on-emerald-dim:#9FBFAF;
  --gold:#D9B160; --gold-text:#E2C283; --gold-soft:#4A3B1C;
  --danger:#F0A79B; --danger-bg:#2E1A16;
  --veil-rgb:14,21,18;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 2px 6px rgba(0,0,0,.45), 0 16px 34px rgba(0,0,0,.4);
  --shadow-lg: 0 3px 8px rgba(0,0,0,.5), 0 28px 60px rgba(0,0,0,.5);
}

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

body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:var(--body);
  font-size:1.0625rem;
  line-height:1.65;
  overflow-x:hidden;
  padding-bottom:var(--bar-h);
}
img,svg{ max-width:100%; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:500; text-wrap:balance; margin:0; line-height:1.14; letter-spacing:-.012em; }
p{ margin:0; }
a{ color:inherit; }

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

.wrap{ width:100%; max-width:1180px; margin-inline:auto; padding-inline:22px; }
.skip{
  position:absolute; left:8px; top:-60px; z-index:200;
  background:var(--emerald); color:var(--on-emerald);
  padding:12px 18px; border-radius:var(--r-sm); font-weight:600; text-decoration:none;
  transition:top .18s ease;
}
.skip:focus{ top:8px; }

.eyebrow{
  font-family:var(--label); font-size:.72rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold-text); margin:0 0 14px;
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold); flex:none; }
.section{ padding-block:clamp(44px,6vw,76px); }
.section-head{ max-width:min(100%,34rem); margin-bottom:clamp(24px,3.4vw,36px); }
.section-head h2{ font-size:clamp(2rem,4.4vw,3.15rem); }
.lede{ font-size:1.1875rem; color:var(--ink-soft); max-width:62ch; line-height:1.6; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:56px; padding:0 28px; border-radius:999px;
  font-family:var(--body); font-size:1.0625rem; font-weight:600; line-height:1;
  text-decoration:none; border:1.5px solid transparent; cursor:pointer;
  transition:transform .16s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg{ flex:none; }
.btn-primary{ background:var(--emerald); color:var(--on-emerald); box-shadow:var(--shadow-md); }
.btn-primary:hover{ background:var(--emerald-bright); transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-ghost{ background:transparent; color:var(--emerald); border-color:var(--line-strong); }
.btn-ghost:hover{ border-color:var(--emerald); background:var(--surface); transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:#221904; }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-onemerald{ background:var(--on-emerald); color:var(--emerald-ink); }
.btn-onemerald:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn[disabled],.btn[aria-disabled="true"]{ opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }
@media (prefers-reduced-motion: reduce){ .btn:hover{ transform:none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-head{
  position:sticky; top:0; z-index:100;
  background:color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter:saturate(1.3) blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.site-head[data-stuck="true"]{ border-bottom-color:var(--line); box-shadow:0 8px 24px -18px rgba(12,40,30,.5); }
.head-inner{ display:flex; align-items:center; gap:18px; min-height:76px; }

.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; margin-right:auto; }
.brand-mark{ width:38px; height:38px; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-family:var(--display); font-size:1.2rem; font-weight:600; color:var(--ink); letter-spacing:-.01em; }
.brand-sub{ font-family:var(--label); font-size:.62rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gold-text); margin-top:3px; }

.nav{ display:flex; align-items:center; gap:4px; }
.nav a{
  padding:10px 14px; border-radius:999px; text-decoration:none; font-weight:600;
  font-size:.96rem; color:var(--ink-soft); transition:color .18s ease, background-color .18s ease;
}
.nav a:hover{ color:var(--emerald); background:var(--surface-sunk); }

.lang{ display:inline-flex; border:1px solid var(--line-strong); border-radius:999px; padding:3px; background:var(--surface); }
.lang button{
  font-family:var(--body); font-size:.82rem; font-weight:700; letter-spacing:.02em;
  padding:7px 13px; border:0; border-radius:999px; background:transparent; color:var(--ink-faint);
  cursor:pointer; transition:background-color .18s ease, color .18s ease; min-height:34px;
}
.lang button[aria-pressed="true"]{ background:var(--emerald); color:var(--on-emerald); }

.head-call{ min-height:48px; padding:0 22px; font-size:1rem; }
.nav-toggle{ display:none; }

@media (max-width:1040px){
  .nav{ display:none; }
}
@media (max-width:620px){
  .head-inner{ min-height:64px; gap:8px; }
  .brand-mark{ width:32px; height:32px; }
  .brand-name{ font-size:1rem; white-space:nowrap; }
  .brand-sub{ display:none; }
  .lang{ padding:2px; }
  .lang button{ padding:6px 10px; font-size:.78rem; min-height:32px; }
  .head-call span{ display:none; }
  .head-call{ padding:0; width:46px; min-height:46px; }
}
@media (max-width:380px){
  .brand-name{ font-size:.92rem; }
}

/* ============================================================
   HERO — asymmetric 7/5 split
   ============================================================ */
.hero{ position:relative; padding-block:clamp(26px,3.6vw,46px) clamp(34px,4.6vw,58px); overflow:hidden; }
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(56% 50% at 8% 92%, color-mix(in srgb, var(--emerald) 6%, transparent), transparent 74%);
}
.hero-grid{
  position:relative; display:grid;
  gap:clamp(20px,2.6vw,32px) clamp(28px,4vw,56px);
  grid-template-columns:minmax(0,6fr) minmax(0,5fr);
  grid-template-areas:"main photo" "foot photo";
  align-items:start;
}
.hero-main{ grid-area:main; }
.storeshot{ grid-area:photo; }
.hero-foot{ grid-area:foot; }
.hero h1{ font-size:clamp(1.85rem,3.7vw,2.95rem); line-height:1.12; letter-spacing:-.018em; max-width:min(100%,32rem); }
.hero h1 .ln1{ font-weight:600; }
.hero h1 .ln2{ display:block; color:var(--emerald); font-weight:500; }
.hero-lede{ margin-top:16px; font-size:clamp(1.09rem,1.6vw,1.28rem); color:var(--ink-soft); max-width:46ch; line-height:1.58; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.hero-where{
  margin-top:0; display:flex; gap:10px; align-items:flex-start;
  color:var(--ink-faint); font-size:.98rem; max-width:44ch;
}
.hero-where svg{ flex:none; margin-top:3px; color:var(--gold-text); }

.trust{
  display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:18px;
  padding-top:16px; border-top:1px solid var(--line);
}
.trust li{ display:flex; align-items:center; gap:9px; font-size:.93rem; font-weight:600; color:var(--ink-soft); }
.trust{ list-style:none; padding-left:0; margin-bottom:0; }
.trust svg{ color:var(--emerald); flex:none; }

/* Apothecary card */
.apoth{
  position:relative; background:var(--emerald-deep); color:var(--on-emerald);
  border-radius:var(--r-xl); padding:clamp(28px,3.4vw,44px);
  box-shadow:var(--shadow-lg); overflow:hidden; isolation:isolate;
}
.apoth::before{
  content:""; position:absolute; inset:0; z-index:-1; opacity:.5;
  background-image:
    linear-gradient(to right, color-mix(in srgb,var(--gold) 16%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb,var(--gold) 16%, transparent) 1px, transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:radial-gradient(75% 65% at 50% 32%, #000 0%, transparent 78%);
  mask-image:radial-gradient(75% 65% at 50% 32%, #000 0%, transparent 78%);
}
.apoth-art{ display:block; margin:6px auto clamp(22px,3vw,32px); width:min(230px,72%); height:auto; }
.apoth-rule{ height:1px; background:linear-gradient(to right,transparent,color-mix(in srgb,var(--gold) 70%, transparent),transparent); margin-block:clamp(18px,2.4vw,26px); }
.apoth-label{ text-align:center; }
.apoth-label dt{
  font-family:var(--label); font-size:.63rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--on-emerald-dim); margin-bottom:5px;
}
.apoth-label dd{ margin:0 0 18px; font-size:1.02rem; line-height:1.45; }
.apoth-label dd:last-child{ margin-bottom:0; }
.apoth-phone{ font-family:var(--display); font-size:clamp(1.5rem,2.6vw,1.9rem); font-weight:600; letter-spacing:.01em; text-decoration:none; display:inline-block; }
.apoth-phone:hover{ color:var(--gold); }
.apoth-est{
  position:absolute; top:18px; right:18px;
  font-family:var(--label); font-size:.6rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); border:1px solid color-mix(in srgb,var(--gold) 45%, transparent);
  padding:5px 10px; border-radius:999px;
}

@media (max-width:900px){
  .hero-grid{ grid-template-columns:minmax(0,1fr); grid-template-areas:"main" "photo" "foot"; }
  .storeshot{ max-width:560px; margin-inline:auto; width:100%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; gap:22px; grid-template-columns:repeat(auto-fit,minmax(285px,1fr)); align-items:start; }
.svc{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(26px,3vw,34px); box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--line-strong); }
.svc h3{ font-size:1.42rem; margin-bottom:6px; }
.svc-icon{
  width:50px; height:50px; border-radius:14px; display:grid; place-items:center; margin-bottom:18px;
  background:var(--surface-sunk); color:var(--emerald); border:1px solid var(--line);
}
.svc-list{ list-style:none; margin:20px 0 0; padding:0; display:flex; flex-direction:column; gap:13px; }
.svc-list li{ display:flex; gap:12px; align-items:flex-start; font-size:1rem; line-height:1.45; }
.svc-list svg{ flex:none; margin-top:3px; color:var(--gold-text); }

/* Delivery card is the one that carries an action — it gets the lift */
.svc-feature{
  background:linear-gradient(160deg,var(--emerald) 0%, var(--emerald-deep) 100%);
  color:var(--on-emerald); border-color:transparent; box-shadow:var(--shadow-md);
}
.svc-feature h3{ color:var(--on-emerald); }
.svc-feature .svc-icon{ background:color-mix(in srgb,#fff 12%, transparent); color:var(--gold); border-color:color-mix(in srgb,var(--gold) 34%, transparent); }
.svc-feature p{ color:var(--on-emerald-dim); }
.svc-feature .svc-list li{ color:var(--on-emerald); }
.svc-feature .svc-list svg{ color:var(--gold); }
.svc-feature:hover{ box-shadow:var(--shadow-lg); }
.svc-feature .btn{ margin-top:24px; }
@media (prefers-reduced-motion: reduce){ .svc:hover{ transform:none; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ background:var(--surface-sunk); border-block:1px solid var(--line); }
.about-grid{ display:grid; gap:clamp(30px,5vw,68px); grid-template-columns:minmax(0,5fr) minmax(0,6fr); align-items:center; }
.about h2{ font-size:clamp(2rem,4.2vw,3rem); }
.about-body p{ font-size:1.15rem; line-height:1.72; color:var(--ink-soft); }
.about-body p + p{ margin-top:18px; }
@media (max-width:860px){ .about-grid{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   RATING STRIP
   ============================================================ */
.ratingstrip{
  margin-top:26px; padding:18px 22px; border-radius:var(--r-md);
  background:var(--surface); border:1px solid var(--line); box-shadow:var(--shadow-sm);
  max-width:38rem;
}
.rs-score{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.stars{ display:inline-flex; gap:2px; color:var(--gold); }
.rs-line{ font-weight:700; font-size:1.02rem; font-variant-numeric:tabular-nums; }
.rs-blurb{ margin-top:10px; color:var(--ink-soft); font-size:.98rem; line-height:1.55; }
.rs-note{ margin-top:8px; color:var(--ink-faint); font-size:.8rem; line-height:1.45; }
.rs-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:12px;
  color:var(--emerald); font-weight:700; text-decoration:none; font-size:.9rem;
}
.rs-link:hover{ color:var(--emerald-bright); text-decoration:underline; }

/* ============================================================
   CALLBACK FORM
   ============================================================ */
.callback{ background:var(--emerald-deep); color:var(--on-emerald); }
.callback .eyebrow{ color:var(--gold); }
.callback .eyebrow::before{ background:var(--gold); }
.cb-grid{ display:grid; gap:clamp(34px,5vw,64px); grid-template-columns:minmax(0,5fr) minmax(0,6fr); align-items:start; }
.callback h2{ font-size:clamp(2rem,4.2vw,3rem); color:var(--on-emerald); }
.cb-intro p{ color:var(--on-emerald-dim); font-size:1.12rem; line-height:1.65; margin-top:18px; max-width:40ch; }
.cb-notice{
  margin-top:28px; padding:18px 20px; border-radius:var(--r-md);
  background:color-mix(in srgb,#fff 8%, transparent);
  border:1px solid color-mix(in srgb,var(--gold) 30%, transparent);
  font-size:.95rem; line-height:1.55; color:var(--on-emerald);
  display:flex; gap:12px; align-items:flex-start;
}
.cb-notice svg{ flex:none; margin-top:3px; color:var(--gold); }
.cb-direct{ margin-top:34px; padding-top:28px; border-top:1px solid color-mix(in srgb,var(--on-emerald) 18%, transparent); }
.cb-direct-h{ font-family:var(--label); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--on-emerald-dim); margin-bottom:16px; }
.cb-direct-btns{ display:flex; flex-wrap:wrap; gap:12px; }
.cb-direct-mail{ color:var(--on-emerald); border-color:color-mix(in srgb,var(--on-emerald) 34%, transparent); }
.cb-direct-mail:hover{ color:var(--on-emerald); border-color:var(--gold); background:color-mix(in srgb,#fff 8%, transparent); }

.cb-card{
  background:var(--surface); color:var(--ink);
  border-radius:var(--r-lg); padding:clamp(26px,3.4vw,40px); box-shadow:var(--shadow-lg);
}
.field{ margin-bottom:22px; }
.field > label,.legend{
  display:block; font-weight:700; font-size:.95rem; margin-bottom:8px; color:var(--ink);
}
.opt{ font-weight:500; color:var(--ink-faint); font-size:.85rem; }
.field input[type="text"],.field input[type="tel"]{
  width:100%; min-height:54px; padding:0 16px;
  font-family:var(--body); font-size:1.05rem; color:var(--ink);
  background:var(--ground); border:1.5px solid var(--line-strong); border-radius:var(--r-sm);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.field input:hover{ border-color:var(--emerald); }
.field input:focus{ outline:none; border-color:var(--emerald); box-shadow:0 0 0 3px color-mix(in srgb,var(--emerald) 25%, transparent); }
.field input[aria-invalid="true"]{ border-color:var(--danger); background:var(--danger-bg); }
.err{ display:none; margin-top:7px; font-size:.88rem; font-weight:600; color:var(--danger); }
.field[data-invalid="true"] .err{ display:block; }

fieldset{ border:0; margin:0 0 22px; padding:0; }
.radios{ display:flex; flex-wrap:wrap; gap:10px; }
.radio{
  position:relative; display:inline-flex; align-items:center; gap:9px;
  padding:12px 18px; min-height:50px; border:1.5px solid var(--line-strong);
  border-radius:999px; cursor:pointer; font-size:.98rem; font-weight:600;
  background:var(--ground); transition:border-color .18s ease, background-color .18s ease, color .18s ease;
}
.radio input{ position:absolute; opacity:0; width:0; height:0; }
.radio:hover{ border-color:var(--emerald); }
.radio:has(input:checked){ border-color:var(--emerald); background:var(--emerald); color:var(--on-emerald); }
.radio:has(input:focus-visible){ outline:3px solid var(--gold); outline-offset:3px; }
.dot{ width:15px; height:15px; border-radius:50%; border:2px solid currentColor; flex:none; display:grid; place-items:center; }
.radio:has(input:checked) .dot::after{ content:""; width:7px; height:7px; border-radius:50%; background:currentColor; }

.consent{ display:flex; gap:13px; align-items:flex-start; cursor:pointer; font-size:.97rem; line-height:1.5; }
.consent input{ width:24px; height:24px; margin:2px 0 0; flex:none; accent-color:var(--emerald); cursor:pointer; }
.field-consent[data-invalid="true"] .consent{ color:var(--danger); }

.formnote{
  margin:20px 0; padding:15px 17px; border-radius:var(--r-sm);
  background:var(--surface-sunk); border:1px solid var(--line);
  font-size:.88rem; line-height:1.55; color:var(--ink-soft);
}
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.btn-submit{ width:100%; }
.spinner{
  width:18px; height:18px; border-radius:50%; flex:none;
  border:2px solid color-mix(in srgb, currentColor 35%, transparent); border-top-color:currentColor;
  animation:spin .7s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .spinner{ animation-duration:2.2s; } }

.status{ margin-top:18px; border-radius:var(--r-md); padding:18px 20px; font-size:.98rem; line-height:1.55; }
.status:empty{ display:none; padding:0; margin:0; }
.status[data-kind="ok"]{ background:color-mix(in srgb,var(--emerald) 12%, var(--surface)); border:1px solid var(--emerald); color:var(--ink); }
.status[data-kind="warn"]{ background:color-mix(in srgb,var(--gold) 13%, var(--surface)); border:1px solid color-mix(in srgb,var(--gold) 55%, transparent); color:var(--ink); }
.status[data-kind="bad"]{ background:var(--danger-bg); border:1px solid color-mix(in srgb,var(--danger) 45%, transparent); color:var(--ink); }
.status .btn{ margin-top:14px; min-height:50px; }
.status-actions{ display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width:860px){ .cb-grid{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   VISIT US
   ============================================================ */
.visit-grid{ display:grid; gap:clamp(24px,3vw,34px); grid-template-columns:minmax(0,7fr) minmax(0,5fr); align-items:start; }
.visit-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(28px,3.4vw,44px); box-shadow:var(--shadow-md);
}
.visit-name{ font-family:var(--display); font-size:clamp(1.6rem,2.8vw,2.1rem); font-weight:600; margin-bottom:4px; }
.visit-name-es{ font-family:var(--label); font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-text); margin-bottom:26px; }
.visit-rows{ display:grid; gap:20px; margin:0; }
.vrow{ display:flex; gap:14px; align-items:flex-start; }
.vrow > svg{ flex:none; margin-top:3px; color:var(--emerald); }
.vrow dt{ font-family:var(--label); font-size:.63rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:4px; }
.vrow dd{ margin:0; font-size:1.06rem; line-height:1.5; }
/* Opening hours blocks */
.hours{ display:grid; grid-template-columns:auto auto; gap:5px 18px; align-items:baseline; }
.h-day{ opacity:.9; }
.h-time{ font-variant-numeric:tabular-nums; white-space:nowrap; font-weight:600; }
.h-time.is-closed{ font-weight:500; opacity:.72; }
.hours-compact{ justify-content:center; gap:4px 16px; font-size:.97rem; }
.apoth .h-day{ color:var(--on-emerald-dim); }
.apoth .h-time{ color:var(--on-emerald); }
.vrow .hours{ grid-template-columns:auto 1fr; gap:5px 14px; font-size:1rem; }
.vrow .h-day{ color:var(--ink-soft); }
.hours-foot{ margin-top:5px; font-size:.95rem; gap:3px 14px; }
.foot-hours-h{
  display:block; margin-top:14px; font-family:var(--label); font-size:.62rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--ink-faint);
}
@media (max-width:560px){
  .vrow .hours{ grid-template-columns:minmax(0,1fr); gap:0; }
  .vrow .h-day{ font-size:.87rem; }
  .vrow .h-time{ margin-bottom:9px; display:block; }
  .vrow .h-time:last-child{ margin-bottom:0; }
}
.vrow a{ color:var(--emerald); font-weight:600; text-decoration-color:color-mix(in srgb,var(--emerald) 40%, transparent); text-underline-offset:3px; }
.vrow a:hover{ color:var(--emerald-bright); }
.visit-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; padding-top:26px; border-top:1px solid var(--line); }
.visit-side{
  background:var(--emerald); color:var(--on-emerald); border-radius:var(--r-lg);
  padding:clamp(28px,3.4vw,40px); display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center; gap:18px;
  box-shadow:var(--shadow-md); position:relative; overflow:hidden;
}
.visit-side::before{
  content:""; position:absolute; inset:-30%; opacity:.16;
  background:repeating-linear-gradient(45deg,transparent 0 16px, color-mix(in srgb,var(--gold) 80%, transparent) 16px 17px);
}
.visit-side > *{ position:relative; }
.visit-side .plaza{ font-family:var(--display); font-size:clamp(1.5rem,2.6vw,2rem); font-weight:600; line-height:1.2; }
.visit-side .land{ color:var(--on-emerald-dim); font-size:1rem; line-height:1.5; max-width:26ch; }
@media (max-width:860px){ .visit-grid{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot{ background:var(--surface-sunk); border-top:1px solid var(--line); padding-block:clamp(44px,6vw,68px) 34px; }
.foot-grid{ display:grid; gap:34px; grid-template-columns:minmax(0,2fr) minmax(0,1fr) minmax(0,1fr); }
.foot-logo{ width:72px; height:auto; display:block; margin-bottom:14px; }
.foot-name{ font-family:var(--display); font-size:1.35rem; font-weight:600; }
.foot-name-es{ font-family:var(--label); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-text); margin-top:6px; }
.foot-addr{ margin-top:18px; color:var(--ink-soft); font-size:1rem; line-height:1.65; font-style:normal; }
.foot-addr a{ color:var(--emerald); font-weight:600; text-underline-offset:3px; }
.foot-h{ font-family:var(--label); font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:16px; }
.foot-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.foot-links a,.linklike{
  color:var(--ink-soft); text-decoration:none; font-size:.98rem; font-weight:600;
  background:none; border:0; padding:0; font-family:var(--body); cursor:pointer; text-align:left;
}
.foot-links a:hover,.linklike:hover{ color:var(--emerald); }
.foot-bottom{
  margin-top:40px; padding-top:22px; border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:12px 24px; justify-content:space-between;
  font-size:.86rem; color:var(--ink-faint);
}
@media (max-width:720px){ .foot-grid{ grid-template-columns:minmax(0,1fr); gap:28px; } }

/* Privacy dialog */
dialog.sheet{
  border:1px solid var(--line); border-radius:var(--r-lg); padding:0;
  max-width:min(620px,calc(100vw - 32px)); width:100%;
  background:var(--surface); color:var(--ink); box-shadow:var(--shadow-lg);
}
dialog.sheet::backdrop{ background:rgba(10,30,22,.55); backdrop-filter:blur(3px); }
.sheet-in{ padding:clamp(26px,3.4vw,38px); }
.sheet-in h2{ font-size:1.7rem; margin-bottom:16px; }
.sheet-in p{ color:var(--ink-soft); line-height:1.65; font-size:1rem; }
.sheet-in p + p{ margin-top:14px; }
.sheet-in .btn{ margin-top:24px; }
.resume-email{
  margin-top:16px; padding:14px 18px; border-radius:var(--r-sm);
  background:var(--surface-sunk); border:1px solid var(--line-strong);
  font-family:var(--label); font-size:1.02rem; color:var(--ink);
  word-break:break-all; user-select:all; -webkit-user-select:all;
}
.resume-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.resume-actions .btn{ margin-top:0; min-height:50px; flex:1 1 auto; }
.resume-status{ min-height:1.35em; margin-top:12px; font-size:.9rem; font-weight:600; color:var(--emerald); }
.resume-status[data-kind="bad"]{ color:var(--danger); }
.resume-close{ width:100%; }
@media (max-width:480px){ .resume-actions .btn{ flex:1 1 100%; } }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.actionbar{ display:none; }
@media (max-width:760px){
  :root{ --bar-h: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .actionbar{
    display:grid; grid-template-columns:repeat(3,1fr); gap:8px;
    position:fixed; left:0; right:0; bottom:0; z-index:110;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background:color-mix(in srgb,var(--ground) 94%, transparent);
    backdrop-filter:saturate(1.3) blur(12px);
    border-top:1px solid var(--line);
  }
  .actionbar a{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
    min-height:52px; border-radius:14px; text-decoration:none;
    font-size:.78rem; font-weight:700; letter-spacing:.01em;
    background:var(--surface); border:1px solid var(--line); color:var(--ink-soft);
  }
  .actionbar a.primary{ background:var(--emerald); border-color:var(--emerald); color:var(--on-emerald); }
  html{ scroll-padding-top:64px; }
}


/* ============================================================
   UTILITY BAR + LOGO BAND + MAIN NAV
   ============================================================ */
.utilbar{ background:var(--emerald-deep); color:var(--on-emerald); font-size:.9rem; }
.utilbar-in{ display:flex; flex-wrap:wrap; align-items:center; gap:10px 22px; min-height:40px; justify-content:flex-end; }
.utilbar a{ display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-weight:600; color:var(--on-emerald); }
.util-note{ margin-right:auto; color:var(--on-emerald-dim); display:inline-flex; align-items:center; gap:8px; }
.util-note svg{ color:var(--gold); flex:none; }
.util-call:hover{ color:var(--gold); }
.util-rx{
  background:var(--gold); color:#221904; padding:0 18px; min-height:40px; align-self:stretch;
  font-weight:700; letter-spacing:.02em;
}
.util-rx:hover{ background:var(--on-emerald); color:var(--emerald-ink); }

.logoband{ background:var(--surface); border-bottom:1px solid var(--line); }
.logoband-in{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding-block:11px; }
.logo{ display:flex; align-items:center; gap:16px; text-decoration:none; }
.logo img{ width:82px; height:auto; display:block; }
.logo-words{ display:flex; flex-direction:column; line-height:1.04; }
.logo-en{ font-family:var(--display); font-size:clamp(1.35rem,2.6vw,1.9rem); font-weight:600; color:var(--emerald); letter-spacing:-.015em; }
.logo-es{ font-family:var(--label); font-size:.64rem; letter-spacing:.17em; text-transform:uppercase; color:var(--gold-text); margin-top:7px; }
.logoband-aside{ display:flex; align-items:center; gap:14px; }
.logoband-hours{ text-align:right; font-size:.9rem; color:var(--ink-soft); line-height:1.4; }
.logoband-hours b{ display:block; font-family:var(--label); font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:4px; }

.mainnav{ position:sticky; top:0; z-index:100; background:var(--emerald); box-shadow:0 6px 20px -16px rgba(10,40,30,.7); }
.mainnav-in{ display:flex; align-items:center; gap:4px; flex-wrap:wrap; min-height:48px; }
.mainnav a{
  padding:10px 13px; border-radius:8px; text-decoration:none; color:var(--on-emerald);
  font-size:.86rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  transition:background-color .18s ease, color .18s ease;
}
.mainnav a:hover{ background:color-mix(in srgb,#fff 14%, transparent); color:#fff; }
.mainnav .lang{ margin-left:auto; border-color:color-mix(in srgb,#fff 34%, transparent); background:transparent; }
.mainnav .lang button{ color:var(--on-emerald-dim); }
.mainnav .lang button[aria-pressed="true"]{ background:var(--gold); color:#221904; }
@media (max-width:900px){
  .logoband-hours{ display:none; }
  .logo img{ width:64px; }
  .mainnav-in{ min-height:52px; gap:2px; }
  .mainnav a{ padding:10px 10px; font-size:.76rem; letter-spacing:.05em; }
}
@media (max-width:620px){
  .utilbar-in{ justify-content:space-between; min-height:44px; }
  .util-note{ display:none; }
  .util-rx{ padding:0 14px; min-height:44px; }
  .logoband-in{ padding-block:10px; }
  .logo{ gap:11px; }
  .logo img{ width:52px; }
  .logo-en{ font-size:1.12rem; line-height:1.15; }
  .logo-es{ display:none; }
  .mainnav .lang{ margin-left:auto; }
}

/* ============================================================
   INFO STRIP — photo panels behind a warm-ivory veil
   ============================================================ */
.infostrip{ background:var(--ground); padding-bottom:clamp(24px,3.4vw,40px); }
.infostrip-in{
  display:grid; gap:14px; grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:calc(-1 * clamp(24px,4vw,52px));
}
.infocard{
  position:relative; isolation:isolate; overflow:hidden;
  background:var(--surface); color:var(--ink);
  border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow-md);
  padding:clamp(18px,2.1vw,24px);
  display:flex; gap:14px; align-items:flex-start;
}
.info-shot{
  position:absolute; inset:0; z-index:-2;
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
}
.info-veil{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg,
    rgba(var(--veil-rgb),.96) 0%, rgba(var(--veil-rgb),.93) 36%,
    rgba(var(--veil-rgb),.74) 72%, rgba(var(--veil-rgb),.48) 100%);
}
.infocard-ico{
  width:40px; height:40px; border-radius:11px; flex:none; display:grid; place-items:center;
  background:color-mix(in srgb, var(--emerald) 10%, transparent);
  color:var(--emerald); border:1px solid color-mix(in srgb, var(--emerald) 22%, transparent);
}
.infocard h3{
  font-family:var(--label); font-size:.64rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--emerald); font-weight:500; margin-bottom:8px;
}
.infocard p, .infocard a{ font-size:1rem; line-height:1.5; color:var(--ink); }
.infocard a{ font-weight:700; text-decoration:none; color:var(--emerald); }
.infocard a:hover{ color:var(--emerald-bright); text-decoration:underline; }
.infocard .hours{ gap:3px 14px; font-size:.95rem; }
.infocard .h-day{ color:var(--ink-soft); }
.infocard .h-time{ color:var(--ink); }
@media (max-width:860px){ .infostrip-in{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   SERVICE CARD GRIDS (patients, equipment)
   ============================================================ */
.pgrid{ display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(272px,1fr)); }
.pcard{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md);
  padding:clamp(24px,2.8vw,30px); box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.pcard:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--line-strong); }
.pcard-ico{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center; margin-bottom:16px;
  background:var(--surface-sunk); color:var(--emerald); border:1px solid var(--line); }
.pcard h3{ font-size:1.22rem; margin-bottom:9px; }
.pcard p{ color:var(--ink-soft); font-size:1rem; line-height:1.58; }
@media (prefers-reduced-motion: reduce){ .pcard:hover{ transform:none; } }

/* ============================================================
   REFILLS — light band over an optional photograph
   ============================================================ */
.refillband{ position:relative; isolation:isolate; overflow:hidden; background:var(--surface-sunk); }
.refill-shot{ position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; }
.refill-veil{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg,
    rgba(var(--veil-rgb),.96) 0%, rgba(var(--veil-rgb),.94) 52%, rgba(var(--veil-rgb),.80) 100%);
}
.refillband .eyebrow{ color:var(--gold-text); }
.refillband .eyebrow::before{ background:var(--gold); }
.refillband h2{ color:var(--emerald); font-size:clamp(1.9rem,4vw,2.9rem); }
.refillband h2 + p{ margin-top:14px; }
.refillband p{ color:var(--ink-soft); font-size:1.1rem; line-height:1.68; max-width:58ch; }
.refillband .steps li{
  background:var(--surface); border:1px solid var(--line); box-shadow:var(--shadow-sm);
}
.refillband .steps li::before{ color:var(--emerald); border-color:var(--line-strong); }
.refillband .steps b{ color:var(--ink); }
.refillband .steps span{ color:var(--ink-soft); }

/* ============================================================
   PHYSICIANS — dark editorial band
   ============================================================ */
.band{ background:var(--emerald-deep); color:var(--on-emerald); }
.band .eyebrow{ color:var(--gold); }
.band .eyebrow::before{ background:var(--gold); }
.band h2{ color:var(--on-emerald); font-size:clamp(1.9rem,4vw,2.9rem); }
.band p{ color:var(--on-emerald-dim); font-size:1.1rem; line-height:1.68; max-width:58ch; }
.band p + p{ margin-top:16px; }
.band-grid{ display:grid; gap:clamp(30px,5vw,60px); grid-template-columns:minmax(0,5fr) minmax(0,6fr); align-items:center; }
.band-cta{ display:flex; flex-wrap:wrap; gap:13px; margin-top:30px; }
.steps{ list-style:none; margin:0; padding:0; display:grid; gap:14px; counter-reset:step; }
.steps li{
  display:flex; gap:16px; align-items:flex-start; padding:20px 22px; border-radius:var(--r-md);
  background:color-mix(in srgb,#fff 7%, transparent); border:1px solid color-mix(in srgb,#fff 12%, transparent);
}
.steps li::before{
  counter-increment:step; content:counter(step);
  font-family:var(--label); font-size:.85rem; font-weight:500; color:var(--gold);
  width:30px; height:30px; flex:none; border-radius:50%; display:grid; place-items:center;
  border:1px solid color-mix(in srgb,var(--gold) 48%, transparent);
}
.steps b{ display:block; color:var(--on-emerald); font-size:1.04rem; margin-bottom:3px; }
.steps span{ color:var(--on-emerald-dim); font-size:.96rem; line-height:1.5; }
@media (max-width:860px){ .band-grid{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   EQUIPMENT
   ============================================================ */
.equip{ background:var(--surface-sunk); border-block:1px solid var(--line); }
.equip-lede{ max-width:64ch; }
.wide-head{ max-width:min(100%,42rem); }
.lede-sp{ margin-top:18px; }
/* Store photo card */
.storeshot{
  margin:0; border-radius:var(--r-xl); overflow:hidden;
  background:var(--emerald); box-shadow:var(--shadow-lg);
  border:1px solid color-mix(in srgb, var(--emerald) 40%, transparent);
}
.storeshot img{ display:block; width:100%; height:auto; aspect-ratio:748/471; object-fit:cover; }
.storeshot-strip{
  display:flex; align-items:center; justify-content:space-between; gap:8px 20px; flex-wrap:wrap;
  background:var(--emerald); color:var(--on-emerald);
  padding:14px clamp(18px,2.2vw,24px) 16px;
}
.ss-left{ display:flex; flex-direction:column; gap:3px; }
.ss-label{
  font-family:var(--label); font-size:.6rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--on-emerald-dim);
}
.storeshot-strip a{
  font-family:var(--display); font-size:clamp(1.42rem,2.3vw,1.8rem); font-weight:600;
  line-height:1.1; text-decoration:none; color:var(--on-emerald); letter-spacing:.01em;
}
.storeshot-strip a:hover{ color:var(--gold); }
.ss-note{ font-size:.9rem; color:var(--on-emerald-dim); text-align:right; line-height:1.4; }
@media (max-width:520px){
  .storeshot-strip{ justify-content:flex-start; }
  .ss-note{ text-align:left; }
}

.apoth-trust{ margin-top:0; padding-top:0; border-top:0; justify-content:center; gap:10px 22px; }
.apoth-trust li{ color:var(--on-emerald); }
.apoth-trust svg{ color:var(--gold); }
.equip-note{ margin-top:26px; font-size:.97rem; color:var(--ink-soft); max-width:62ch; }

/* ============================================================
   INSURANCE
   ============================================================ */
.ins-in{ display:grid; gap:clamp(26px,4vw,52px); grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:center; }
.ins-plans{ display:flex; flex-wrap:wrap; gap:11px; }
.ins-plans li{
  list-style:none; background:var(--surface); border:1px solid var(--line-strong);
  border-radius:10px; padding:14px 20px; font-weight:700; font-size:1.02rem; box-shadow:var(--shadow-sm);
}
.ins-plans li.more{ background:transparent; border-style:dashed; font-weight:600; color:var(--ink-faint); }
@media (max-width:820px){ .ins-in{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   LANGUAGE BADGE + CAREERS
   ============================================================ */
.langbadge{
  display:inline-flex; align-items:center; gap:11px; margin-top:26px;
  background:var(--surface); border:1px solid var(--line-strong); border-radius:999px;
  padding:12px 20px; font-weight:700; font-size:1rem; box-shadow:var(--shadow-sm);
}
.langbadge svg{ color:var(--emerald); flex:none; }

.careers-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(28px,3.6vw,46px); box-shadow:var(--shadow-md);
  display:grid; gap:clamp(24px,4vw,48px); grid-template-columns:minmax(0,6fr) minmax(0,5fr); align-items:center;
}
.careers-card h2{ font-size:clamp(1.8rem,3.4vw,2.5rem); }
.careers-card p{ color:var(--ink-soft); font-size:1.08rem; line-height:1.66; margin-top:16px; }
.careers-cta{ display:flex; flex-direction:column; gap:12px; }
.careers-cta .btn{ width:100%; }
@media (max-width:820px){ .careers-card{ grid-template-columns:minmax(0,1fr); } }


/* ============================================================
   EQUIPMENT — compact chips + one shared details panel
   ============================================================ */
.eqchips{ display:flex; flex-wrap:wrap; gap:10px; }
.eqchip{
  font-family:var(--body); font-size:.97rem; font-weight:600; line-height:1.25;
  color:var(--emerald); background:var(--surface);
  border:1px solid var(--line); border-radius:999px;
  padding:12px 20px; min-height:46px; cursor:pointer;
  box-shadow:0 1px 2px rgba(20,40,32,.05), 0 3px 10px rgba(20,40,32,.055);
  transition:transform .18s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}
.eqchip:hover{
  transform:translateY(-2px);
  box-shadow:0 2px 4px rgba(20,40,32,.07), 0 10px 22px rgba(20,40,32,.11);
  border-color:var(--emerald);
}
.eqchip:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }
.eqchip[aria-pressed="true"]{
  background:var(--emerald); color:var(--on-emerald); border-color:var(--emerald);
  box-shadow:0 2px 4px rgba(20,40,32,.12), 0 10px 22px rgba(20,40,32,.16);
}
@media (prefers-reduced-motion: reduce){
  .eqchip{ transition:box-shadow .01ms, border-color .01ms, background-color .01ms, color .01ms; }
  .eqchip:hover{ transform:none; }
}

.eqpanel{
  position:relative; margin-top:20px; max-width:44rem;
  background:var(--surface); border:1px solid var(--line-strong); border-radius:var(--r-md);
  padding:clamp(20px,2.4vw,26px); padding-right:56px; box-shadow:var(--shadow-md);
}
.eqpanel:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }
.eqpanel h3{ font-size:1.25rem; margin-bottom:9px; }
.eqpanel p{ color:var(--ink-soft); font-size:1rem; line-height:1.6; }
.eqpanel-cta{ margin-top:18px; min-height:48px; font-size:.96rem; }
.eqpanel-close{
  position:absolute; top:12px; right:12px;
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-strong);
  background:var(--surface); color:var(--ink-soft); cursor:pointer; display:grid; place-items:center;
}
.eqpanel-close:hover{ background:var(--surface-sunk); color:var(--emerald); }
[hidden]{ display:none !important; }

/* modal sheets lock the page behind them */
html.dlg-open, html.dlg-open body{ overflow:hidden; }

/* ============================================================
   INSURANCE — 2x2 cards
   ============================================================ */
.ins-plans{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px;
  list-style:none; margin:0; padding:0;
}
.ins-plans li{
  background:#fff; border:1px solid var(--line-strong); border-radius:var(--r-sm);
  padding:26px 22px; min-height:104px; display:grid; place-items:center; text-align:center;
  box-shadow:var(--shadow-sm);
  font-family:var(--body); font-weight:700; font-size:1.06rem; color:#1C221E; line-height:1.25;
}
.ins-more{ margin-top:16px; font-size:.97rem; color:var(--ink-soft); }
@media (max-width:420px){ .ins-plans{ grid-template-columns:minmax(0,1fr); } }

/* ============================================================
   DIRECTIONS CARD (replaces the decorative plaza panel)
   ============================================================ */
.visitshot{
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md);
  background:var(--emerald); border:1px solid color-mix(in srgb,var(--emerald) 40%, transparent);
}
.visitshot img{ display:block; width:100%; height:auto; aspect-ratio:748/471; object-fit:cover; }
.visitshot-foot{
  background:var(--emerald); color:var(--on-emerald);
  padding:clamp(18px,2.2vw,24px); display:flex; flex-direction:column; gap:12px;
}
.visitshot-foot .btn{ width:100%; }
.dircard-note{ font-size:.85rem; color:var(--on-emerald-dim); line-height:1.45; }
.dircard-h{ font-family:var(--label); font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:var(--on-emerald-dim); }
.dircard address{ font-style:normal; font-size:1.12rem; line-height:1.55; }
.dircard-land{ color:var(--on-emerald-dim); font-size:.98rem; line-height:1.5; }
.dircard .btn{ width:100%; }
.dircard-rule{ height:1px; background:color-mix(in srgb,var(--on-emerald) 20%, transparent); }

/* ============================================================
   PRESCRIBER BANNER (compact)
   ============================================================ */
.phybanner{
  background:var(--emerald-deep); color:var(--on-emerald);
  border-radius:var(--r-lg); padding:clamp(22px,2.8vw,30px) clamp(24px,3vw,36px);
  display:flex; flex-wrap:wrap; align-items:center; gap:18px 28px; box-shadow:var(--shadow-md);
}
.phybanner-txt{ flex:1 1 320px; min-width:0; }
.phybanner h2{ color:var(--on-emerald); font-size:clamp(1.25rem,2.2vw,1.55rem); margin-bottom:7px; }
.phybanner p{ color:var(--on-emerald-dim); font-size:.99rem; line-height:1.55; max-width:62ch; }
.phybanner .btn{ flex:none; }

/* consent checkbox alignment */
.consent{ align-items:flex-start; gap:14px; padding:2px 0; }
.consent input{ width:22px; height:22px; margin:1px 0 0; }
.field-consent{ margin-bottom:18px; }

/* ============================================================
   SCROLL REVEAL — only armed by JS when motion is welcome
   ============================================================ */
.reveal{ opacity:1; }
html.anim .reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s cubic-bezier(.22,.7,.3,1); }
html.anim .reveal.in{ opacity:1; transform:none; }

/* Utility classes replacing former inline style attributes, so the
   Content-Security-Policy can forbid inline styles outright. */
.sprite{ position:absolute; }
.c-gold{ color:var(--gold); }
.c-emerald{ color:var(--emerald); }
.c-onemerald{ color:var(--on-emerald); }
.minw0{ min-width:0; }

