
@font-face {
  font-family: 'Inter Tight';
  src: url('/assets/fonts/InterTight-Variable.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/Fraunces-Variable.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Fraunces Fallback';
  src: local('Georgia');
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 24%;
  line-gap-override: 0%;
}
:root {
  --ink: #0a2540;           
  --ink-2: #1a3a5c;         
  --sea: #0d7377;           
  --sea-dark: #095457;
  --sand: #faf7f2;          
  --sand-2: #f3ede3;        
  --paper: #ffffff;
  --rule: #e5ddd0;          
  --rule-2: #d6ccba;
  --muted: #5a6878;
  --urgent: #c94a2b;        
  --urgent-dark: #a63a1f;
  --gold: #b8893a;          
  --font-display: 'Fraunces', 'Fraunces Fallback', Georgia, serif;
  --font-body: 'Inter Tight', 'Inter Tight Fallback', -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06), 0 2px 8px rgba(10,37,64,0.04);
  --shadow-md: 0 4px 12px rgba(10,37,64,0.08), 0 12px 32px rgba(10,37,64,0.06);
  --shadow-lg: 0 12px 48px rgba(10,37,64,0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --max-w: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sea-dark); }
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
  margin: 0;
}
h1, .h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 500; }
h2, .h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 500; }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
.h4 { font-size: 1.125rem; font-weight: 600; }
.seo-h {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 12px 0;
  display: block;
}
.seo-h-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--sand-2); }
.section-dark { background: var(--ink); color: var(--sand); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark .h1, .section-dark .h2, .section-dark .h3 { color: var(--sand); }
.section-dark .eyebrow { color: #7fb5b8; }
.announce {
  background: var(--ink);
  color: var(--sand);
  font-size: 0.8125rem;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.02em;
}
.announce strong { color: #7fb5b8; font-weight: 600; }
.announce a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; }
.announce a:hover { color: #7fb5b8; }
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 8px;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.logo-text .tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.nav { display: flex; align-items: center; gap: 28px; font-size: 0.9375rem; font-weight: 500; }
.nav > a { color: var(--ink); position: relative; padding: 4px 0; }
.nav > a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--sea);
  transition: width 0.25s ease;
}
.nav > a:hover::after, .nav > a.active::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--ink);
  font: inherit;
  padding: 4px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.nav-dropdown-caret {
  width: 12px; height: 12px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.18), 0 2px 4px rgba(10, 37, 64, 0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--sand-2);
  color: var(--sea);
}
.nav-dropdown-menu a.active {
  color: var(--sea);
  background: var(--sand-2);
  font-weight: 600;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.phone-link svg { color: var(--sea); width: 18px; height: 18px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: 4px;
  background: var(--sand-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-toggle:hover {
  background: var(--sand);
  border-color: var(--muted);
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}
.nav-toggle .nav-toggle-close { display: none; }
body.nav-open .nav-toggle .nav-toggle-open { display: none; }
body.nav-open .nav-toggle .nav-toggle-close { display: block; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--sea); color: white; }
.btn-primary:hover { background: var(--sea-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-urgent { background: var(--urgent); color: white; }
.btn-urgent:hover { background: var(--urgent-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--sand); }
.btn-light { background: var(--sand); color: var(--ink); }
.btn-light:hover { background: white; color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,115,119,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,137,58,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content .eyebrow { display: block; margin-bottom: 20px; }
.hero h1, .hero .h1 {
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero h1 em, .hero .h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sea);
  font-feature-settings: "ss01";
}
.hero-sub {
  font-size: 1.1875rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
}
.hero-proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-proof-label {
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
  position: relative;
  transform: rotate(-0.5deg);
}
.hero-card-badge {
  position: absolute;
  top: -16px; left: 32px;
  background: var(--urgent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero-card-sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-card-list { list-style: none; margin-bottom: 28px; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list svg {
  color: var(--sea);
  width: 18px; height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}
.hero-card-hsa {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hero-card-hsa svg {
  width: 32px;
  height: 32px;
  color: var(--sea);
  flex-shrink: 0;
}
.hero-card-hsa-line1 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2px;
}
.hero-card-hsa-line2 {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-decoration {
  position: absolute;
  top: -20px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-dark) 100%);
  opacity: 0.1;
  z-index: -1;
}
.trust-strip {
  background: var(--ink);
  color: var(--sand);
  padding: 28px 0;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 50%, transparent);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #7fb5b8;
  line-height: 1;
}
.trust-label {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.75);
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2, .section-head .h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rule-2) 0, var(--rule-2) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--sand);
  padding: 0 16px;
  text-align: center;
}
.section-alt .process-step { background: var(--sand-2); }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--sea);
  border: 1.5px solid var(--sea);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  position: relative;
}
.process-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--rule);
}
.process-step h3, .process-step .h3 { margin-bottom: 12px; }
.process-step p { color: var(--muted); font-size: 0.9375rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--sand-2);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--sea);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3, .why-card .h3 { margin-bottom: 12px; font-size: 1.25rem; }
.why-card p { color: var(--muted); font-size: 0.9375rem; }
.pricing-wrap { max-width: 960px; margin: 0 auto; }
.payment-strip {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--sand-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.payment-strip-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.payment-strip-items {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.payment-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.payment-strip-item svg {
  width: 18px; height: 18px;
  color: var(--sea);
}
@media (max-width: 720px) {
  .payment-strip { padding: 20px; gap: 16px; }
  .payment-strip-items { gap: 16px; }
  .payment-strip-item { font-size: 0.9375rem; }
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 24px;
}
.pricing-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 16px auto 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--sea);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.price-card.featured::before {
  content: 'OUR MAIN SERVICE';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--sea);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.price-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.price-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-sub {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
  min-height: 42px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-amount sup {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted);
  vertical-align: top;
  margin-right: 2px;
}
.price-dual {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.price-dual-item { flex: 1; }
.price-dual-item + .price-dual-item {
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}
.price-dual-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.2;
}
.price-dual-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-dual-amount sup {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  vertical-align: top;
  margin-right: 2px;
}
.price-dual-hair {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}
.price-each {
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--rule);
}
.price-features li:last-child { border-bottom: none; }
.price-features svg {
  width: 16px; height: 16px;
  color: var(--sea);
  margin-top: 4px;
  flex-shrink: 0;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  border-color: var(--sea);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.location-pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sand);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.location-pin svg { width: 22px; height: 22px; }
.location-card h3, .location-card .h3 { margin-bottom: 4px; font-size: 1.375rem; }
.location-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sea);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.location-address {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.location-hours {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--sand);
  border-radius: var(--radius);
  border-left: 3px solid var(--sea);
}
.areas-clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.areas-clinic-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.areas-clinic-card .eyebrow { margin-bottom: 10px; }
.areas-clinic-card .h3 { margin-bottom: 14px; font-size: 1.35rem; }
.areas-clinic-card .location-address {
  font-size: 0.9375rem; line-height: 1.5; margin-bottom: 10px;
}
.areas-clinic-card .location-address a,
.areas-clinic-card .location-phone a {
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.areas-clinic-card .location-address a:hover,
.areas-clinic-card .location-phone a:hover { color: var(--sea); }
.areas-clinic-card .location-phone {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.areas-clinic-card .location-detail {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.areas-clinic-card .location-actions {
  margin-bottom: 24px;
}
.areas-clinic-cities {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.areas-clinic-cities .h4 {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.areas-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}
.areas-city-list li { display: block; }
.areas-city-list a, .areas-city-list span {
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.areas-city-list a:hover { color: var(--sea); }
.areas-city-list span { color: var(--muted); }
.areas-full-city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.areas-full-city-list li {
  padding: 10px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--rule);
}
.areas-full-city-list li a {
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.areas-full-city-list li a:hover { color: var(--sea); }
.areas-full-city-list li span { color: var(--muted); }
.service-city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-city-list li {
  padding: 10px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--rule);
}
.service-city-list li a {
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.service-city-list li a:hover { color: var(--sea); }
.city-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  line-height: 0; 
}
.city-map-wrap iframe {
  display: block;
  width: 100%;
}
.section-map {
  padding-top: 0;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .city-map-wrap iframe { height: 280px; }
}
.city-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.city-service-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.city-service-card:has(a:hover) {
  border-color: var(--sea);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.city-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sand);
  color: var(--sea);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.city-service-icon svg { width: 22px; height: 22px; }
.city-service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.city-service-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
.city-service-title a:hover {
  color: var(--sea);
}
.city-service-desc {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.city-service-cta a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sea);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.city-service-cta a:hover {
  text-decoration: underline;
}
.city-geo-details {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
  margin: 0;
}
.city-geo-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.city-geo-summary::-webkit-details-marker { display: none; }
.city-geo-summary-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.city-geo-summary-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.city-geo-summary-hint::after {
  content: " ▾";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.15s ease;
}
.city-geo-details[open] .city-geo-summary-hint::after {
  content: " ▴";
}
.city-geo-details[open] .city-geo-summary-hint::before {
  content: "Tap to collapse";
}
.city-geo-details[open] .city-geo-summary-hint {
  font-size: 0;
}
.city-geo-details[open] .city-geo-summary-hint::before {
  font-size: 0.8125rem;
}
.city-geo-body {
  padding: 8px 0 32px;
}
@media (max-width: 960px) {
  .areas-clinics-grid { grid-template-columns: 1fr; }
  .areas-full-city-list, .service-city-list { grid-template-columns: repeat(2, 1fr); }
  .city-service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .areas-full-city-list, .service-city-list { grid-template-columns: 1fr; }
}
.location-link {
  font-weight: 600;
  color: var(--sea);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
}
.location-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.location-link:hover svg { transform: translateX(3px); }
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.location-actions .btn {
  width: 100%;
  justify-content: center;
}
.service-area {
  background: var(--ink);
  color: var(--sand);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.service-area::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13,115,119,0.15) 0%, transparent 60%);
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.service-area h2, .service-area .h2 { color: var(--sand); margin-bottom: 20px; }
.service-area .eyebrow { color: #7fb5b8; }
.service-area p { color: rgba(250,247,242,0.8); margin-bottom: 24px; }
.area-details { width: 100%; }
.area-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--sand);
  padding: 14px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
  list-style: none;
}
.area-toggle::-webkit-details-marker { display: none; }
.area-toggle:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}
.area-toggle-icon {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  transition: transform 0.3s ease;
  color: #7fb5b8;
  flex-shrink: 0;
}
.area-toggle-icon svg { width: 14px; height: 14px; }
.area-details[open] .area-toggle-icon { transform: rotate(180deg); }
.area-details[open] .area-list { margin-top: 16px; animation: areaReveal 0.3s ease; }
@keyframes areaReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.area-toggle-count {
  font-weight: 500;
  color: rgba(250,247,242,0.55);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.area-details-light .area-toggle {
  border-color: var(--rule);
  color: var(--ink);
  background: var(--paper);
}
.area-details-light .area-toggle:hover {
  border-color: var(--sea);
  background: var(--sand);
}
.area-details-light .area-toggle-icon { color: var(--sea); }
.area-details-light .area-toggle-count { color: var(--muted); }
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}
.area-list li {
  padding: 12px 0;
  font-size: 0.9375rem;
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-area .area-list li {
  color: rgba(250,247,242,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#north-portland-page .area-list li {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.area-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #7fb5b8;
  flex-shrink: 0;
}
.founder-compact {
  background: var(--sand-2);
  padding: 64px 0;
}
.founder-compact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.founder-compact-text { flex: 1; min-width: 320px; }
.founder {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,115,119,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.founder-wrap {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.founder-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.founder-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 56px;
  line-height: 1.15;
}
.founder-title em {
  font-style: italic;
  color: var(--sea);
  font-weight: 400;
}
.founder-chapter { margin-bottom: 48px; }
.founder-chapter:last-of-type { margin-bottom: 0; }
.founder-chapter-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-chapter-num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sea);
}
.founder-chapter-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.founder-chapter p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.founder-chapter p:last-child { margin-bottom: 0; }
.founder-method {
  background: var(--sand);
  border-left: 3px solid var(--sea);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 20px 0;
}
.founder-method ol {
  margin: 0;
  padding-left: 24px;
}
.founder-method li {
  padding: 6px 0;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.founder-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.founder-signature-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.founder-signature-detail {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.guarantee {
  background: var(--ink);
  color: var(--sand);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,115,119,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.guarantee-wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7fb5b8;
  margin-bottom: 20px;
}
.guarantee-badge svg { width: 14px; height: 14px; }
.guarantee h2, .guarantee .h2 { color: var(--sand); margin-bottom: 16px; }
.guarantee-lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--sand);
  margin-bottom: 32px;
  max-width: 720px;
}
.guarantee-claim {
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-dark) 100%);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  font-size: 1.0625rem;
  color: white;
  display: flex;
  gap: 16px;
  align-items: center;
}
.guarantee-claim svg { width: 28px; height: 28px; flex-shrink: 0; }
.guarantee-claim strong { font-weight: 600; }
.guarantee-terms {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.guarantee-terms-head {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fb5b8;
  margin-bottom: 20px;
}
.guarantee-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guarantee-terms li {
  padding: 14px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.guarantee-terms li:last-child { border-bottom: none; }
.guarantee-terms li svg {
  color: #7fb5b8;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-terms-footer {
  font-size: 0.8125rem;
  color: rgba(250,247,242,0.65);
  margin-top: 20px;
  font-style: italic;
}
@media (max-width: 720px) {
  .founder { padding: 64px 0; }
  .guarantee { padding: 64px 0; }
  .founder-chapter { margin-bottom: 36px; }
  .guarantee-terms { padding: 24px 20px; }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: overlayFade 0.25s ease;
}
.modal-overlay.open { display: flex; }
@keyframes overlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sand-2);
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  z-index: 1;
}
.modal-close:hover { background: var(--rule); }
.modal-close svg { width: 18px; height: 18px; }
.modal-header {
  padding: 36px 36px 24px;
  text-align: center;
}
.modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.modal-sub {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}
.modal-body {
  padding: 8px 36px 36px;
}
.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 10px;
  background: var(--sand);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-body);
  text-align: left;
}
.modal-option:last-child { margin-bottom: 0; }
.modal-option:hover {
  border-color: var(--sea);
  background: white;
  color: var(--ink);
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}
.modal-option-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--sand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.modal-option-icon svg { width: 20px; height: 20px; }
.modal-option-body { flex: 1; min-width: 0; }
.modal-option-label {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.modal-option-detail {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}
.modal-option-arrow {
  color: var(--sea);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.modal-option-arrow svg { width: 18px; height: 18px; }
.modal-option:hover .modal-option-arrow { transform: translateX(3px); }
@media (max-width: 520px) {
  .modal-header { padding: 28px 24px 20px; }
  .modal-body { padding: 8px 24px 28px; }
  .modal-title { font-size: 1.375rem; }
  .modal-option { padding: 14px 16px; gap: 12px; }
  .modal-option-icon { width: 40px; height: 40px; }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--paper);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #f2a93c;
}
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.quote {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
  font-weight: 400;
}
.quote::before { content: '"'; font-size: 2rem; line-height: 0; vertical-align: -6px; color: var(--sea); margin-right: 2px; }
.quote::after { content: '"'; font-size: 2rem; line-height: 0; vertical-align: -14px; color: var(--sea); margin-left: 1px; }
.attribution {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.attribution-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
}
.attribution-source {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.placeholder-notice {
  background: #fff8e1;
  border: 1px dashed var(--gold);
  color: #7a5a1f;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.875rem;
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto 40px;
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sea); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--ink);
}
.faq-item[open] .faq-toggle {
  background: var(--sea);
  color: white;
  border-color: var(--sea);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 28px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 85%;
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.cta-band {
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-dark) 100%);
  color: white;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.cta-band h2, .cta-band .h2 {
  color: white;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-light { color: var(--sea-dark); }
.cta-band-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2, .contact-info .h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; font-size: 1.0625rem; }
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand-2);
  color: var(--sea);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-detail-value a { color: var(--ink); }
.contact-detail-value a:hover { color: var(--sea); }
.form-card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.form-card h3, .form-card .h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.form-card > p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--ink);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sea);
  background: white;
  box-shadow: 0 0 0 3px rgba(13,115,119,0.12);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: padding 0.2s ease;
}
.form-status:not(:empty) { padding: 14px 18px; }
.form-status.success {
  background: #eaf5f1;
  color: #0a5c46;
  border: 1px solid #b8dccc;
}
.form-status.error {
  background: #fdecec;
  color: #8a2020;
  border: 1px solid #f0c0c0;
}
.form-status.error a { color: inherit; text-decoration: underline; font-weight: 600; }
.footer {
  background: var(--ink);
  color: rgba(250,247,242,0.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo { color: var(--sand); margin-bottom: 16px; }
.footer-brand .logo-text .tagline { color: rgba(250,247,242,0.55); }
.footer-brand .logo-text .name { color: var(--sand); }
.footer-brand .logo-mark { background: transparent; padding: 0; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.6; max-width: 340px; }
.footer h4, .footer .h4 {
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.9375rem; }
.footer-links a { color: rgba(250,247,242,0.75); }
.footer-links a:hover { color: var(--sand); }
.footer-locations { font-style: normal; }
.footer-location { margin-bottom: 18px; font-size: 0.9375rem; line-height: 1.5; }
.footer-location:last-child { margin-bottom: 0; }
.footer-location a {
  color: rgba(250,247,242,0.75);
  display: block;
  transition: color 0.15s ease;
}
.footer-location a:hover { color: var(--sand); }
.footer-location a strong {
  color: var(--sand);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.footer-location-phone {
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}
.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.8125rem;
}
.footer-legal-links li { margin: 0; }
.footer-legal-links a {
  color: rgba(255,255,255,0.65);
  transition: color 0.15s ease;
}
.footer-legal-links a:hover {
  color: var(--sand);
  text-decoration: underline;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.loc-hero {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.loc-breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.loc-breadcrumb a { color: var(--muted); }
.loc-breadcrumb a:hover { color: var(--sea); }
.loc-hero h1, .loc-hero .h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: 16px; }
.loc-hero p {
  font-size: 1.125rem;
  color: var(--ink-2);
  max-width: 680px;
  margin-bottom: 32px;
}
.loc-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.loc-meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.loc-meta-item svg { color: var(--sea); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.loc-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.loc-meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  background: var(--sand-2);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-box {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sand-2) 0%, var(--rule) 100%);
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.map-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-box-content {
  position: relative;
  text-align: center;
  background: var(--paper);
  padding: 20px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.map-box-content strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 4px; }
.mobile-callout {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--sand);
  padding: 48px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.mobile-callout::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,115,119,0.25) 0%, transparent 65%);
}
.mobile-callout h3, .mobile-callout .h3 {
  color: var(--sand);
  font-size: 1.75rem;
  margin-bottom: 12px;
  position: relative;
}
.mobile-callout p { color: rgba(250,247,242,0.85); max-width: 580px; position: relative; margin-bottom: 24px; }
.mobile-callout .btn-urgent { position: relative; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { transform: none; max-width: 440px; margin: 0 auto; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid,
  .why-grid,
  .pricing-grid,
  .locations-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-grid::before { display: none; }
  .price-card.featured { transform: none; }
  .service-area-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 76px;                 
    right: 16px;
    left: auto;
    transform: scale(1);
    transform-origin: top right;
    width: min(340px, calc(100vw - 32px));
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);  
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(10, 37, 64, 0.25), 0 4px 12px rgba(10, 37, 64, 0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px;
    font-size: 1.0625rem;
    font-weight: 500;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
  }
  .nav > a::after {
    display: none !important;
    content: none !important;
  }
  .nav a, .nav .nav-dropdown-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm, 8px);
    color: var(--ink);
    text-decoration: none;
    transform: none !important;
    transition: background-color 0.15s ease, color 0.15s ease !important;
    position: static !important;
    white-space: normal;
  }
  .nav a + a, .nav .nav-dropdown-menu a + a {
    border-top: 1px solid var(--rule);
    border-radius: 0;
  }
  .nav a.active, .nav .nav-dropdown-menu a.active {
    color: var(--sea);
    font-weight: 600;
    background: var(--sand-2);
    transform: none !important;
  }
  .nav a:hover, .nav .nav-dropdown-menu a:hover,
  .nav a:focus, .nav .nav-dropdown-menu a:focus {
    color: var(--sea);
    background: var(--sand-2);
    transform: none !important;
    padding: 14px 16px !important;
    margin: 0 !important;
  }
  .nav-dropdown { display: contents; }
  .nav-dropdown-trigger {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    color: var(--muted);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    background: none;
    border-top: 1px solid var(--rule);
    margin-top: 4px;
    pointer-events: none;
  }
  .nav-dropdown-trigger:first-child { border-top: none; margin-top: 0; }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 85;
    animation: navOverlayFade 0.2s ease;
  }
  @keyframes navOverlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  body.nav-open { overflow: hidden; }
  .header { z-index: 95; }
  .header-inner { gap: 12px; }
  .phone-link span { display: none; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.875rem; }
  .hero { padding: 56px 0 72px; }
  .hero-proof { gap: 20px; }
  .hero-proof-num { font-size: 1.375rem; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .mobile-callout { padding: 32px 24px; }
  .loc-meta { flex-direction: column; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
