@font-face {
  font-family: 'Roboto';
  src: url('Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Walk Your Plans brand palette */
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --black: #0C0C0C;
  --charcoal: #3D3D3D;
  --confidence-gray: #E0E0DB;
  --walking-gray: #3D3D3D;
  --techno-black: #0C0C0C;
  --gray: var(--confidence-gray);
  --paper: #F7F7F4;
  --white: #FFFFFF;
  --green: #16A34A;
  --ink-soft: rgba(12, 12, 12, 0.68);
  --line: rgba(12, 12, 12, 0.12);
  --shadow: 0 28px 80px rgba(12, 12, 12, 0.16);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shell: min(1180px, calc(100vw - 40px));
  --font: 'Roboto', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(12, 12, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 12, 12, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  z-index: -1;
}

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

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 20px;
  background: rgba(224, 224, 219, 0.78);
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 42px rgba(12, 12, 12, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}

.brand-badge {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 9px;
  object-fit: cover;
}

.brand-lockup {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 0.9;
}

.brand-name {
  color: var(--black);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-location {
  margin-top: 4px;
  color: var(--charcoal);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-reverse {
  color: var(--white);
}

.brand-reverse .brand-name,
.brand-reverse .brand-location {
  color: var(--white);
}

.nav-connectors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  margin-left: auto;
}

.nav-connectors a {
  color: var(--black);
  font-size: 0.936rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-connectors a:hover,
.nav-connectors a:focus-visible {
  color: var(--red);
}

/* Mobile hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 150ms ease, background 150ms ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.site-header.nav-open .nav-toggle-bars {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.32);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 40px rgba(211, 47, 47, 0.28);
}

.button-secondary {
  color: var(--black);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(211, 47, 47, 0.36);
}

.button-small {
  min-height: 42px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button-large {
  min-height: 58px;
  padding: 18px 28px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero {
  position: relative;
  box-sizing: border-box;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 32px;
  color: var(--white);
  background: var(--black);
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(28px, 3.75vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(26px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.6), rgba(61, 61, 61, 0.32));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.eyebrow,
.panel-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.35rem, 5.6vw, 5.45rem);
  font-weight: 900;
}

.hero h1 {
  max-width: 1025px;
  font-size: clamp(4.2rem, 7vw, 6.8rem);
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  font-weight: 900;
}

.confidence-line {
  letter-spacing: -0.015em;
}

#agitation-title {
  letter-spacing: -0.035em;
}

#agitation-title span {
  color: var(--red);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-subhead,
.section-heading p,
.guarantee-copy p,
.booking-copy p {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.55vw, 1.32rem);
  font-weight: 500;
}

.hero .eyebrow,
.hero h1,
.hero-subhead {
  color: var(--white);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
}

.hero-subhead {
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 840px;
  font-size: clamp(1.4rem, 1.94vw, 1.65rem);
}

.hero-actions {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
}

.hero-actions .button-large {
  min-height: 68px;
  padding: 20px 36px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.cta-booster {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.cta-booster::before,
.form-note::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translateY(-2px);
  animation: cueBounce 1100ms ease-in-out infinite;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 812px;
}

.hero-solution {
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-solution p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-solution p strong {
  color: var(--white);
  font-weight: 900;
}

.hero-proof div {
  min-height: 118px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.hero .hero-proof strong,
.hero .hero-proof span {
  color: var(--white);
}

.hero .hero-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-proof strong,
.big-stat strong,
.roi-output strong {
  display: block;
  color: var(--black);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero-proof span,
.big-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-proof div>span:first-child {
  margin-top: 0;
  margin-bottom: 8px;
}

.photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: var(--black);
  box-shadow: none;
  transform: none;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 44%, rgba(12, 12, 12, 0.3), transparent 26rem),
    linear-gradient(90deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.48) 43%, rgba(12, 12, 12, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.2), rgba(12, 12, 12, 0.6));
  pointer-events: none;
}

.photo-frame img {
  width: 150%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left 42%;
  transform: translateX(-20%);
  filter: saturate(0.95) contrast(1.04);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual.reveal {
  opacity: 1;
  transform: none;
}

.look-card {
  position: absolute;
  z-index: 2;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: grid;
  gap: 10px;
  width: min(260px, calc(100% - 44px));
  padding: 16px;
  border-radius: 24px;
  color: var(--white);
  background: rgba(12, 12, 12, 0.84);
  backdrop-filter: blur(14px);
}

.look-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visual-caption {
  position: absolute;
  z-index: 2;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 158px;
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-align: right;
}

.trust-bar {
  padding: 0;
  background: linear-gradient(135deg, #151515, #0c0c0c 62%, #180d0d);
}

.trust-inner {
  width: 100%;
}

.trust-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  min-height: 170px;
  padding: clamp(24px, 3vw, 38px) max(40px, calc((100vw - 1180px) / 2));
  border-radius: 0;
  color: var(--white);
  background: linear-gradient(135deg, #151515, #0c0c0c 62%, #180d0d);
  box-shadow: none;
}

.trust-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.24;
  pointer-events: none;
}

.trust-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: min(118px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(211, 47, 47, 0.38);
  border-radius: 50%;
  color: #ff4a45;
  background: rgba(255, 255, 255, 0.04);
}

.trust-emblem::after {
  content: '';
  position: absolute;
  right: clamp(-42px, -4vw, -24px);
  width: 1px;
  height: 118%;
  background: rgba(255, 255, 255, 0.2);
}

.trust-emblem svg {
  width: 48%;
}

.trust-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.trust-kicker {
  margin: 0 0 12px;
  color: #ff4a45;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.08);
}

.trust-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 18px 0 16px;
  background: #ff3333;
}

.trust-copy p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.45;
}

/* ── Who We Serve ── */
.who-we-serve {
  background: var(--paper);
  padding-top: clamp(40px, 5vw, 64px);
  scroll-margin-top: 28vh;
}

.who-we-serve .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.who-we-serve .section-heading h2,
.who-we-serve .section-heading p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.serve-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .serve-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 4px 24px rgba(12, 12, 12, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serve-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.serve-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.6;
}

.serve-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(211, 47, 47, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Problem / Cost soft panel ── */
.cost-soft-list {
  list-style: none;
  margin: clamp(20px, 3vw, 32px) auto 0;
  padding: 0;
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.cost-soft-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.cost-soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ── What to Expect ── */
.expect {
  background: var(--white);
}

.expect .section-heading {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.expect .section-heading h2,
.expect .section-heading p {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.expect .section-heading h2 {
  line-height: 1.08;
}

.expect-outcomes {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 760px) {
  .expect-outcomes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .expect-outcomes {
    grid-template-columns: 1fr;
  }
}

.expect-outcomes li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--paper);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
}

.expect-outcomes li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Shared section CTA ── */
.how-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
}

/* ── What You'll Catch grid ── */
.catch {
  background: var(--paper);
}

.catch .section-heading h2 {
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  white-space: nowrap;
}

.catch-title span {
  display: block;
}

.catch-title .catch-title-nowrap {
  white-space: nowrap;
}

.catch-title-red {
  color: var(--red);
}

@media (max-width: 640px) {
  .catch .section-heading h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 0.92;
    white-space: normal;
  }
}

.catch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 5vw, 56px);
}

.catch-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(12, 12, 12, 0.05);
}

.catch-item h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 6px;
}

.catch-item p {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.55;
}

/* ── Pricing Guide cards ── */
.pricing {
  background: var(--white);
}

.pricing .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing .section-heading h2,
.pricing .section-heading p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: clamp(32px, 5vw, 56px);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--confidence-gray);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px) clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card-featured {
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 22px 70px rgba(12, 12, 12, 0.22);
}

.pricing-card-featured .pricing-card-name,
.pricing-card-featured .pricing-card-price,
.pricing-card-featured .pricing-card-best,
.pricing-card-featured .pricing-card-list li {
  color: var(--white);
}

.pricing-card-featured .pricing-card-best span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.pricing-card-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.pricing-card-price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pricing-card-best {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

.pricing-card-best span {
  display: block;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
}

.pricing-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pricing-card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--black);
}

.pricing-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}

.pricing-card-featured .pricing-card-list li::before {
  color: #ff6b6b;
}

.pricing-card .button {
  margin-top: auto;
}

.billing-clarity {
  max-width: 820px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  text-align: center;
}

.billing-clarity p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0;
}

.billing-clarity .billing-support {
  margin-top: 14px;
  font-weight: 600;
  color: var(--black);
}

.billing-clarity a {
  color: var(--red);
  text-decoration: underline;
}

/* ── Local Trust / About snippet ── */
.local-trust {
  background: var(--black);
  color: var(--white);
}

.local-trust-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.local-trust-copy .eyebrow {
  color: #ff6b6b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.local-trust-copy h2 {
  color: var(--white);
  margin: 0 0 16px;
}

.local-trust-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 520px;
}

.local-trust-copy .button-secondary {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.local-trust-copy .button-secondary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: inset 0 0 0 1px var(--white);
}

.local-trust-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.local-trust-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.local-trust-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

/* ── Footer legal links ── */
.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── Booking: optional field hint ── */
.label-optional {
  font-weight: 400;
  color: #aaa;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .local-trust-inner {
    grid-template-columns: 1fr;
  }
}

/* ── How It Works collage ── */
.how-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.how-collage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
  display: block;
}

.how-collage-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-collage-stack img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  min-height: 0;
}

.agitation-stat {
  background: var(--white);
  padding-bottom: 0;
}

.expect {
  background: var(--white);
  padding-top: clamp(40px, 5vw, 64px);
}

.agitation {
  background: linear-gradient(180deg, var(--paper), var(--white));
  padding-top: clamp(24px, 3vw, 40px);
}

.example-photo-section {
  padding: 0 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
}

.example-photo {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(12, 12, 12, 0.12);
  object-fit: cover;
}

/* ── About page ─────────────────────────────────────────────── */

.about-hero {
  background:
    radial-gradient(circle at 12% 8%, rgba(211, 47, 47, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--confidence-gray) 0%, var(--paper) 100%);
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.about-hero-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--charcoal);
}

.about-mission {
  background: var(--paper);
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-two-col h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.about-col p {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.about-col p:last-child {
  margin-bottom: 0;
}

.about-stats-section {
  background: var(--black);
  padding: clamp(40px, 5vw, 64px) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.about-stat {
  display: grid;
  gap: 6px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--black);
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.about-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.about-different {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}

.about-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(12, 12, 12, 0.07);
}

.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.08);
  color: var(--red);
  margin-bottom: 18px;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-card p {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0;
}

.about-cta {
  background:
    radial-gradient(circle at 80% 50%, rgba(211, 47, 47, 0.14), transparent 28rem),
    var(--confidence-gray);
}

.about-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.about-cta-inner p {
  color: var(--charcoal);
  margin-bottom: 32px;
}

/* ── Team Section ──────────────────────────────── */
.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(12, 12, 12, 0.08);
  display: flex;
  flex-direction: column;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--confidence-gray);
  position: relative;
}

.team-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.5) 28%, transparent 60%),
    linear-gradient(160deg, var(--confidence-gray) 0%, #c8c8c4 100%);
}

.team-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}

.team-blurb {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.team-email {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: 4px;
  word-break: break-all;
}

.team-email:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .about-two-col {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

.calculator-grid,
.faq {
  scroll-margin-top: 180px;
}

.testimonial-grid,
.guarantee-grid,
.faq-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.booking-grid-single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.stat-panel {
  display: grid;
  grid-template-columns: 0.8fr repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.stat-panel .panel-label,
.stat-panel .big-stat span {
  color: rgba(255, 255, 255, 0.72);
}

.stat-panel .panel-label {
  font-size: 22px;
}

.stat-panel .big-stat span {
  font-size: 18px;
}

.stat-panel .big-stat strong {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.big-stat {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-panel .panel-label {
  display: flex;
  align-items: center;
  margin: 0;
}

.agitation-copy {
  max-width: none;
  margin: clamp(68px, 7vw, 92px) 0 0;
}

#how-title {
  padding-top: 75px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article,
.step-card,
.calc-card,
.testimonial-card,
.guarantee-cta,
.faq-list details,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(12, 12, 12, 0.08);
}

.benefit-grid article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.benefit-grid article span {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}

.benefit-grid p,
.step-card p,
.testimonial-card span,
.faq-list p,
.form-note,
.site-footer p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.benefit-grid p {
  max-width: 28ch;
}

.calculator {
  color: var(--white);
  position: relative;
  background:
    linear-gradient(to right, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.45) 50%, rgba(12, 12, 12, 0.15) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(12, 12, 12, 0.72) 100%),
    url('social proof/IMG_0869.JPG') center center / cover no-repeat;
}

.calculator h2,
.calculator .section-heading p {
  color: var(--white);
}

#calculator-title {
  letter-spacing: 0;
}

.calculator .eyebrow {
  color: #ffb3b3;
}

.calc-card {
  padding: clamp(24px, 4vw, 38px);
  color: var(--black);
  background: var(--paper);
}

.slider-row {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.slider-row span {
  color: var(--charcoal);
  font-weight: 900;
}

.slider-row strong {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

input[type='range'] {
  width: 100%;
  accent-color: var(--red);
}

.roi-output {
  padding: 26px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.roi-output span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roi-output strong {
  color: var(--white);
  margin: 10px 0;
}

.roi-output p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.centered {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 50px;
}

.step-card {
  min-height: 300px;
  padding: clamp(24px, 4vw, 38px);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 1.17rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials {
  background: var(--paper);
}

.experience {
  color: var(--black);
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.experience h2,
.experience .section-heading p {
  color: var(--black);
}

.experience .eyebrow {
  color: #ffb3b3;
}

.experience-grid {
  display: grid;
  gap: clamp(34px, 4.5vw, 54px);
}

.experience .section-heading.centered {
  justify-self: center;
  margin-bottom: 0;
  text-align: center;
}

#experience-title {
  max-width: 760px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.audience-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  margin: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(12, 12, 12, 0.08);
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
}

.audience-icon svg {
  display: block;
  stroke: var(--red);
}

.audience-card h3 {
  color: var(--black);
}

.audience-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.what-we-do {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.what-we-do-grid {
  display: grid;
  gap: clamp(34px, 4.5vw, 54px);
}

.what-we-do .section-heading.centered {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(12, 12, 12, 0.08);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}

.service-icon svg {
  display: block;
  stroke: var(--red);
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.brand-traits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(44px, 6vw, 72px);
}

.brand-traits span {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}

#testimonials-title {
  max-width: 760px;
  letter-spacing: -0.025em;
}

.testimonials .section-heading.centered {
  justify-self: center;
  margin-bottom: 0;
  text-align: center;
}

.testimonial-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-self: center;
  width: min(1120px, 100%);
  padding: clamp(22px, 4vw, 34px);
}

.testimonial-block {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 6px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.testimonial-block p {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.testimonial-block strong,
.testimonial-block span {
  display: block;
}

.testimonial-block strong {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 900;
}

.testimonial-block span {
  color: var(--ink-soft);
  font-weight: 700;
}

.guarantee {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(211, 47, 47, 0.96), rgba(183, 28, 28, 0.98)),
    var(--red);
}

.guarantee h2,
.guarantee p,
.guarantee .eyebrow {
  color: var(--white);
}

.guarantee-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.guarantee-cta {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--black);
  background: var(--white);
}

.guarantee-cta span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guarantee-cta small {
  color: var(--ink-soft);
  font-weight: 700;
}

.demo-booking-form {
  display: grid;
  gap: 16px;
}

.demo-booking-form[hidden],
#demoStartButton[hidden] {
  display: none;
}

.demo-step {
  display: none;
  gap: 16px;
  animation: bookingStepIn 260ms ease both;
}

.demo-step.is-active {
  display: grid;
}

.demo-booking-form .calendar-header {
  align-items: flex-start;
  flex-direction: column;
}

.demo-calendar-days .calendar-day {
  min-height: 42px;
}

.booking-time-grid,
.demo-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-time-button,
.demo-time-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.booking-time-button:hover,
.booking-time-button:focus-visible,
.booking-time-button.is-selected,
.demo-time-button:hover,
.demo-time-button:focus-visible,
.demo-time-button.is-selected {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.booking-time-button:focus-visible,
.demo-time-button:focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.18);
  outline-offset: 2px;
}

.demo-booking-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

.demo-booking-form input {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--black);
  background: var(--white);
}

.demo-booking-form input:focus {
  outline: 3px solid rgba(211, 47, 47, 0.18);
  border-color: var(--red);
}

.demo-booking-form .form-note {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.demo-booking-form .form-note.submitted {
  color: var(--green);
}

.faq-grid {
  grid-template-columns: minmax(180px, 1fr) minmax(0, 4fr);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 24px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.faq-list p {
  padding-top: 16px;
}

.booking {
  background:
    radial-gradient(circle at 14% 40%, rgba(211, 47, 47, 0.15), transparent 22rem),
    var(--confidence-gray);
}

.booking-shell {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
}

.booking-shell.is-complete {
  min-height: min(760px, 82svh);
  place-items: center;
}

.booking-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.booking-heading h2 {
  margin-bottom: 18px;
}

.booking-heading p {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(12, 12, 12, 0.08);
}

/* Mobile pricing cards — hidden on desktop, shown on mobile */
.pricing-cards-mobile {
  display: none;
}

@media (max-width: 768px) {
  .pricing-table-wrap {
    display: none;
  }

  .pricing-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pricing-card-mobile {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 4px 24px rgba(12, 12, 12, 0.06);
  }

  .pricing-card-mobile-best {
    border-color: rgba(211, 47, 47, 0.35);
    background: linear-gradient(180deg, rgba(211, 47, 47, 0.06), rgba(211, 47, 47, 0.01));
    box-shadow: 0 4px 24px rgba(211, 47, 47, 0.12);
  }

  .pricing-card-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .pricing-card-mobile-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
  }

  .pricing-card-mobile-price {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--black);
    white-space: nowrap;
  }

  .pricing-card-mobile-price small {
    font-size: 0.42em;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--charcoal);
  }

  .pricing-card-mobile-rows {
    padding: 8px 0;
  }

  .pricing-card-mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(12, 12, 12, 0.06);
    font-size: 0.9rem;
  }

  .pricing-card-mobile-row:last-child {
    border-bottom: none;
  }

  .pricing-card-mobile-row span:first-child {
    color: var(--black);
    font-weight: 700;
  }

  .pricing-card-mobile-row span:last-child {
    color: var(--charcoal);
    text-align: right;
    flex-shrink: 0;
  }
}

.pricing-table {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) repeat(3, minmax(190px, 1fr));
  overflow: hidden;
  min-width: 860px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.pricing-table-cell {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 86px;
  padding: 20px 22px;
  border-right: 1px solid rgba(12, 12, 12, 0.09);
  border-bottom: 1px solid rgba(12, 12, 12, 0.09);
  color: var(--charcoal);
  font-weight: 600;
  text-align: center;
}

.pricing-table-cell:nth-child(4n) {
  border-right: 0;
}

.pricing-table-cell:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.pricing-table-feature {
  justify-items: start;
  color: var(--black);
  font-weight: 900;
  text-align: left;
}

.pricing-table-head {
  gap: 10px;
  min-height: 150px;
  justify-items: center;
}

.pricing-table-head span:not(.value-ribbon) {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-table-head strong {
  color: var(--black);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.pricing-table-head small {
  color: var(--charcoal);
  font-size: 0.44em;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-table-head p {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(211, 47, 47, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-table-best {
  background: linear-gradient(180deg, rgba(211, 47, 47, 0.08), rgba(211, 47, 47, 0.025));
  box-shadow: inset 1px 0 0 rgba(211, 47, 47, 0.35), inset -1px 0 0 rgba(211, 47, 47, 0.35);
}

.col-selected {
  background: transparent;
  box-shadow: inset 1px 0 0 rgba(211, 47, 47, 0.35), inset -1px 0 0 rgba(211, 47, 47, 0.35);
  position: relative;
  z-index: 1;
}

.col-gradient-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(211, 47, 47, 0.13) 0%, rgba(211, 47, 47, 0.02) 100%);
}

.pricing-table {
  position: relative;
}

.pricing-table-cell[data-col] {
  cursor: pointer;
}

.value-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pricing-table-select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(12, 12, 12, 0.2);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pricing-table-select:hover,
.pricing-table-select:focus-visible {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  outline: 0;
  transform: translateY(-1px);
}

.pricing-table-select.is-selected {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.booking-success {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 100%;
  align-content: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) 24px;
  border-radius: inherit;
  background: rgba(247, 247, 244, 0.94);
  box-shadow: inset 0 0 0 1px rgba(12, 12, 12, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  z-index: 3;
  animation: successOverlayIn 260ms ease both;
}

.booking-success[hidden] {
  display: none;
}

.booking-success.is-leaving {
  animation: successOverlayOut 420ms ease forwards;
}

.booking-success h2 {
  margin: 22px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.booking-success p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 700;
}

.success-check {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(76px, 9vw, 108px);
  aspect-ratio: 1;
  background: none;
  box-shadow: none;
  transform: scale(0.82);
  animation: successPop 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.success-check::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 38%;
  border-bottom: 10px solid var(--green);
  border-left: 10px solid var(--green);
  transform: translate(-55%, -40%) rotate(-45deg) scale(0);
  transform-origin: left bottom;
  animation: checkDraw 420ms ease 360ms forwards;
}

.success-fireworks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.success-fireworks span {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--red);
  background: currentColor;
  opacity: 0;
  animation: fireworkBurst 1100ms ease-out 180ms forwards;
}

.success-fireworks span:nth-child(1) {
  left: 18%;
  top: 28%;
  color: var(--red);
}

.success-fireworks span:nth-child(2) {
  right: 20%;
  top: 24%;
  color: var(--green);
  animation-delay: 320ms;
}

.success-fireworks span:nth-child(3) {
  left: 50%;
  top: 18%;
  color: #f59e0b;
  animation-delay: 460ms;
}

.pricing-preview {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: clamp(8px, 1.6vw, 18px);
}

.package-prompt {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(211, 47, 47, 0.22);
  border-radius: 14px;
  color: var(--red-dark);
  background: rgba(211, 47, 47, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
}

.package-prompt.is-visible {
  display: block;
}

.pricing-list {
  display: grid;
  gap: 12px;
}

.pricing-list article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(12, 12, 12, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pricing-list article:hover,
.pricing-list article:focus-visible {
  border-color: rgba(211, 47, 47, 0.45);
  background: rgba(255, 255, 255, 0.72);
  outline: 0;
  transform: translateY(-1px);
}

.pricing-list article.is-selected {
  border-color: var(--red);
  background: rgba(211, 47, 47, 0.1);
  box-shadow: inset 0 0 0 1px var(--red), 0 18px 42px rgba(211, 47, 47, 0.12);
}

.pricing-label {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-list strong {
  color: var(--black);
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-list strong .pricing-rate-unit {
  margin-left: 2px;
  color: #1f3653;
  display: inline;
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: baseline;
}

.pricing-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-features {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(12, 12, 12, 0.08);
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.pricing-select-label {
  display: inline-flex;
  justify-self: start;
  min-height: 34px;
  align-items: center;
  margin-top: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(211, 47, 47, 0.22);
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(211, 47, 47, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-list article.is-selected .pricing-select-label {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
}

.booking-type-field {
  display: grid;
  gap: 8px;
}

.booking-type-field-label {
  color: var(--charcoal);
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
}

.booking-type-field .booking-intent {
  max-width: 100%;
  justify-content: flex-start;
}

.booking-type-field .intent-button {
  padding: 0 36px;
  min-height: 54px;
}

.walk-duration-field {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}


.booking-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.booking-plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--white);
}

.booking-plan-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.booking-plan-price {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.booking-plan-price small {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--charcoal);
}

.booking-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.booking-plan-select {
  width: 100%;
  margin-top: auto;
  background: var(--confidence-gray);
  color: var(--charcoal);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.booking-plan-select:hover {
  background: #d4d4d0;
}

.booking-plan-select.is-selected {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.28);
}

@media (max-width: 540px) {
  .booking-plan-grid {
    grid-template-columns: 1fr;
  }
}

.booking-intent-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.booking-intent-heading {
  margin: 0;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  text-align: center;
}

.booking-intent-subhead {
  margin: -24px 0 clamp(20px, 3vw, 36px);
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

/* ── Utility classes ───────────────────────────────────────── */
.is-hidden {
  display: none !important;
}

.button-wide {
  min-width: 320px;
}

.button-next {
  min-width: 240px;
}

.button.is-disabled,
.button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-intent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
}

.intent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 40px rgba(211, 47, 47, 0.28);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

/* PRE-LAUNCH: locked state */
.intent-button.intent-locked {
  background: var(--confidence-gray);
  color: rgba(12, 12, 12, 0.35);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Waitlist Modal ── */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waitlist-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 32px 80px rgba(12, 12, 12, 0.24);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waitlist-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 4px;
}

.waitlist-card>p {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-close:hover {
  background: var(--confidence-gray);
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.waitlist-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.waitlist-field input,
.waitlist-field select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 180ms;
}

.waitlist-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%233D3D3D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.waitlist-field input:focus,
.waitlist-field select:focus {
  border-color: var(--red);
}

.waitlist-success {
  text-align: center;
  font-weight: 700;
  color: var(--green);
  margin-top: 8px;
}

.intent-button:hover,
.intent-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(211, 47, 47, 0.36);
  outline: 0;
}

.intent-button.is-selected {
  background: var(--black);
  box-shadow: 0 10px 28px rgba(12, 12, 12, 0.24);
}

.booking-step {
  display: none;
  gap: 16px;
  min-width: 0;
  animation: bookingStepIn 260ms ease both;
}

.booking-step.is-active {
  display: grid;
}

.step-kicker {
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selected-date {
  margin-bottom: 0;
  padding: 14px 16px;
  border: 1px solid rgba(211, 47, 47, 0.18);
  border-radius: 16px;
  color: var(--black);
  background: rgba(211, 47, 47, 0.08);
  font-weight: 900;
}

.calendar-picker {
  display: grid;
  gap: 14px;
}

.calendar-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.calendar-header p,
.calendar-header strong {
  margin: 0;
}

.calendar-header p {
  color: var(--charcoal);
  font-weight: 900;
}

.calendar-header strong {
  color: var(--black);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.calendar-nav {
  display: inline-grid;
  grid-template-columns: 36px auto 36px;
  align-items: center;
  gap: 10px;
}

.calendar-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.calendar-nav button:hover,
.calendar-nav button:focus-visible {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.calendar-nav button:focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.18);
  outline-offset: 2px;
}

.calendar-nav button:disabled {
  color: rgba(35, 31, 32, 0.26);
  background: rgba(35, 31, 32, 0.04);
  cursor: not-allowed;
  transform: none;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.calendar-day:focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.18);
  outline-offset: 2px;
}

.calendar-day.is-selected {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.32);
  transform: translateY(-2px);
}

.calendar-day.is-empty {
  border: 0;
  background: transparent;
  pointer-events: none;
}

.calendar-day.is-disabled {
  color: rgba(35, 31, 32, 0.28);
  background: rgba(35, 31, 32, 0.04);
  cursor: not-allowed;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

/* Honeypot field — visually hidden, accessibility-hidden, but still in the DOM */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Inline form errors */
.form-error {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 4px 0 0;
}

.booking-form input.is-invalid,
.booking-form select.is-invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

/* Loading state on submit */
.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.button.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: buttonSpin 0.6s linear infinite;
}

@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}

.booking-form input,
.booking-form select {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--black);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 3px solid rgba(211, 47, 47, 0.18);
  border-color: var(--red);
}

.booking-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.confirm-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.confirm-summary {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.confirm-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.confirm-value--total {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
}

.confirm-disclaimer {
  margin: 12px 4px 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo .brand-badge {
  width: 40px;
  height: 40px;
}

.footer-logo .brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 280px;
}

.site-footer .footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col a,
.footer-col address p,
.footer-col p:not(.footer-col-heading) {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: clamp(16px, 2vw, 24px) 0;
}

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

.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: revealUp 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1.is-visible {
  animation-delay: 120ms;
}

.reveal-delay-2.is-visible {
  animation-delay: 240ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cueBounce {
  50% {
    transform: rotate(45deg) translate(4px, 2px);
  }
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successOverlayIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successOverlayOut {
  to {
    opacity: 0;
    transform: scale(0.985);
  }
}

@keyframes checkDraw {
  to {
    transform: translate(-55%, -30%) rotate(-45deg) scale(1);
  }
}

@keyframes fireworkBurst {
  0% {
    opacity: 1;
    box-shadow:
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor,
      0 0 0 currentColor;
    transform: scale(0.5);
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    box-shadow:
      0 -76px 0 currentColor,
      54px -54px 0 currentColor,
      76px 0 0 currentColor,
      54px 54px 0 currentColor,
      0 76px 0 currentColor,
      -54px 54px 0 currentColor,
      -76px 0 0 currentColor,
      -54px -54px 0 currentColor;
    transform: scale(1);
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .calculator-grid,
  .testimonial-grid,
  .guarantee-grid,
  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .brand-traits {
    grid-template-columns: 1fr 1fr;
  }

  .trust-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 30px 24px;
  }

  .trust-emblem {
    width: min(104px, 38vw);
  }

  .trust-emblem::after {
    display: none;
  }

  .trust-copy {
    text-align: center;
  }

  .trust-rule {
    margin-right: auto;
    margin-left: auto;
  }

  .audience-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

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

  .big-stat {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .photo-frame,
  .photo-frame img {
    min-height: 100%;
    height: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100vw - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    padding: 8px 8px 8px 12px;
    gap: 6px;
  }

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

  .brand-badge {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-location {
    margin-top: 3px;
    font-size: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
  }

  .nav-connectors {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    margin-left: 0;
    padding: 8px;
    background: rgba(247, 247, 244, 0.98);
    border: 1px solid rgba(12, 12, 12, 0.1);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(12, 12, 12, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-header.nav-open .nav-connectors {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-connectors a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .nav-connectors a:hover,
  .nav-connectors a:focus-visible {
    color: var(--red);
    background: rgba(211, 47, 47, 0.08);
  }

  .button-small {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .site-header .button-small {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .stat-panel .big-stat strong {
    font-size: clamp(3.25rem, 15vw, 4.75rem);
  }

  .agitation-copy {
    margin-top: 34px;
  }

  #how-title {
    padding-top: 38px;
  }

  .hero-location {
    padding: 9px 16px;
    font-size: 0.92rem;
  }

  .hero-proof,
  .steps,
  .brand-traits,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .booking-actions,
  .button-large {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button-large,
  #openWaitlist {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .booking-actions {
    grid-template-columns: 1fr;
  }

  [data-booking-step='intent'] .booking-actions {
    justify-items: center;
  }

  #openWaitlist {
    width: min(100%, 296px);
  }

  .booking-intent {
    border-radius: 18px;
  }

  .calendar-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-large {
    text-align: center;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 100%;
    height: 100%;
  }

  .photo-frame {
    border-width: 0;
    border-radius: 0;
  }

  .look-card {
    display: none;
  }

  .visual-caption {
    display: none;
  }

  .benefit-grid article {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 230px;
  }

  .step-card span {
    margin-bottom: 42px;
  }

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

  .testimonial-card p {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Contact Modal ───────────────────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.contact-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  border-radius: var(--radius-md);
  max-width: 940px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(12, 12, 12, 0.28);
  animation: contactModalIn 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Left info panel */
.cmo-left {
  background: var(--paper);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
}

/* Right form panel */
.cmo-right {
  background: var(--paper);
  padding: 48px 40px 44px;
  overflow-y: auto;
  border-left: 2px solid var(--red);
}

/* Form fields */
.cmo-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cmo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cmo-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.cmo-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
}

.cmo-input {
  border: none;
  border-bottom: 1.5px solid var(--confidence-gray);
  background: transparent;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--black);
  font-family: inherit;
  outline: none;
  transition: border-color 150ms ease;
  width: 100%;
}

.cmo-input:focus {
  border-bottom-color: var(--red);
}

.cmo-input::placeholder {
  color: #bbb;
}

.cmo-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D3D3D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.cmo-submit {
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.cmo-note {
  margin: 4px 0 0;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.cmo-note.is-error {
  color: var(--red-dark);
}

@media (max-width: 640px) {
  .contact-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .cmo-left {
    padding: 36px 28px 28px;
  }

  .cmo-right {
    padding: 28px 28px 36px;
    border-left: 0;
    border-top: 2px solid var(--red);
  }

  .cmo-submit {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@keyframes contactModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms ease, color 140ms ease;
}

.contact-modal-close:hover {
  background: var(--confidence-gray);
  color: var(--black);
}

.contact-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}

.contact-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--black);
  margin: 0 0 32px;
  line-height: 1.1;
}

.contact-modal-items {
  display: flex;
  flex-direction: column;
}

.contact-modal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 140ms ease;
  word-break: break-word;
}

.contact-modal-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-modal-item:hover {
  color: var(--red);
}

.contact-modal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reference restyle for the "What You'll Catch" section */
.catch {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.catch-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.catch-title {
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.catch-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.45;
}

.catch-rule {
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 28px;
  background: var(--red);
}

.catch-sketch {
  min-height: 250px;
  padding-top: 8px;
}

.catch-sketch svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.sketch-line,
.sketch-faint,
.sketch-red {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sketch-line {
  stroke: rgba(12, 12, 12, 0.36);
  stroke-width: 1.4;
}

.sketch-faint {
  stroke: rgba(12, 12, 12, 0.16);
  stroke-width: 1;
}

.sketch-red {
  stroke: var(--red);
  stroke-width: 2.2;
}

.sketch-red-dot {
  fill: var(--red);
}

.catch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(44px, 6vw, 76px);
}

.catch-item {
  position: relative;
  min-height: 238px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-left: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 16px;
  padding: 28px 26px 22px;
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.08);
}

.catch-item::before,
.catch-item::after {
  content: none;
}

.catch-number {
  display: inline-flex;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.catch-diagram {
  position: relative;
  height: 76px;
  margin: 20px 0 18px;
  color: var(--black);
}

.catch-diagram::before,
.catch-diagram::after,
.catch-diagram span,
.catch-diagram span::before,
.catch-diagram span::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.catch-diagram-kitchen::before {
  left: 28px;
  top: 30px;
  width: 122px;
  height: 26px;
  border: 2px solid var(--black);
}

.catch-diagram-kitchen::after {
  left: 84px;
  top: 16px;
  width: 18px;
  height: 20px;
  border: 2px solid var(--black);
  border-bottom: 0;
}

.catch-diagram-kitchen span {
  left: 152px;
  top: 28px;
  width: 1px;
  height: 34px;
  background: var(--red);
}

.catch-diagram-kitchen span::before,
.catch-diagram-kitchen span::after {
  left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.catch-diagram-kitchen span::before {
  top: -1px;
  border-bottom: 6px solid var(--red);
}

.catch-diagram-kitchen span::after {
  bottom: -1px;
  border-top: 6px solid var(--red);
}

.catch-diagram-hallway::before {
  left: 44px;
  top: 12px;
  width: 96px;
  height: 52px;
  border-left: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: perspective(120px) rotateX(42deg);
}

.catch-diagram-hallway::after {
  left: 92px;
  top: 20px;
  height: 44px;
  border-left: 1px dashed var(--red);
}

.catch-diagram-hallway span {
  left: 58px;
  top: 60px;
  width: 78px;
  border-top: 1px solid var(--black);
}

.catch-diagram-door::before {
  left: 76px;
  top: 12px;
  width: 42px;
  height: 56px;
  border: 2px solid var(--black);
}

.catch-diagram-door::after {
  left: 80px;
  top: 48px;
  width: 46px;
  height: 46px;
  border-right: 1px dashed var(--red);
  border-bottom: 1px dashed var(--red);
  border-radius: 0 0 46px 0;
}

.catch-diagram-door span {
  left: 118px;
  top: 40px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.catch-diagram-closet::before {
  left: 58px;
  top: 10px;
  width: 74px;
  height: 58px;
  border: 2px solid var(--black);
}

.catch-diagram-closet::after {
  left: 143px;
  top: 10px;
  height: 58px;
  border-left: 1px dashed var(--red);
}

.catch-diagram-closet span {
  left: 70px;
  top: 22px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: 34px 0 0 -2px var(--white), 34px 0 0 0 var(--black);
}

.catch-diagram-furniture::before {
  left: 42px;
  top: 32px;
  width: 104px;
  height: 34px;
  border: 2px solid var(--black);
  border-radius: 14px 14px 4px 4px;
}

.catch-diagram-furniture::after {
  left: 36px;
  top: 24px;
  width: 116px;
  height: 44px;
  border: 1px dashed var(--red);
}

.catch-diagram-furniture span {
  left: 164px;
  top: 18px;
  width: 20px;
  height: 52px;
  border-left: 2px solid var(--black);
}

.catch-diagram-bath::before {
  left: 42px;
  top: 10px;
  width: 118px;
  height: 62px;
  border: 2px solid var(--black);
}

.catch-diagram-bath::after {
  left: 58px;
  top: 38px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.catch-diagram-bath span {
  left: 104px;
  top: 34px;
  width: 34px;
  height: 24px;
  border: 2px solid var(--black);
}

.catch-diagram-sight::before {
  left: 48px;
  top: 28px;
  width: 10px;
  height: 34px;
  border: 2px solid var(--black);
  border-radius: 12px 12px 4px 4px;
}

.catch-diagram-sight::after {
  left: 88px;
  top: 8px;
  height: 64px;
  border-left: 2px solid var(--black);
}

.catch-diagram-sight span {
  left: 58px;
  top: 24px;
  width: 84px;
  height: 42px;
  border-top: 1px dashed var(--red);
  border-bottom: 1px dashed var(--red);
  transform: skewY(-16deg);
  transform-origin: left center;
}

.catch-diagram-commercial::before {
  left: 40px;
  top: 12px;
  width: 124px;
  height: 58px;
  border: 2px solid var(--black);
  background:
    linear-gradient(90deg, transparent 48%, var(--black) 48% 50%, transparent 50%),
    linear-gradient(0deg, transparent 48%, var(--black) 48% 50%, transparent 50%);
}

.catch-diagram-commercial::after {
  left: 70px;
  top: 36px;
  width: 90px;
  height: 26px;
  border-bottom: 1px dashed var(--red);
  border-right: 1px dashed var(--red);
  border-radius: 0 0 26px 0;
}

.catch-diagram-commercial span {
  left: 148px;
  top: 58px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
}

.catch-item h3 {
  font-size: 1.22rem;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.catch-item p {
  font-size: 1rem;
  line-height: 1.38;
}

.catch-arrow {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.catch-impact {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 18px 28px;
  border-left: 4px solid var(--red);
  border-radius: 0 16px 16px 0;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.07);
}

.catch-impact-icon {
  width: 40px;
  height: 40px;
}

.catch-impact strong {
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 900;
}

.catch-impact p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  .catch-intro {
    grid-template-columns: 1fr;
  }

  .catch-sketch {
    max-width: 620px;
  }

  .catch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catch-title {
    font-size: clamp(1.6rem, 8.4vw, 3.2rem);
  }

  .catch-title .catch-title-nowrap {
    white-space: nowrap;
  }

  .catch-sketch {
    min-height: 0;
  }

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

  .catch-impact {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .catch-impact p {
    grid-column: 2;
  }
}

/* Reference restyle for the pre-launch booking section */
.booking {
  background:
    radial-gradient(circle at 8% 55%, rgba(211, 47, 47, 0.11), transparent 25rem),
    radial-gradient(circle at 92% 10%, rgba(211, 47, 47, 0.055), transparent 22rem),
    #fffdfa;
}

.booking-shell {
  display: block;
}

.booking-intent-heading {
  margin: 0 auto 18px;
  max-width: 900px;
  color: var(--black);
  font-size: clamp(4.2rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-align: center;
}

.booking-intent-subhead {
  margin: 0 auto clamp(48px, 5.4vw, 74px);
  max-width: 880px;
  color: var(--charcoal);
  font-size: clamp(1.18rem, 2vw, 1.85rem);
  line-height: 1.24;
  text-align: center;
}

.booking-grid-single {
  display: grid;
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
}

.booking-form {
  overflow: visible;
  padding: clamp(34px, 5vw, 56px) clamp(28px, 5.5vw, 62px);
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 76px rgba(12, 12, 12, 0.1);
}

[data-booking-step='intent'] {
  display: grid;
  gap: 0;
}

.booking-type-field {
  gap: 26px;
}

.booking-type-field-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.booking-type-field-label::before,
.booking-type-field-label::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.booking-type-field .booking-intent {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 22px;
}

.booking-type-field .intent-button {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 260px;
  padding: 32px 26px 28px;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.08);
  color: var(--black);
  text-align: center;
}

.intent-button .intent-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.08);
  color: var(--red);
}

.intent-button .intent-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intent-button strong {
  display: block;
  color: var(--black);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.intent-button span:not(.intent-icon) {
  display: block;
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.intent-button small {
  display: block;
  margin-top: 28px;
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.intent-button.intent-locked {
  background: rgba(255, 255, 255, 0.76);
  color: var(--black);
  opacity: 1;
}

.intent-button.intent-locked .intent-icon,
.intent-button.intent-locked strong,
.intent-button.intent-locked span,
.intent-button.intent-locked small {
  opacity: 0.52;
}

[data-booking-step='intent'] .booking-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(12, 12, 12, 0.1);
  width: 100%;
}

[data-booking-step='intent'] #openWaitlist {
  width: min(100%, 430px);
  min-height: 72px;
  border-radius: var(--radius-pill);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

@media (max-width: 680px) {
  [data-booking-step='intent'] #openWaitlist {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

.booking-privacy-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: rgba(12, 12, 12, 0.46);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
}

.booking-privacy-note::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--charcoal);
  opacity: 0.35;
  clip-path: polygon(50% 0, 88% 16%, 82% 70%, 50% 100%, 18% 70%, 12% 16%);
}

.booking-proof-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  margin-top: 34px;
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 500;
}

.booking-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.booking-proof-row span+span {
  padding-left: clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(12, 12, 12, 0.12);
}

.booking-proof-row svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .booking-type-field .booking-intent {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .booking-type-field .intent-button {
    min-height: 140px;
    padding: 16px 10px;
  }

  .intent-button .intent-icon {
    width: 52px;
    height: 52px;
  }

  .intent-button .intent-icon svg {
    width: 24px;
    height: 24px;
  }

  .intent-button strong {
    font-size: 1rem;
  }

  .intent-button span:not(.intent-icon) {
    font-size: 0.78rem;
    margin-top: 6px;
  }

  .intent-button small {
    margin-top: 10px;
  }

  .booking-proof-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .booking-proof-row span+span {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .booking-form {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .booking-type-field .booking-intent {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-type-field .intent-button {
    width: 100%;
    min-height: 116px;
  }

  .button-wide,
  [data-booking-step='intent'] #openWaitlist {
    width: 100%;
    min-width: 0;
  }

  .booking-intent-heading {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .booking-type-field-label {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Reference restyle for the "Who We Serve" section */
.who-we-serve {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.45fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.who-copy {
  position: relative;
  min-height: 700px;
  padding-top: clamp(12px, 2vw, 36px);
}

.who-kicker {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 28px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.who-kicker::after {
  content: '';
  width: 84px;
  height: 1px;
  background: rgba(12, 12, 12, 0.2);
}

.who-copy h2 {
  margin: 0;
  max-width: 510px;
  color: var(--black);
  font-size: clamp(4rem, 6.6vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.who-title-accent {
  color: var(--red);
}

.who-title-nowrap {
  white-space: nowrap;
}

.who-copy>p {
  max-width: 430px;
  margin: 36px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}

.who-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 420px;
  margin-top: clamp(42px, 6vw, 70px);
  padding: 22px 26px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.06);
}

.who-callout span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--red);
}

.who-callout svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-callout strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.who-callout p {
  margin: 6px 0 0;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.35;
}

.who-sketch {
  position: absolute;
  left: clamp(-120px, -8vw, -50px);
  right: -40px;
  bottom: -30px;
  opacity: 0.42;
  pointer-events: none;
}

.who-sketch svg {
  width: min(720px, 120%);
  height: auto;
}

.who-sketch-line,
.who-sketch-faint {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-sketch-line {
  stroke: rgba(12, 12, 12, 0.34);
  stroke-width: 1.2;
}

.who-sketch-faint {
  stroke: rgba(12, 12, 12, 0.16);
  stroke-width: 1;
}

.who-architecture-image {
  position: absolute;
  left: 40px;
  bottom: 80px;
  width: clamp(480px, 42vw, 720px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 68%, transparent 100%);
  z-index: 0;
}

.who-architecture-image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.6;
}

@media (max-width: 960px) {
  .who-architecture-image {
    display: none;
  }
}

.who-layout .serve-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 44px);
  max-width: none;
  margin: 0;
}

.who-layout .serve-card {
  min-height: clamp(320px, 28vw, 430px);
  padding: clamp(32px, 4vw, 46px);
  border: 1px solid rgba(12, 12, 12, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(12, 12, 12, 0.08);
  gap: 0;
}

.who-layout .serve-card-icon {
  width: 68px;
  height: 68px;
  margin-bottom: clamp(34px, 4vw, 54px);
  border-radius: 18px;
  background: rgba(211, 47, 47, 0.08);
}

.who-layout .serve-card h3 {
  max-width: 280px;
  color: var(--black);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.serve-card-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 26px 0 30px;
  background: var(--red);
}

.who-layout .serve-card p {
  color: var(--charcoal);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.48;
}

@media (max-width: 960px) {
  .who-layout {
    grid-template-columns: 1fr;
  }

  .who-copy {
    min-height: auto;
  }

  .who-sketch {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }
}

@media (max-width: 640px) {
  .who-copy h2 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .who-layout .serve-cards {
    grid-template-columns: 1fr;
  }

  .who-layout .serve-card {
    min-height: 0;
  }
}

/* Proportion pass for the reference-style Who section */
.who-we-serve .shell {
  width: min(1120px, calc(100vw - clamp(40px, 10vw, 128px)));
}

.who-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(48px, 6.4vw, 86px);
}

.who-copy h2 {
  max-width: 460px;
  font-size: clamp(3.8rem, 5.8vw, 5.6rem);
}

.who-copy>p {
  max-width: 390px;
}

.who-layout .serve-card {
  min-height: clamp(300px, 24vw, 390px);
  padding: clamp(30px, 3.4vw, 42px);
}

.who-layout .serve-card-icon {
  margin-bottom: clamp(30px, 3.6vw, 46px);
}

@media (max-width: 960px) {
  .who-we-serve .shell {
    width: var(--shell);
  }

  .who-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .who-layout .serve-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 961px) {
  .who-copy {
    margin-top: -96px;
  }
}
