/* =========================================================
   Pure Reflections Electrolysis and Skin Care
   Lavender · Black · Gold — luxury beauty / clinical
   ========================================================= */

:root {
  --lavender: #8a65cc;
  --lavender-soft: #d0beff;
  --lavender-deep: #6a4dc7;
  --gold: #d4af37;
  --gold-soft: #f0d97a;
  --ink: #0b0b0d;
  --ink-2: #1a1a20;
  --paper: #faf7ff;
  --paper-2: #ffffff;
  --text: #1a1a20;
  --text-dim: #5b5566;
  --border: rgba(11, 11, 13, 0.08);
  --shadow-sm: 0 1px 2px rgba(11, 11, 13, 0.06);
  --shadow-md: 0 6px 24px rgba(11, 11, 13, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 11, 13, 0.12);

  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --fg: var(--text);
  --fg-dim: var(--text-dim);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 200ms ease;
}

html[data-theme="dark"] {
  --bg: var(--ink);
  --bg-2: var(--ink-2);
  --fg: #f5f1ff;
  --fg-dim: #b9b3c4;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --lavender: #b89cff;
  --lavender-soft: #ece2ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { color-scheme: light dark; }
html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--gold) 35%, transparent);
}

a, button, summary, .btn, .nav-toggle, .theme-toggle {
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

img { max-width: 100%; display: block; }
a { color: var(--lavender-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
html[data-theme="dark"] a { color: var(--lavender); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--fg);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.25; font-weight: 600; font-family: var(--sans); letter-spacing: -0.005em; }

p { text-wrap: pretty; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--gold);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--fg);
  text-decoration: none;
  border-radius: 12px;
  transition: opacity var(--transition);
}
.brand:hover { text-decoration: none; opacity: 0.92; }
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 18px;
  gap: 5px;
}
.brand-primary {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
}
html[data-theme="dark"] .brand-primary {
  color: #f5f1ff;
}
.brand-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-logo {
  height: 104px;
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}
.primary-nav a {
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--fg);
  text-decoration: none;
  padding: 6px 10px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav a:hover { color: var(--lavender-deep); border-bottom-color: var(--gold); }
html[data-theme="dark"] .primary-nav a:hover { color: var(--lavender); }

/* Theme toggle */
.theme-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--fg);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-icon { position: absolute; transition: opacity var(--transition), transform var(--transition); font-size: 16px; }
.theme-icon-sun { opacity: 1; }
.theme-icon-moon { opacity: 0; }
html[data-theme="dark"] .theme-icon-sun { opacity: 0; }
html[data-theme="dark"] .theme-icon-moon { opacity: 1; color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1306;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45); }
html[data-theme="dark"] .btn-gold {
  background: linear-gradient(180deg, #c9a227, #a8841a);
  color: #1a1306;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}
html[data-theme="dark"] .btn-gold:hover {
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.22);
}
html[data-theme="dark"] a.btn-gold { color: #1a1306; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--fg);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}

.btn-block { display: flex; width: 100%; }

.link-gold { color: var(--gold); font-weight: 600; }
.link-gold:hover { color: var(--gold-soft); }
html[data-theme="dark"] .link-gold { color: var(--gold-soft); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 12% -10%, color-mix(in srgb, var(--lavender) 35%, transparent), transparent 60%),
    radial-gradient(700px 420px at 110% 110%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 60%),
    var(--bg);
}
html[data-theme="dark"] .hero {
  background:
    radial-gradient(900px 520px at 12% -10%, color-mix(in srgb, var(--lavender-deep) 50%, transparent), transparent 60%),
    radial-gradient(700px 420px at 110% 110%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 16px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 25%, transparent);
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 56ch;
  margin: 8px 0 24px;
}
.lede strong { color: var(--fg); font-weight: 600; }

.booking-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--gold) 60%, transparent), transparent 40%, color-mix(in srgb, var(--lavender) 60%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.booking-card h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.booking-card .hint { color: var(--fg-dim); font-size: 0.9rem; margin: 14px 0 0; }

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
  scroll-margin-top: 144px;
}
.section-alt { background: var(--bg-2); }

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 8px;
}
.section-title { margin: 0 0 12px; }
.section-lede {
  color: var(--fg-dim);
  max-width: 70ch;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* Cards (Services) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.section-alt .card { background: var(--bg-2); }
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--gold) 40%, var(--border));
}
.card h3 { color: var(--fg); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.tags li {
  font-size: 0.86rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lavender) 18%, transparent);
  color: var(--fg);
  border: 1px solid color-mix(in srgb, var(--lavender) 35%, transparent);
}

/* Diagram (follicle cross-section) */
.diagram {
  margin: 0 0 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  box-shadow: var(--shadow-sm);
  color: var(--fg);
  text-align: center;
}
.section-alt .diagram { background: var(--bg-2); }
.diagram img {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.diagram figcaption {
  margin-top: 12px;
  color: var(--fg-dim);
  font-size: 0.95rem;
  font-style: italic;
}

/* Bulleted lists */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.bullets li {
  padding: 18px 20px 18px 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
}
.section-alt .bullets li { background: var(--bg-2); }
.bullets li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}
.bullets li strong { color: var(--fg); }

/* PCOS layout */
.pcos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.bullets-card {
  grid-template-columns: 1fr;
  margin-top: 0;
}

/* Why Electrolysis benefit cards */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-dim);
}
.section-alt .why-card { background: var(--bg); }

/* PCOS cards */
.pcos-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pcos-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-dim);
}
.section-alt .pcos-card { background: var(--bg); }

/* Policies */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.policy-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-icon { color: var(--gold); line-height: 1; }
.policy-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}
.policy-body {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--fg-dim);
  margin: 0;
}
.policy-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-dim);
  font-style: italic;
}
@media (max-width: 720px) {
  .policies-grid { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.reviews-stars-overall { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score { font-size: 1.3rem; font-weight: 700; color: var(--fg); }
.reviews-count { font-size: 0.9rem; color: var(--fg-dim); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-dim);
  font-style: italic;
  flex: 1;
}
.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.reviews-cta { text-align: center; margin-top: 36px; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 12px 0 20px;
}
address .muted { display: inline-block; margin-top: 4px; }
.muted { color: var(--fg-dim); }
.hint { color: var(--fg-dim); font-size: 0.95rem; margin-top: 18px; }
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Process / steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.steps li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.section-alt .steps li { background: var(--bg-2); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1306;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.steps h3 { margin: 0 0 6px; }
.steps p { color: var(--fg-dim); margin: 0; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--transition);
}
.section-alt .faq details { background: var(--bg-2); }
.faq details[open] { border-color: color-mix(in srgb, var(--gold) 45%, var(--border)); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 0 22px 20px;
  color: var(--fg-dim);
  margin: 0;
}

/* Contact */
.contact { text-align: center; }
.contact .section-lede { margin-left: auto; margin-right: auto; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8d2e6;
  padding: 40px 0 32px;
  margin-top: 24px;
}
.site-footer .muted { color: #a59fb4; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: center;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #f5f1ff;
  margin: 0 0 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--gold-soft);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 6px;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .pcos-grid, .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 1080px) {
  .primary-nav a { font-size: 0.82rem; padding: 6px 7px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    inset: 100% 12px auto 12px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .primary-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav ul li { border-bottom: 1px solid var(--border); }
  .primary-nav ul li:last-child { border-bottom: 0; }
  .primary-nav ul a { display: block; padding: 12px 4px; border-bottom: 0; }
  .theme-toggle { align-self: flex-end; }
  .section { padding: 56px 0; }
  .map-wrap { aspect-ratio: 4 / 5; }
  .btn { width: 100%; }
  .cta-row .btn { flex: 1 1 100%; }
  .contact-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 720px) {
  .brand-logo { height: 76px; }
  .brand-name { margin-left: 10px; }
  .brand-primary { font-size: 1.5rem; }
  .brand-sub { font-size: 0.55rem; letter-spacing: 0.2em; }
  .section { scroll-margin-top: 112px; }
}

@media (max-width: 500px) {
  .why-cards { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .brand-logo { height: 64px; border-radius: 8px; }
  .brand-name { margin-left: 8px; }
  .brand-primary { font-size: 1.2rem; }
  .brand-sub { display: none; }
}

