/* Local Heights — conversion site v2
   Tokens: Heights Navy · Atlantic Teal · Summit Gold · Coast Mist */

:root {
  --navy: #0B1F33;
  --teal: #1F6F7A;
  --gold: #C4A35A;
  --mist: #F4F1EA;
  --dune: #6B7280;
  --ink: #111827;
  --white: #FFFFFF;
  --navy-soft: #132a42;
  --teal-soft: rgba(31, 111, 122, 0.1);
  --gold-soft: rgba(196, 163, 90, 0.15);
  --shadow: 0 1px 3px rgba(11, 31, 51, 0.06), 0 8px 24px rgba(11, 31, 51, 0.06);
  --shadow-lg: 0 4px 12px rgba(11, 31, 51, 0.08), 0 20px 40px rgba(11, 31, 51, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --max: 1120px;
  --nav-h: 72px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap-narrow { width: min(100% - 2rem, 760px); margin-inline: auto; }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.125rem; color: var(--dune); }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.muted { color: var(--dune); }
.small { font-size: 0.875rem; }
.micro { font-size: 0.8125rem; color: var(--dune); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8944a; color: var(--navy); border-color: #b8944a; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-soft); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 31, 51, 0.2);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-teal-outline:hover { background: var(--teal-soft); color: var(--teal); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--mist); color: var(--navy); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: var(--white); color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-soft); color: #8a6d2e; }
.badge-teal { background: var(--teal-soft); color: var(--teal); }
.badge-mist { background: rgba(255,255,255,0.12); color: var(--mist); }
.star { color: var(--gold); font-weight: 700; }

/* ========== NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand img { width: 40px; height: 40px; }
.brand-tag { display: none; font-weight: 500; font-size: 0.75rem; color: var(--dune); }
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem 1.35rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.925rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  border-top: 1px solid rgba(11,31,51,0.06);
  background: var(--white);
  padding: 1rem 0 1.25rem;
}
.nav-drawer.is-open { display: block; }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer a {
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(11,31,51,0.05);
}
.nav-drawer .btn { width: 100%; margin-top: 1rem; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .brand-tag { display: block; margin-left: 0.25rem; padding-left: 0.75rem; border-left: 1px solid rgba(11,31,51,0.12); }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .h1-support {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
  margin: -0.35rem 0 1rem;
  letter-spacing: -0.01em;
}
.hero-copy .subhead {
  font-size: 1.1rem;
  color: var(--dune);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.hero-micro { margin-top: 1rem; font-size: 0.875rem; color: var(--dune); }

@media (min-width: 900px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

/* Maps UI mock */
.maps-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11,31,51,0.06);
  overflow: hidden;
}
.maps-mock-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  background: var(--navy);
  color: var(--mist);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.maps-mock-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.maps-card {
  padding: 1rem;
  border-right: 1px solid rgba(11,31,51,0.06);
}
.maps-card:last-child { border-right: none; background: #fafbf9; }
.maps-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}
.maps-card-tag.before { color: var(--dune); }
.maps-card-tag.after { color: var(--teal); }
.maps-biz {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.maps-stars {
  font-size: 0.75rem;
  color: #e8a317;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.maps-stars .empty { color: #d1d5db; }
.maps-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 0.75rem;
}
.maps-ph {
  aspect-ratio: 1;
  border-radius: 4px;
  background: #e5e7eb;
}
.maps-ph.stale { background: linear-gradient(135deg, #d1d5db, #9ca3af); opacity: 0.7; }
.maps-ph.fresh-1 { background: linear-gradient(135deg, #1F6F7A, #2a8a96); }
.maps-ph.fresh-2 { background: linear-gradient(135deg, #0B1F33, #1F6F7A); }
.maps-ph.fresh-3 { background: linear-gradient(135deg, #C4A35A, #1F6F7A); }
.maps-reply {
  background: var(--mist);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--dune);
}
.maps-reply.good {
  background: rgba(31,111,122,0.08);
  color: var(--navy);
  border-left: 3px solid var(--teal);
}
.maps-reply.bad {
  border-left: 3px solid #d1d5db;
  font-style: italic;
}
.chip-4h {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.15rem 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ========== PROOF STRIP ========== */
.proof-strip {
  background: var(--mist);
  border-block: 1px solid rgba(11,31,51,0.05);
  padding: 1.25rem 0;
}
.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.proof-cell {
  text-align: center;
  padding: 0.5rem;
}
.proof-cell .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dune);
  margin-bottom: 0.25rem;
}
.proof-cell .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.proof-cell.sla .value { color: var(--gold); font-size: 1.05rem; }
@media (min-width: 720px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .proof-cell { border-right: 1px solid rgba(11,31,51,0.08); }
  .proof-cell:last-child { border-right: none; }
}

/* ========== SECTIONS ========== */
.section { padding: 3.5rem 0; }
.section-mist { background: var(--mist); }
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head p { color: var(--dune); margin: 0; }

/* Problem */
.problem-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.problem-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11,31,51,0.06);
  box-shadow: var(--shadow);
  font-weight: 500;
  color: var(--navy);
}
.problem-list .dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

/* Offer cards */
.offer-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(11,31,51,0.07);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold);
}
.offer-card .badge { margin-bottom: 0.75rem; align-self: flex-start; }
.offer-card h3 { margin-bottom: 0.35rem; }
.offer-card .kind {
  font-size: 0.8rem;
  color: var(--dune);
  margin-bottom: 1rem;
}
.price-ladder {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.925rem;
}
.price-ladder li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(11,31,51,0.06);
  color: var(--navy);
}
.price-ladder li:last-child { border-bottom: none; }
.price-ladder .amt { font-weight: 700; color: var(--teal); white-space: nowrap; }
.price-ladder .hi { font-weight: 600; }
.offer-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--dune);
  flex-grow: 1;
}
.offer-bullets li {
  padding: 0.3rem 0 0.3rem 1.15rem;
  position: relative;
}
.offer-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.trust-line {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--mist);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1.15rem;
  line-height: 1.45;
}
.offer-card .btn { width: 100%; }

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(11,31,51,0.06);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
}
.step h3 { font-size: 1.05rem; }
.step p { margin: 0; font-size: 0.925rem; color: var(--dune); }

/* Ops table */
.ops-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ops-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.925rem;
  min-width: 520px;
}
.ops-table th, .ops-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(11,31,51,0.06);
  vertical-align: top;
}
.ops-table th {
  background: var(--navy);
  color: var(--mist);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ops-table th.care-col {
  background: var(--gold);
  color: var(--navy);
}
.ops-table td:first-child { font-weight: 600; color: var(--navy); width: 28%; }
.ops-table tr:last-child td { border-bottom: none; }
.ops-table .dim { color: var(--dune); }
.ops-table .good { color: var(--teal); font-weight: 600; }

/* SLA block */
.sla-block {
  background: var(--navy);
  color: var(--mist);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.sla-block::before {
  content: "";
  position: absolute;
  right: -5%;
  top: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31,111,122,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.sla-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.sla-block h2 { color: var(--white); max-width: 28rem; }
.sla-block p { color: rgba(244,241,234,0.85); max-width: 40rem; }
.sla-block .avoid-line {
  font-size: 0.85rem;
  color: rgba(244,241,234,0.55);
  margin-top: 1.25rem;
}
.sla-secondary {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  max-width: 40rem;
}
.sla-secondary strong { color: var(--white); }

/* For / not for */
.split-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
}
.split-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,31,51,0.07);
}
.split-card.for { background: var(--white); border-top: 3px solid var(--teal); }
.split-card.not { background: var(--mist); border-top: 3px solid var(--dune); }
.split-card h3 { font-size: 1.05rem; }
.split-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--dune);
  font-size: 0.95rem;
}
.split-card li { margin-bottom: 0.4rem; }

/* Module / service grid */
.module-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .module-grid { grid-template-columns: repeat(4, 1fr); }
}
.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(11,31,51,0.06);
  box-shadow: var(--shadow);
}
.module-icon {
  width: 36px; height: 36px;
  margin-bottom: 0.85rem;
  color: var(--teal);
}
.module-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.module-card p { font-size: 0.875rem; color: var(--dune); margin-bottom: 0.75rem; }
.module-card a {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.module-card a:hover { text-decoration: underline; }

/* Areas */
.areas-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(11,31,51,0.06);
  box-shadow: var(--shadow);
}
.area-code {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

/* Pricing teaser */
.teaser-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}
.teaser-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(11,31,51,0.07);
  box-shadow: var(--shadow);
}
.teaser-card.featured { border-color: var(--gold); }
.teaser-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.25rem;
}
.teaser-price span { font-size: 1rem; font-weight: 500; color: var(--dune); }

/* Full pricing tables */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  min-width: 560px;
}
.price-table th, .price-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(11,31,51,0.06);
  vertical-align: top;
}
.price-table th {
  background: var(--navy);
  color: var(--mist);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .amt { font-weight: 700; color: var(--teal); white-space: nowrap; }
.price-table tr.highlight td { background: var(--gold-soft); }

.hook-callout {
  background: var(--mist);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.15rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.975rem;
}

/* Printable price card */
.price-card-print {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--navy);
  white-space: pre-wrap;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}
.price-card-print .pc-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font);
}
.price-card-print .pc-sub {
  color: var(--dune);
  margin-bottom: 1rem;
  font-family: var(--font);
  font-size: 0.85rem;
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(11,31,51,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--dune);
  font-size: 0.95rem;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* Close CTA */
.close-band {
  background: var(--mist);
  padding: 3.5rem 0;
  text-align: center;
}
.close-band h2 { margin-bottom: 0.75rem; }
.close-band .lead { margin-bottom: 1.5rem; max-width: 36rem; margin-inline: auto; }
.close-band .cta-row { justify-content: center; }
.close-band .fine { margin-top: 1.25rem; }

/* Contact form-ish */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.contact-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(11,31,51,0.07);
  box-shadow: var(--shadow);
}
.contact-panel h3 { margin-bottom: 0.5rem; }
.contact-methods { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.contact-methods li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(11,31,51,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-methods li:last-child { border-bottom: none; }
.contact-methods .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dune);
}
.contact-methods a {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--navy);
}
.contact-methods a:hover { color: var(--teal); }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(11,31,51,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-note { font-size: 0.8rem; color: var(--dune); margin-top: 0.75rem; }

/* About */
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(11,31,51,0.07);
  box-shadow: var(--shadow);
  max-width: 36rem;
}
.about-card .role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.925rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(244,241,234,0.75);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer .brand { color: var(--white); margin-bottom: 0.75rem; }
.site-footer .brand img { filter: brightness(1.1); }
.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a {
  color: rgba(244,241,234,0.8);
  text-decoration: none;
}
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-tagline {
  color: var(--gold);
  font-style: italic;
  margin: 0.5rem 0 1rem;
}

/* Sticky mobile chips */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(11,31,51,0.08);
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(11,31,51,0.08);
}
.mobile-sticky .btn { flex: 1; padding: 0.7rem 0.5rem; font-size: 0.85rem; }
@media (max-width: 879px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 72px; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--mist);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(11,31,51,0.05);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { margin-bottom: 1.25rem; max-width: 36rem; }

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.center-cta { display: flex; justify-content: center; margin-top: 1.75rem; }

@media print {
  .site-header, .mobile-sticky, .nav-toggle { display: none !important; }
  .price-card-print { box-shadow: none; }
  body { padding-bottom: 0; }
}
