/* ---------- tokens ---------- */
:root {
  --bg: #F2EDE4;
  --bg-2: #EAE3D5;
  --paper: #FBF8F2;
  --ink: #15130E;
  --ink-2: #3A352B;
  --ink-3: #6B6354;
  --rule: #1513140f;
  --rule-2: #15130E22;
  --accent: #A9C9FA;
  --accent-deep: #2b5d95;
  --accent-mid: #5f95ce;
  --neon: #5CE08A;
  --good: #1F6F3D;

  --display: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 0.75rem 1rem;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  width: 1px; height: 1px; position: absolute; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
}

/* ---------- layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section {
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
  border-top: 1px solid var(--rule-2);
}

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #f5efe3;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.announce a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announce .ann-right { display: flex; gap: 28px; }
.announce .status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block; margin-right: 8px;
  background: var(--neon);
  box-shadow: 0 0 0 3px rgba(92, 224, 138, 0.2);
}
.announce .status-dot.closed {
  background: #FF7A6B;
  box-shadow: 0 0 0 3px rgba(255, 122, 107, 0.2);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0;
  background: rgba(242, 237, 228, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid var(--rule-2);
}
.nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--rule-2);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark img {
  width: 90%; height: 90%; object-fit: contain;
}
.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.cta-wrap { display: flex; justify-content: flex-end; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover { background: var(--accent-mid); color: #fff; }
.btn-ghost {
  border-color: var(--rule-2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: rgba(21, 19, 14, 0.04); }
.btn-light {
  background: #fff;
  color: var(--accent-deep);
}
.btn-light:hover { background: var(--accent); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 12%, rgba(169, 201, 250, 0.42) 0%, transparent 55%),
    radial-gradient(circle at 8% 88%, rgba(92, 224, 138, 0.16) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--ink);
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(56px, 8vw, 104px);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.6);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(92, 224, 138, 0.45);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 28px 0 28px;
  color: var(--ink);
  max-width: 18ch;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-deep);
}
.hero p.lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 0 44px;
}
.hero-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--rule-2);
}
.hero-phone {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.hero-phone .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.hero-phone .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: block;
  transition: color 0.2s ease;
}
.hero-phone:hover .num { color: var(--accent-deep); }
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-bullets .line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-bullets .line::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-deep);
  flex-shrink: 0;
}
.hero-cta-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.hero-cta-col .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- storefront ---------- */
.storefront {
  background: var(--paper);
  border-top: 1px solid var(--rule-2);
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
}
.storefront-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.storefront-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule-2);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.12);
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.storefront-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.storefront-info h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
}
.storefront-info h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-deep);
}
.storefront-lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 48ch;
}
.storefront-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.storefront-meta > div { margin: 0; }
.storefront-meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.storefront-meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--ink);
  color: var(--paper);
}
.trust .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}
.trust-cell {
  padding: 32px 24px;
  border-left: 1px solid rgba(245, 239, 227, 0.14);
}
.trust-cell:first-child { border-left: none; padding-left: var(--pad); }
.trust-cell:last-child { padding-right: var(--pad); }
.trust-cell .big {
  font-family: var(--display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.trust-cell .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.66);
  margin-top: 10px;
}

/* ---------- section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2,
.symptoms-h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
}
.section-head h2 em,
.symptoms-h2 em,
.cta-band h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-deep);
}
.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
.service-card {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: transparent;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--paper); }
.service-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 22px 0 10px;
}
.service-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.service-card .icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  color: var(--accent-deep);
}

/* ---------- symptoms ---------- */
.symptoms { background: var(--bg-2); }
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
}
.symptoms.section { padding-top: 0; padding-bottom: 0; }
.symptoms-h2 { margin: 16px 0 24px; }
.symptoms p {
  max-width: 44ch;
  color: var(--ink-2);
  margin: 0;
}
.symptom-list { list-style: none; margin: 0; padding: 0; }
.symptom-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-2);
  align-items: center;
}
.symptom-list li:last-child { border-bottom: none; }
.symptom-list .glyph {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  display: grid; place-items: center;
  color: var(--accent-deep);
}

/* ---------- reviews ---------- */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--accent-deep);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  flex: 1;
}
.review-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule-2);
}
.review-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}
.review-card .name { font-size: 14px; font-weight: 500; }
.review-card .when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.reviews-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-2);
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
  flex-wrap: wrap;
  gap: 16px;
}
.reviews-foot .agg {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-foot .agg .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.reviews-foot .agg-stars {
  color: var(--accent-deep);
  letter-spacing: 3px;
}
.reviews-foot .agg-count {
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------- visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.hours-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-2);
  font-size: 15px;
}
.hours-table td:first-child {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 80px;
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td:first-child { color: var(--accent-deep); }
.hours-table tr.today td:last-child { font-weight: 500; }
.hours-table tr.today td:last-child::after {
  content: "  · today";
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hours-table tr.closed td:last-child { color: var(--ink-3); }

.visit-contact {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.visit-link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--ink);
  display: block;
  margin-top: 8px;
  word-break: break-word;
}
.visit-link.sm { font-size: 16px; }
.visit-link:hover { color: var(--accent-deep); }

.visit-card {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: 16px;
  overflow: hidden;
}
.visit-card .map {
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.visit-card .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.visit-card .addr-block {
  padding: 24px;
  border-top: 1px solid var(--rule-2);
}
.visit-card .addr-block .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.visit-card .addr-block .addr {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.visit-card .addr-block a.dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 500;
}
.visit-card .addr-block a.dir:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--paper);
}
.cta-band h2 em { color: var(--accent); }
.cta-band .right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-band .right a.phone {
  font-family: var(--display);
  font-weight: 600;
  font-size: 40px;
  text-decoration: none;
  color: var(--paper);
  letter-spacing: -0.05em;
  line-height: 1;
}
.cta-band .right a.phone:hover { color: var(--accent); }
.cta-band .right .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.66);
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 239, 227, 0.66);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(245, 239, 227, 0.14);
}
.footer > .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.14);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-mark {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-mark img {
  width: 100%; height: 100%; object-fit: contain;
}
.footer .brand-blk .nm {
  font-family: var(--display);
  font-weight: 600;
  color: var(--paper);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.footer .brand-blk p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 38ch;
  margin: 0;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a, .footer .info {
  color: rgba(245, 239, 227, 0.66);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}
.footer ul a:hover { color: var(--paper); }
.footer-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-foot { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta-col { align-items: flex-start; }
  .trust .container { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(3) { border-left: none; border-top: 1px solid rgba(245, 239, 227, 0.14); padding-left: var(--pad); }
  .trust-cell:nth-child(4) { border-top: 1px solid rgba(245, 239, 227, 0.14); }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band .container { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .footer > .container { grid-template-columns: 1fr 1fr; }
  .nav .container { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .storefront-grid { grid-template-columns: 1fr; }
  .storefront-meta { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust .container { grid-template-columns: 1fr; }
  .trust-cell {
    border-left: none !important;
    border-top: 1px solid rgba(245, 239, 227, 0.14);
    padding-left: var(--pad) !important;
    padding-right: var(--pad) !important;
  }
  .trust-cell:first-child { border-top: none; }
  .footer > .container { grid-template-columns: 1fr; }
  .announce .container .ann-right { display: none; }
  .visit-contact { grid-template-columns: 1fr; }
}
