/* Care One Pharmacy — design system
   Register: brand (local pharmacy marketing). Strategy: Committed.
   Brand red #AF0101 anchors identity; gold #CF9C26 warm secondary.
   Neutrals tinted toward brand hue; never pure black/white. */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand: #af0101;
  --brand-700: #8f0303;
  --brand-800: #6f0505;
  --brand-50: #fbeeee;
  --brand-100: #f6dcdc;
  --gold: #cf9c26;
  --gold-700: #9a7211;
  --gold-50: #faf3e2;

  /* Warm-tinted neutrals (red hue bias) */
  --ink: #221a1a;          /* body text */
  --ink-soft: #4a3f3f;     /* secondary text */
  --ink-faint: #6f6363;    /* muted text */
  --paper: #fdfbfa;        /* page background, warm off-white */
  --surface: #ffffff;      /* cards */
  --surface-2: #f7f1ef;    /* tinted section bg */
  --line: #e7dedb;         /* borders */
  --line-strong: #d6c9c5;

  /* Functional */
  --focus: #1d4ed8;        /* distinct blue focus ring (not brand red) */
  --ok: #1f7a44;

  /* Type */
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Type scale (1.25 ratio) */
  --t-xs: 0.8rem;
  --t-sm: 0.9rem;
  --t-base: 1.0625rem;
  --t-lg: 1.25rem;
  --t-xl: 1.5rem;
  --t-2xl: 1.95rem;
  --t-3xl: 2.45rem;
  --t-4xl: 3.05rem;

  /* Spacing rhythm (varied, 4pt base) */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;

  --maxw: 76rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(34,26,26,.06), 0 1px 3px rgba(34,26,26,.08);
  --shadow-md: 0 4px 14px rgba(34,26,26,.08), 0 2px 6px rgba(34,26,26,.06);
  --shadow-lg: 0 18px 40px rgba(34,26,26,.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
.ico { width: 1.25em; height: 1.25em; flex: none; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-800); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: var(--t-4xl); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); }
p { max-width: 68ch; }

/* ---------- Focus (visible, distinct) ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-7); }
.section--tint { background: var(--surface-2); }
.section--brand { background: var(--brand); color: #fff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .12em;
  font-size: var(--t-xs); font-weight: 700; color: var(--brand-700); max-width: none;
}
.section--brand .eyebrow { color: var(--gold-50); }
.lede { font-size: var(--t-lg); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--t-base);
  line-height: 1; padding: .85rem 1.4rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  min-height: 48px; transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand-700); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--brand-50); border-color: var(--brand); color: var(--brand-800); }
.btn--on-brand { background: #fff; color: var(--brand-800); }
.btn--on-brand:hover { background: var(--gold-50); color: var(--brand-800); }
.btn--on-brand-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--on-brand-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--lg { font-size: var(--t-lg); padding: 1rem 1.7rem; }
.btn .ico { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(253,251,250,.92); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid var(--line); }
.topbar { background: var(--brand-800); color: #fff; font-size: var(--t-sm); }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; align-items: center; justify-content: space-between; padding-block: .4rem; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--gold-50); text-decoration: underline; }
.topbar .ico { width: 1em; height: 1em; }
.topbar-group { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; align-items: center; }
.topbar-locs { gap: .25rem 1.5rem; }
.topbar-loc { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-loc .ico { color: var(--gold); flex: none; }
.topbar-loc-name { font-weight: 600; }
.topbar-loc a { font-weight: 600; }
@media (max-width: 720px){ .topbar-loc-name { display: none; } }

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .7rem; }
.brand-link { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-link img { height: 52px; width: auto; }
.nav-main { display: flex; align-items: center; gap: .25rem; }
.nav-main a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: var(--t-base); padding: .55rem .7rem; border-radius: 8px; }
.nav-main a:hover { background: var(--brand-50); color: var(--brand-800); }
.nav-main a[aria-current="page"] { color: var(--brand-700); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

/* Dropdown */
.has-sub { position: relative; }
.has-sub-trigger { display: inline-flex; align-items: center; gap: .25rem; }
.has-sub-trigger .chevron { width: 1rem; height: 1rem; transition: transform .2s var(--ease); }
.has-sub:hover .has-sub-trigger .chevron,
.has-sub:focus-within .has-sub-trigger .chevron { transform: rotate(180deg); }
/* invisible hover bridge so the menu doesn't close in the gap */
.has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; width: 540px; max-width: min(540px, calc(100vw - 2rem));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .6rem; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
  z-index: 120;
}
.submenu::before {
  content: ""; position: absolute; top: -7px; left: 28px; width: 13px; height: 13px;
  background: var(--surface); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg); border-radius: 3px 0 0 0;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.submenu-item { display: flex; align-items: flex-start; gap: .65rem; padding: .6rem .7rem; border-radius: 10px; }
.submenu-item:hover { background: var(--brand-50); }
.submenu-ico {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 9px; background: var(--brand-50); color: var(--brand-700);
}
.submenu-item:hover .submenu-ico { background: var(--brand); color: #fff; }
.submenu-ico .ico { width: 1.2rem; height: 1.2rem; }
.submenu-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.submenu-name { font-weight: 600; color: var(--ink); font-size: var(--t-base); line-height: 1.25; }
.submenu-desc { font-weight: 400; color: var(--ink-soft); font-size: .82rem; line-height: 1.35; }
.submenu-all {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .35rem; padding: .7rem; border-radius: 10px; font-weight: 600;
  color: var(--brand-700); background: var(--brand-50);
}
.submenu-all:hover { background: var(--brand); color: #fff; }
.submenu-all .ico { width: 1.05rem; height: 1.05rem; transition: transform .15s var(--ease); }
.submenu-all:hover .ico { transform: translateX(3px); }

/* Mobile nav */
.nav-toggle { display: none; background: transparent; border: 2px solid var(--line-strong); border-radius: 8px; padding: .5rem; cursor: pointer; color: var(--ink); }
.nav-toggle .ico { width: 1.6rem; height: 1.6rem; }
.mobile-nav, .mobile-nav-backdrop { display: none; }
.mobile-nav-head { display: none; }

@media (max-width: 940px) {
  .nav-main, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .mobile-nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 190;
    background: rgba(20,10,10,.45); animation: mn-fade .2s ease;
  }
  .mobile-nav-backdrop[hidden] { display: none; }

  .mobile-nav {
    display: flex; flex-direction: column; position: fixed; top: 0; right: 0; z-index: 200;
    width: min(86vw, 22rem); height: 100%; height: 100dvh; overflow-y: auto;
    background: var(--surface); box-shadow: -8px 0 30px rgba(0,0,0,.22);
    animation: mn-slide .22s ease;
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
    position: sticky; top: 0; background: var(--surface);
  }
  .mobile-nav-title { font-weight: 700; font-family: var(--font-head, inherit); }
  .nav-close { background: transparent; border: 0; cursor: pointer; color: var(--ink); padding: .4rem; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav-close .ico { width: 1.5rem; height: 1.5rem; }
  .mobile-nav nav { display: flex; flex-direction: column; padding: .75rem 1.25rem 1.5rem; gap: .15rem; }
  .mobile-nav a { padding: .85rem .5rem; min-height: 44px; text-decoration: none; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); display: flex; align-items: center; }
  .mobile-nav details summary { padding: .85rem .5rem; min-height: 44px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-nav details summary::-webkit-details-marker { display: none; }
  .mobile-nav details a { padding-left: 1.25rem; font-weight: 500; }
  .mobile-nav .btn { margin-top: .75rem; justify-content: center; min-height: 48px; }

  body.menu-open { overflow: hidden; }
}

@keyframes mn-slide { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes mn-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav, .mobile-nav-backdrop { animation: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(120% 90% at 85% -10%, var(--brand-50) 0%, transparent 60%),
  var(--paper); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-7); align-items: center; padding-block: var(--sp-8); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.hero .lede { margin-top: var(--sp-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: var(--sp-5); }
.hero-trust { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; color: var(--ink-soft); font-size: var(--t-sm); }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust .ico { width: 1.2rem; height: 1.2rem; color: var(--brand); }
.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--sp-6); }
.hero-card h2 { font-size: var(--t-xl); }
.hero-card-img { margin: calc(-1 * var(--sp-6)) calc(-1 * var(--sp-6)) var(--sp-5); border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; aspect-ratio: 4 / 3; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-panel .hero-card-img { margin: 0 0 var(--sp-5); border-radius: var(--radius-md, .6rem); }

/* Hero location switcher */
.loc-tabs { display: flex; gap: .4rem; background: var(--brand-50); border-radius: 999px; padding: .3rem; margin-bottom: var(--sp-5); }
.loc-tab { flex: 1; border: 0; background: transparent; cursor: pointer; font: inherit; font-weight: 600; font-size: var(--t-xs); color: var(--ink-soft); padding: .55rem .4rem; border-radius: 999px; line-height: 1.15; transition: background var(--ease, .2s), color var(--ease, .2s); }
.loc-tab:hover { color: var(--brand-700); }
.loc-tab.is-active { background: var(--brand); color: #fff; box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,.12)); }
.loc-tab:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.loc-panel { display: none; }
.loc-panel.is-active { display: block; animation: locFade .25s var(--ease, ease); }
@keyframes locFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.loc-panel h2 { font-size: var(--t-xl); }
.loc-lines { display: grid; gap: .65rem; margin: 1rem 0; color: var(--ink-soft); font-size: .95rem; }
.loc-line { display: flex; gap: .6rem; align-items: flex-start; }
.loc-line .ico { flex: none; color: var(--brand); }
.loc-hours-head { font-size: 1rem; margin-bottom: .5rem; }
.loc-actions { display: grid; gap: .6rem; margin-top: 1.1rem; }
.loc-directions { width: 100%; justify-content: center; }
.loc-review { width: 100%; justify-content: center; }
.loc-review .ico { color: var(--gold, #CF9C26); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---------- Service header image ---------- */
.svc-hero-img { width: 100%; max-height: 360px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: var(--sp-6); box-shadow: var(--shadow-md, 0 6px 20px rgba(0,0,0,.08)); }
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Service / feature grid (varied, not identical cards) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  display: flex; flex-direction: column; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; text-decoration: none; color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); color: var(--ink); }
.svc-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-50); color: var(--brand); flex: none; }
.svc-icon .ico { width: 24px; height: 24px; }
.svc-card h3 { font-size: var(--t-lg); }
.svc-card p { color: var(--ink-soft); font-size: var(--t-sm); margin: 0; }
.svc-card .more { margin-top: auto; padding-top: .5rem; color: var(--brand-700); font-weight: 700; font-size: var(--t-sm); display: inline-flex; align-items: center; gap: .35rem; }
.svc-card:hover .more .ico { transform: translateX(3px); }
.svc-card .more .ico { width: 1em; height: 1em; transition: transform .2s var(--ease); }

/* ---------- Feature rows (alternating) ---------- */
.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-7); align-items: center; }
.feature + .feature { margin-top: var(--sp-8); }
.feature:nth-child(even) .feature-media { order: -1; }
.feature-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; gap: var(--sp-5); } .feature:nth-child(even) .feature-media { order: 0; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 3.5rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2.5rem; height: 2.5rem;
  background: var(--brand); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.step h3 { font-size: var(--t-lg); margin-bottom: .25rem; }
.step p { color: var(--ink-soft); font-size: var(--t-sm); margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 860px){ .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: .75rem; }
.quote .stars .ico { width: 1.1rem; height: 1.1rem; }
.quote blockquote { font-family: var(--font-head); font-size: var(--t-lg); line-height: 1.45; color: var(--ink); }
.quote cite { display: block; margin-top: .85rem; font-style: normal; font-weight: 600; color: var(--ink-faint); font-size: var(--t-sm); }

/* ---------- Content prose ---------- */
.prose { max-width: 70ch; }
.prose--wide, .prose--wide p, .prose--wide li { max-width: none; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose h2 { margin-top: 2.25rem; margin-bottom: .75rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .5rem; }
.prose ul { margin: 0 0 1.25rem; padding-left: 0; list-style: none; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .45em; width: 1.1rem; height: 1.1rem;
  background: var(--brand); -webkit-mask: var(--check) center/contain no-repeat; mask: var(--check) center/contain no-repeat; }

/* ---------- Pills / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; background: var(--gold-50); color: var(--gold-700);
  border: 1px solid #ecd9a8; padding: .5rem .9rem; border-radius: 999px; font-weight: 600; font-size: var(--t-sm); }

/* ---------- Page header (interior) ---------- */
.page-head { background:
  radial-gradient(120% 120% at 90% -20%, var(--brand-50) 0%, transparent 55%), var(--surface-2);
  border-bottom: 1px solid var(--line); }
.page-head .wrap { padding-block: var(--sp-7); }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 20ch; }
.page-head .lede { margin-top: .9rem; }
.breadcrumb { font-size: var(--t-sm); color: var(--ink-faint); margin-bottom: .9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-700); text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .4rem; color: var(--line-strong); }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

/* ---------- Two-column interior ---------- */
.layout-2col { display: grid; grid-template-columns: 1fr 20rem; gap: var(--sp-7); align-items: start; }
@media (max-width: 900px){ .layout-2col { grid-template-columns: 1fr; } }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); position: sticky; top: 6.5rem; }
.aside-card h2, .aside-card h3 { font-size: var(--t-lg); margin-bottom: .6rem; }
.aside-card + .aside-card { margin-top: 1.25rem; }
.aside-card ul { list-style: none; padding: 0; display: grid; gap: .35rem; }
.aside-card .row { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); font-size: var(--t-sm); }
.aside-card .row .ico { width: 1.1rem; height: 1.1rem; color: var(--brand); flex: none; margin-top: .2rem; }

/* ---------- Forms ---------- */
.field { display: grid; gap: .35rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: var(--t-sm); color: var(--ink); }
.field .req { color: var(--brand); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: var(--t-base); color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: .75rem .85rem; width: 100%; min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); outline: 3px solid var(--focus); outline-offset: 1px; }
.field .hint { font-size: var(--t-xs); color: var(--ink-faint); }
.field-error { color: var(--brand-800); font-size: var(--t-xs); font-weight: 600; display: none; }
.field[data-invalid="true"] .field-error { display: block; }
.field[data-invalid="true"] input, .field[data-invalid="true"] textarea { border-color: var(--brand-800); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-disclaimer { background: var(--gold-50); border: 1px solid #ecd9a8; border-radius: var(--radius); padding: .85rem 1rem; font-size: var(--t-sm); color: var(--ink-soft); display: flex; gap: .6rem; align-items: flex-start; margin-bottom: 1.1rem; }
.form-disclaimer .ico { width: 1.25rem; height: 1.25rem; color: var(--gold-700); flex: none; margin-top: .1rem; }
.form-status { padding: .85rem 1rem; border-radius: var(--radius); font-weight: 600; margin-top: 1rem; }
.form-status[data-state="ok"] { background: #e8f5ec; color: var(--ok); border: 1px solid #b7ddc4; }
.form-status[data-state="err"] { background: var(--brand-50); color: var(--brand-800); border: 1px solid var(--brand-100); }

/* ---------- Map ---------- */
.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius-lg); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 320px; }

/* ---------- Location cards ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 900px){ .loc-grid { grid-template-columns: 1fr; } }
.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .75rem; }
.loc-card h3 { font-size: var(--t-lg); }
.loc-card .meta { display: grid; gap: .5rem; font-size: var(--t-sm); color: var(--ink-soft); }
.loc-card .meta .row { display: flex; gap: .6rem; align-items: flex-start; }
.loc-card .meta .ico { width: 1.1rem; height: 1.1rem; color: var(--brand); flex: none; margin-top: .15rem; }
.loc-card .primary-tag { align-self: flex-start; background: var(--brand-50); color: var(--brand-800); font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .6rem; border-radius: 6px; }
.loc-card .actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .6rem; padding-top: .5rem; }

/* ---------- Hours table ---------- */
.hours { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.hours td { padding: .5rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.hours tr:last-child td { border-bottom: 0; }


/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(100deg, var(--brand-800), var(--brand)); color: #fff; border-radius: var(--radius-lg); padding: var(--sp-7); display: grid; grid-template-columns: 1.4fr auto; gap: var(--sp-5); align-items: center; }
.cta-band h2 { color: #fff; font-size: var(--t-2xl); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: .4rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 760px){ .cta-band { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9e0de; margin-top: var(--sp-8); }
.site-footer a { color: #e9e0de; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-block: var(--sp-7); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 48px; background: #fff; padding: .35rem .5rem; border-radius: 8px; }
.footer-col h3 { color: #fff; font-size: var(--t-base); margin-bottom: .9rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: var(--t-sm); }
.footer-col .row { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--t-sm); color: #cfc4c1; }
.footer-col .row .ico { width: 1.05rem; height: 1.05rem; color: var(--gold); flex: none; margin-top: .2rem; }
.footer-locs { display: grid; gap: 1.1rem; }
.footer-loc { display: grid; gap: .4rem; }
.footer-loc-name { color: #fff !important; font-weight: 600; font-size: var(--t-sm); text-decoration: none; }
.footer-loc-name:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.25rem; font-size: var(--t-xs); color: #b8acaa; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.footer-bottom a { color: #b8acaa; }
.social { display: flex; gap: .6rem; }
.social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; display: grid; place-items: center; }
.social a:hover { background: rgba(255,255,255,.1); }
.social .ico { width: 1.2rem; height: 1.2rem; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: none; gap: .6rem; padding: .6rem .9rem;
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  background: var(--surface); border-top: 1px solid var(--line-strong);
  box-shadow: 0 -4px 18px rgba(0,0,0,.08);
}
.mobile-cta .btn { flex: 1; min-height: 48px; justify-content: center; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 4.75rem; }
}
body.menu-open .mobile-cta { display: none; }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 150;
  max-width: 30rem; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.25rem;
}
@media (max-width: 760px) {
  .cookie { bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
}
.cookie[hidden] { display: none; }
.cookie p { font-size: var(--t-sm); color: var(--ink-soft); margin-bottom: .9rem; }
.cookie .actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie .btn { padding: .6rem 1.1rem; min-height: 42px; font-size: var(--t-sm); }

/* ---------- Utilities ---------- */
.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-head { max-width: 46rem; margin-bottom: var(--sp-6); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
@media (max-width: 760px){ .grid-2 { grid-template-columns: 1fr; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
