:root {
  --ink: #163035;
  --muted: #5d7075;
  --teal: #0f8f91;
  --deep-teal: #075f66;
  --aqua: #e3f8f6;
  --mint: #f1fbf7;
  --cream: #fff9ef;
  --gold: #f0b64d;
  --rose: #f8ddd5;
  --line: #d9e7e4;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 62, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 231, 228, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(7, 95, 102, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: var(--muted);
  font-size: 0.94rem;
}

.desktop-nav a:hover {
  color: var(--deep-teal);
}

.header-call,
.primary-action,
.secondary-action,
.lead-form button,
.mini-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 750;
}

.header-call,
.primary-action,
.lead-form button,
.mini-card a {
  color: var(--white);
  background: var(--deep-teal);
  box-shadow: 0 12px 25px rgba(7, 95, 102, 0.18);
}

.secondary-action {
  color: var(--deep-teal);
  background: var(--aqua);
  border: 1px solid rgba(15, 143, 145, 0.2);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.section-band {
  background: linear-gradient(135deg, var(--mint), var(--aqua) 52%, var(--cream));
}

.section-pad,
.section-band {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(720px, calc(100vh - 112px));
  padding-top: clamp(42px, 6vw, 80px);
  padding-bottom: clamp(54px, 6vw, 82px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-teal);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 680px;
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.3rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.quick-help {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1080px;
  margin: -38px auto 0;
  padding: 0 clamp(18px, 4vw, 56px);
}

.quick-help a {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(22, 48, 53, 0.08);
}

.quick-help a:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-help a:last-child {
  border-radius: 0 8px 8px 0;
}

.quick-help span {
  display: block;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-help strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.visual-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(22, 48, 53, 0.1);
}

.story-card.large {
  grid-row: span 2;
}

.story-card.wide {
  grid-column: span 2;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  color: var(--white);
  background: rgba(12, 51, 56, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  backdrop-filter: blur(10px);
}

.story-card strong,
.story-card span {
  display: block;
}

.story-card span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 720px;
}

.service-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter,
.checker-buttons button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--deep-teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.filter.active,
.checker-buttons button.active {
  color: var(--white);
  background: var(--deep-teal);
  border-color: var(--deep-teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card,
.facts-grid article,
.map-card,
.mini-card,
.checker-result,
.decision-grid article,
.local-intent-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.service-card.featured {
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-card.featured span,
.service-card.featured h3,
.service-card.featured p {
  margin-left: 22px;
  margin-right: 22px;
}

.service-card.featured span {
  margin-top: 20px;
}

.service-card.featured p {
  margin-bottom: 22px;
}

.service-card.hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(22, 48, 53, 0.1);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--deep-teal);
  background: var(--aqua);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card p,
.why-copy p,
.facts-grid p,
.consult-copy p,
.location-section p,
footer p,
.map-card p,
.mini-card span,
.feature-list span {
  color: var(--muted);
}

.split-section,
.consult-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.rounded-image {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.results-section {
  background: linear-gradient(180deg, var(--white), #f7fcfb);
}

.review-qr-section {
  display: grid;
  place-items: center;
  text-align: center;
}

.outcome-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(220px, 0.72fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.outcome-card,
.outcome-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.outcome-card {
  min-height: 360px;
}

.featured-outcome {
  grid-row: span 2;
  min-height: 520px;
}

.outcome-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.outcome-labels {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  pointer-events: none;
}

.outcome-labels span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(12, 51, 56, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.outcome-content {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 16px;
  color: var(--white);
  background: rgba(12, 51, 56, 0.86);
  border-radius: 7px;
  backdrop-filter: blur(10px);
}

.outcome-content span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.outcome-content h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.outcome-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.outcome-content a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  font-weight: 850;
}

.outcome-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-content: center;
  align-items: center;
  padding: 24px;
}

.outcome-panel h3 {
  font-size: 1.35rem;
}

.outcome-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.before-after-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.before-after-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  max-width: min(380px, calc(100% - 28px));
  padding: 13px 14px;
  color: var(--white);
  background: rgba(12, 51, 56, 0.82);
  border-radius: 7px;
  backdrop-filter: blur(10px);
}

.before-after-card figcaption span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.results-copy {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.results-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.checker {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.checker-buttons {
  display: grid;
  gap: 10px;
}

.checker-result {
  min-height: 225px;
  padding: 26px;
}

.checker-result span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.checker-result p {
  color: var(--muted);
  font-size: 1.05rem;
}

.learn-section {
  background: linear-gradient(180deg, var(--white), #f8fcfb);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto 32px;
}

.facts-grid article {
  padding: 20px;
}

.facts-grid strong {
  display: block;
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.faq-item span::after {
  content: "+";
  color: var(--teal);
}

.faq-item.open span::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.decision-section {
  text-align: center;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto 22px;
}

.decision-grid article {
  padding: 22px;
}

.decision-grid strong,
.decision-grid span {
  display: block;
}

.decision-grid strong {
  color: var(--deep-teal);
  font-size: 1.2rem;
  line-height: 1.15;
}

.decision-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.reviews-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--deep-teal);
  background: var(--aqua);
  border: 1px solid rgba(15, 143, 145, 0.2);
  border-radius: 7px;
  font-weight: 800;
}

.review-qr-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.review-qr-copy {
  max-width: 680px;
}

.review-qr-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 390px;
  margin-left: auto;
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qr-card .qr-logo {
  width: min(100%, 310px);
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.qr-card span {
  color: var(--deep-teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.qr-card img:not(.qr-logo) {
  width: min(100%, 260px);
  aspect-ratio: 1;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-card strong {
  font-size: 1.2rem;
}

.qr-card small {
  color: var(--muted);
}

.local-section {
  text-align: center;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.area-grid span {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 143, 145, 0.16);
  border-radius: 7px;
  font-weight: 750;
}

.local-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 30px auto 0;
  text-align: left;
}

.local-intent-grid article {
  padding: 20px;
}

.local-intent-grid h3 {
  font-size: 1.05rem;
}

.local-intent-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.consult-section {
  background: var(--white);
}

.mini-card {
  display: grid;
  gap: 7px;
  max-width: 390px;
  margin-top: 28px;
  padding: 20px;
}

.mini-card a {
  width: fit-content;
  margin-top: 6px;
}

.lead-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 24px;
  background: #f7fcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  border: 0;
  cursor: pointer;
}

.map-card {
  min-height: 330px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(15, 143, 145, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(15, 143, 145, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.map-card span {
  display: inline-flex;
  margin-bottom: 82px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--deep-teal);
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 800;
}

.map-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.05;
}

.map-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px) 96px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  max-width: 560px;
}

.footer-brand img {
  width: min(100%, 360px);
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
}

footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(22, 48, 53, 0.18);
  backdrop-filter: blur(14px);
}

.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--white);
  background: var(--deep-teal);
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav.open {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 18;
    display: grid;
    gap: 1px;
    padding: 10px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 14px;
    background: #f7fcfb;
    border-radius: 7px;
  }

  .hero,
  .split-section,
  .consult-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 30px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .story-card {
    min-height: 260px;
  }

  .services-grid,
  .story-grid,
  .outcome-showcase,
  .decision-grid,
  .local-intent-grid,
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card.large,
  .story-card.wide,
  .featured-outcome,
  .outcome-panel {
    grid-row: auto;
    grid-column: auto;
  }

  .lead-form {
    max-width: none;
    margin-left: 0;
  }

  .qr-card {
    margin: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 64px;
    padding: 9px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
    flex: 1;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex: 0 0 auto;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.88rem;
  }

  .brand small {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-nav.open {
    top: 64px;
    padding: 8px 14px 14px;
  }

  .section-pad,
  .section-band {
    padding: 46px 16px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 12.5vw, 3.35rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
    line-height: 1.04;
  }

  .hero-text,
  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 250px;
  }

  .hero-visual img {
    object-position: 63% center;
  }

  .trust-strip {
    gap: 8px;
    margin-top: 22px;
  }

  .trust-strip div {
    padding: 13px;
  }

  .trust-strip strong {
    font-size: 1.08rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .before-after-card img {
    aspect-ratio: 1.12;
  }

  .outcome-showcase {
    grid-template-columns: 1fr;
  }

  .outcome-panel {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .featured-outcome {
    min-height: 430px;
  }

  .outcome-content {
    position: static;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .outcome-content span {
    color: var(--deep-teal);
  }

  .outcome-content p {
    color: var(--muted);
  }

  .outcome-content a {
    color: var(--white);
    background: var(--deep-teal);
  }

  .outcome-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08;
  }

  .before-after-card figcaption {
    position: static;
    max-width: none;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .before-after-card figcaption span {
    color: var(--deep-teal);
  }

  .results-copy {
    padding: 18px;
  }

  .trust-strip,
  .quick-help,
  .services-grid,
  .story-grid,
  .decision-grid,
  .local-intent-grid,
  .facts-grid,
  .checker {
    grid-template-columns: 1fr;
  }

  .quick-help {
    margin-top: 0;
    padding: 0 16px 20px;
  }

  .quick-help a,
  .quick-help a:first-child,
  .quick-help a:last-child {
    border-radius: 8px;
  }

  .checker-result {
    min-height: auto;
    padding: 20px;
  }

  .story-card {
    min-height: 240px;
  }

  .story-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .story-card span {
    font-size: 0.86rem;
  }

  .service-card {
    min-height: auto;
  }

  .lead-form {
    padding: 18px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 48px;
  }

  .map-card {
    min-height: 260px;
    padding: 22px;
  }

  .map-card span {
    margin-bottom: 52px;
  }

  .map-card strong {
    font-size: 1.55rem;
  }

  footer {
    display: grid;
    padding-bottom: 116px;
  }

  .sticky-contact {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    justify-content: stretch;
  }

  .sticky-contact a {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
  }
}

@media (max-width: 390px) {
  .brand strong,
  .brand small {
    max-width: 180px;
  }

  .sticky-contact {
    gap: 6px;
    padding: 6px;
  }

  .sticky-contact a {
    font-size: 0.82rem;
  }
}
