/* ============================================================
   PHYSICA MEDICA — Shared design tokens, chrome & components
   Loaded by every page. Each page file owns only its
   page-specific layout overrides (inline <style>).
   ============================================================ */

:root {
  --color-text: #1A1A1A;
  --color-muted: #7A8580;
  --color-accent: #C9A84C;
  --color-border: #DDE0DC;
  --color-cardBg: #F6F7F5;
  --color-primary: #3BA676;
  --color-headerBg: #1E3A2F;
  --color-ctaButton: #3BA676;
  --color-secondary: #1E3A2F;
  --color-background: #FFFFFF;
  --color-ctaButtonText: #f5f5f5;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --container: 1280px;
  --section-pad: clamp(64px, 9vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: clamp(1.65rem, 2.6vw, 2.3rem); line-height: 1.2; }
h3 { font-size: 1.15rem; line-height: 1.3; }
h4 { font-size: 1rem; line-height: 1.3; }

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ============ FOCUS ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-ctaButton);
  color: var(--color-ctaButtonText);
  border-color: var(--color-ctaButton);
}
.btn-primary:hover { background: #2f9266; border-color: #2f9266; }
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover { background: var(--color-primary); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: #fff; color: var(--color-secondary); border-color: #fff; }
.btn-ghost-dark {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-ghost-dark:hover { background: var(--color-secondary); color: #fff; }
.btn-sm {
  padding: 11px 20px;
  font-size: 11px;
}
.btn-arrow::after {
  content: "→";
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  transition: transform 200ms ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(3px); }

.text-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 4px;
  transition: color 200ms;
}
.text-link:hover { color: var(--color-primary); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo .wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 300ms;
  line-height: 1;
}
.nav-logo .wordmark span {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 4px;
}
.nav.is-solid .nav-logo .wordmark { color: var(--color-secondary); }

.nav-items {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-items > li > a,
.nav-items > li > button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: transparent;
  border: 0;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 200ms, opacity 200ms;
  position: relative;
}
.nav.is-solid .nav-items > li > a,
.nav.is-solid .nav-items > li > button { color: rgba(26,26,26,0.8); }
.nav-items > li > a:hover,
.nav-items > li > button:hover { color: var(--color-primary); }

.nav-items > li > a[aria-current="page"] {
  font-weight: 600;
  color: #fff;
}
.nav.is-solid .nav-items > li > a[aria-current="page"] { color: var(--color-text); }
.nav-items > li > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--color-accent);
}

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 200ms, opacity 200ms;
}
.nav.is-solid .nav-phone { color: rgba(26,26,26,0.7); }
.nav-phone:hover { color: #fff; opacity: 1; }
.nav.is-solid .nav-phone:hover { color: var(--color-text); }

.nav-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.nav-cta .btn-ghost:hover { background: #fff; color: var(--color-secondary); border-color: #fff; }
.nav.is-solid .nav-cta .btn-ghost { color: var(--color-primary); border-color: var(--color-primary); }
.nav.is-solid .nav-cta .btn-ghost:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-bottom: 3px;
  opacity: 0.6;
}

/* ============ MEGA MENU ============ */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -24px;
  background: #fff;
  border: 1px solid #ECECE6;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 32px 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0ms 160ms;
  z-index: 110;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0ms 0ms;
}
.dropdown-services { width: 880px; }
.dropdown-conditions { width: 480px; }
.dropdown-about { width: 220px; padding: 20px; left: 0; }

.dd-grid { display: grid; gap: 28px; }
.dropdown-services .dd-grid { grid-template-columns: repeat(4, 1fr); }
.dropdown-conditions .dd-grid { grid-template-columns: repeat(2, 1fr); }

.dd-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}
.dd-col ul { list-style: none; margin: 0; padding: 0; }
.dd-col li + li { margin-top: 10px; }
.dd-col a {
  font-size: 13px;
  color: var(--color-text);
  transition: color 200ms;
  display: block;
}
.dd-col a:hover { color: var(--color-primary); }

.dd-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 26px;
  padding-top: 18px;
}
.dd-footer a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hamburger .bars { display: flex; flex-direction: column; gap: 5px; }
.hamburger .bars span {
  width: 24px; height: 1.5px; background: #fff; display: block; transition: background 300ms;
}
.nav.is-solid .hamburger .bars span { background: var(--color-text); }

.mobile-call {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.nav.is-solid .mobile-call { border-color: var(--color-border); color: var(--color-text); }

/* ============ MOBILE OVERLAY ============ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-secondary);
  color: #fff;
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  transition: opacity 250ms ease;
}
.mobile-overlay.open { display: flex; opacity: 1; }
.mob-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 32px;
}
.mob-top img { height: 40px; }
.mob-close {
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.mob-nav { flex: 1; overflow-y: auto; list-style: none; margin: 0; padding: 0; }
.mob-nav > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-nav > li > a,
.mob-nav > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  padding: 22px 4px;
  text-align: left;
}
.mob-sub { list-style: none; margin: 0; padding: 0 0 18px 4px; display: none; }
.mob-sub.open { display: block; }
.mob-sub li { padding: 8px 0; }
.mob-sub a { color: rgba(255,255,255,0.7); font-size: 15px; font-family: var(--font-body); }
.mob-cta { padding-top: 24px; display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.mob-cta .btn { width: 100%; }
.mob-phone { color: rgba(255,255,255,0.7); text-align: center; font-size: 14px; padding-top: 8px; }

/* ============ INTERIOR PAGE HERO ============ */
.page-hero {
  position: relative;
  background: var(--color-secondary);
  color: #fff;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, #1d3a2f 0%, #2a5240 60%, #3b6b54 100%);
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    radial-gradient(circle at 80% 25%, rgba(201,168,76,0.15), transparent 50%);
  z-index: -1;
}
.page-hero .eyebrow { color: var(--color-accent); margin-bottom: 18px; }
.page-hero h1 { color: #fff; margin-bottom: 22px; max-width: 880px; }
.page-hero h1 em { font-style: normal; color: var(--color-accent); }
.page-hero .lead {
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}
.page-hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.page-hero-meta .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-accent); margin-right: 10px; vertical-align: middle;
}

.breadcrumbs {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color 200ms; }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .sep { padding: 0 10px; opacity: 0.6; }

/* ============ SECTIONS ============ */
.section { padding: var(--section-pad) 0; }
.section.alt { background: var(--color-cardBg); }
.section.dark {
  background: var(--color-secondary);
  color: #fff;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.75); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head-block { max-width: 580px; }
.section-head .lead { color: var(--color-muted); font-size: 1.05rem; }
.section.dark .section-head .lead { color: rgba(255,255,255,0.7); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 0; }

/* ============ IMAGE PLACEHOLDERS ============ */
.image-placeholder {
  position: relative;
  background: var(--color-cardBg);
  overflow: hidden;
}
.image-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(30,58,47,0.04) 0 1px, transparent 1px 14px);
}
.image-placeholder::after {
  content: attr(data-image);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(30, 58, 47, 0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  max-width: 100%;
}
.image-placeholder.dark {
  background: linear-gradient(135deg, #1e3a2f 0%, #3b6b54 100%);
}
.image-placeholder.dark::before {
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px);
}
.image-placeholder.dark::after { color: rgba(255,255,255,0.45); }

/* ============ PROSE / CLINICAL COPY BLOCK ============ */
.prose p { font-size: 1.02rem; line-height: 1.7; color: var(--color-text); margin-bottom: 18px; }
.prose p.lead { font-size: 1.18rem; line-height: 1.55; color: var(--color-text); margin-bottom: 28px; }
.prose p.muted { color: var(--color-muted); }
.prose ul { margin: 0 0 24px; padding-left: 1.2em; color: var(--color-text); }
.prose ul li { margin-bottom: 10px; line-height: 1.6; }
.prose a:not(.btn) {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(59,166,118,0.35);
  transition: border-color 200ms;
}
.prose a:not(.btn):hover { border-bottom-color: var(--color-primary); }

/* ============ FAQ ACCORDION ============ */
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  color: var(--color-primary);
  transition: transform 250ms ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--color-primary); }
.faq-answer { padding: 0 0 28px; color: var(--color-muted); line-height: 1.65; max-width: 720px; }
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(59,166,118,0.35);
}

/* ============ CTA BANNER ============ */
.cta-banner { padding: var(--section-pad) 0; background: var(--color-cardBg); }
.cta-inner {
  background: var(--color-secondary);
  color: #fff;
  padding: clamp(48px, 7vw, 96px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
}
.cta-inner h2 { color: #fff; margin-bottom: 18px; max-width: 480px; }
.cta-inner p { color: rgba(255,255,255,0.75); max-width: 460px; margin-bottom: 32px; }
.cta-inner .eyebrow { color: var(--color-accent); margin-bottom: 18px; }
.cta-options {
  display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1;
}
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px;
  border-radius: 2px;
}
.cta-card .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.cta-card .title { font-family: var(--font-heading); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.cta-card .desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.5; }
.cta-card .btn { width: 100%; }
.cta-card-phone { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cta-card-phone .num { font-family: var(--font-heading); font-weight: 600; font-size: 22px; color: #fff; }

/* ============ CREDENTIAL STRIP (for service/condition pages) ============ */
.credential-strip {
  background: var(--color-cardBg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}
.credential-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.credential-strip .pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.credential-strip .pill .dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}
.credential-strip .note {
  font-size: 13px;
  color: var(--color-muted);
}

/* ============ FOOTER ============ */
footer.site-foot {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.8);
  padding: 96px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand img { height: 56px; margin-bottom: 20px; }
.foot-brand .wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}
.foot-brand .tag {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-weight: 500;
}
.foot-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.foot-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 6px 0 18px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 200ms; }
.foot-col a:hover { color: var(--color-accent); }

.foot-nap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-nap address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.foot-nap .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: block;
}
.foot-nap a { color: rgba(255,255,255,0.85); font-size: 14px; }
.foot-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-weight: 500;
}
.trust-badge .dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom a { color: rgba(255,255,255,0.5); margin-left: 20px; }
.foot-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ============ MAP PLACEHOLDER ============ */
.map-block {
  aspect-ratio: 16/9;
  background: rgba(30,58,47,0.04);
  border: 1px solid var(--color-border);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.map-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 50%, rgba(201,168,76,0.15), transparent 40%),
    repeating-linear-gradient(0deg, rgba(30,58,47,0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(30,58,47,0.05) 0 1px, transparent 1px 32px);
}
.map-block::after {
  content: "Map embed — 800 S Bond St, Fells Point";
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: rgba(30,58,47,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-pin {
  position: absolute;
  top: 48%; left: 58%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.25), 0 0 0 14px rgba(201,168,76,0.12);
}
.section.dark .map-block,
.page-hero .map-block {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.section.dark .map-block::before {
  background:
    radial-gradient(circle at 60% 50%, rgba(201,168,76,0.15), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 32px);
}
.section.dark .map-block::after { color: rgba(255,255,255,0.45); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ============ PLACEHOLDER TAGS ============ */
.placeholder-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  background: rgba(201,168,76,0.15);
  color: #8c7a32;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  display: inline-block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-items, .nav-cta .btn, .nav-phone { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-call { display: inline-flex; }
  .nav-cta { gap: 8px; }
  .nav-inner { gap: 16px; }

  .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 48px; }

  .cta-inner { grid-template-columns: 1fr; padding: 56px 36px; }

  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-nap { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav-logo img { height: 36px; }
  .nav-logo .wordmark { font-size: 15px; }
  .nav-logo .wordmark span { font-size: 8px; }

  .page-hero { padding: calc(var(--nav-h) + 56px) 0 56px; }

  .foot-grid { grid-template-columns: 1fr; }
}

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