:root {
  --ink: #17231f;
  --ink-soft: #30403a;
  --ivory: #f5f0e7;
  --paper: #fffdf8;
  --brass: #bc8143;
  --brass-dark: #8d5a29;
  --sage: #dbe3d9;
  --line: rgba(23, 35, 31, 0.16);
  --shadow: 0 24px 70px rgba(20, 32, 28, 0.12);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(23, 35, 31, 0.96);
  backdrop-filter: blur(12px);
}

.brand img,
footer img {
  width: 156px;
  height: auto;
  filter: invert(1);
}

.header-cta {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta span {
  display: inline-block;
  margin-left: 8px;
  color: #e5b273;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translateX(4px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100svh - 76px);
  background: var(--ivory);
}

.hero-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(23, 35, 31, 0.48));
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.territory {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(54px, 8vw, 124px) clamp(28px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 750px;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}

h1 em {
  color: var(--brass-dark);
  font-style: normal;
}

h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ink);
}

.button-primary:hover {
  background: #2a3b35;
}

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #e5b273;
  outline-offset: 3px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 600;
}

.trust-line span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--brass-dark);
  font-weight: 700;
}

.hero-funnel {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 0.78fr);
  gap: clamp(40px, 6vw, 94px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(58px, 7vw, 98px) clamp(24px, 5vw, 72px);
  color: white;
  background: #101a17;
  overflow: hidden;
}

.hero-funnel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/hero-flooring.png") center / cover no-repeat;
  filter: saturate(0.62) brightness(0.46);
  transform: scale(1.02);
}

.hero-funnel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 27, 21, 0.97) 0%, rgba(10, 27, 21, 0.88) 48%, rgba(10, 27, 21, 0.62) 100%);
}

.hero-funnel .hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.hero-funnel .eyebrow {
  color: #e8b87f;
}

.hero-funnel h1 {
  max-width: 710px;
  font-size: clamp(4.2rem, 6.7vw, 7.2rem);
}

.hero-funnel h1 em {
  color: #e8b87f;
}

.hero-funnel .hero-lede {
  max-width: 650px;
  margin: 24px 0 26px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-owner-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 15px;
  align-items: center;
  max-width: 430px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-owner-card img {
  width: 76px;
  height: 88px;
  object-fit: cover;
  object-position: center 12%;
}

.hero-owner-card div {
  display: flex;
  flex-direction: column;
}

.hero-owner-card strong {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-owner-card span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-funnel .trust-line {
  color: rgba(255, 255, 255, 0.78);
}

.hero-funnel .trust-line span::before {
  color: #e8b87f;
}

.hero-form-slot {
  position: relative;
  z-index: 1;
  scroll-margin-top: 92px;
}

.hero-form-slot .form-shell {
  min-height: 600px;
  padding: clamp(24px, 3.5vw, 46px);
  color: var(--ink);
}

.estimate-section.form-moved {
  display: none;
}

.meet-steven {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(88px, 11vw, 170px) clamp(22px, 5vw, 72px);
}

.portrait-wrap {
  position: relative;
  max-width: 420px;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 52%;
  height: 56%;
  border-top: 2px solid var(--brass);
  border-left: 2px solid var(--brass);
}

.portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.82) contrast(1.03);
}

.portrait-caption {
  position: absolute;
  right: -34px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 16px 20px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.portrait-caption strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steven-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process {
  padding: clamp(76px, 9vw, 132px) clamp(22px, 6vw, 92px);
  color: white;
  background: var(--ink);
}

.process > .eyebrow,
.closing .eyebrow {
  color: #e5b273;
}

.process > h2,
.process > .eyebrow,
.process > ol {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process li {
  display: flex;
  gap: 20px;
  min-height: 162px;
  padding: 30px 26px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process li + li {
  padding-left: 26px;
}

.process li:last-child {
  border-right: 0;
}

.step-number {
  color: #e5b273;
  font-family: var(--display);
  font-size: 1.25rem;
}

.process li div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.process li strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process li div span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding: clamp(88px, 11vw, 164px) clamp(22px, 7vw, 112px);
  background: var(--ivory);
}

.estimate-intro {
  position: sticky;
  top: 116px;
}

.estimate-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0;
  color: var(--ink-soft);
}

.service-note {
  display: flex;
  flex-direction: column;
  max-width: 410px;
  margin-top: 34px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-note strong {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-note span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-shell {
  min-height: 640px;
  padding: clamp(24px, 5vw, 56px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-owner-proof {
  display: none;
}

.progress {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 46px;
}

.progress-label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.progress-track {
  flex: 1;
  height: 3px;
  overflow: hidden;
  background: var(--sage);
}

.progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--brass);
  transition: width 240ms ease;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 720px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.field-hint {
  margin: 13px 0 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 650;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-grid span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 11px;
  border: 1px solid var(--brass-dark);
  border-radius: 50%;
}

.choice-grid input:focus-visible + span {
  outline: 3px solid #e5b273;
  outline-offset: 2px;
}

.choice-grid input:checked + span {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.choice-grid input:checked + span::before {
  border: 3px solid white;
  background: var(--brass);
}

.form-step .button {
  margin-top: 28px;
}

.form-step.is-active {
  animation: form-step-in 220ms ease both;
}

.js-auto-advance .form-step[data-step="1"] .next-step,
.js-auto-advance .form-step[data-step="2"] .next-step {
  display: none;
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-actions {
  display: flex;
  gap: 10px;
}

.form-actions .button-primary {
  flex: 1;
}

.text-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.text-field > span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-field small {
  color: #6a756f;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.text-field input,
.text-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9ca59f;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.text-field input {
  min-height: 48px;
}

.text-field textarea {
  padding: 12px 0;
  resize: vertical;
}

.text-field input::placeholder,
.text-field textarea::placeholder {
  color: #8b948f;
}

.project-field {
  margin-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 20px;
}

.zip-field {
  max-width: 200px;
}

.consent-disclosure {
  margin: 12px 0 0;
  color: #53605a;
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-disclosure a {
  color: inherit;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.step-error {
  min-height: 21px;
  margin: 12px 0 0;
  color: #a12e24;
  font-size: 0.78rem;
  font-weight: 650;
}

.form-fineprint {
  margin: 14px 0 0;
  color: #68736e;
  font-size: 0.72rem;
  text-align: center;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.calendar-panel > p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--ink-soft);
}

.calendar-panel iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  background: white;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 620px;
  color: white;
  background: var(--ink);
}

.closing > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.closing > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(52px, 8vw, 110px);
}

.text-link {
  margin-top: 32px;
  color: #f5d09d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 9px;
}

footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(22px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.7);
  background: #101a17;
  font-size: 0.75rem;
}

footer p {
  margin: 0;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer a {
  text-underline-offset: 3px;
}

.sticky-cta {
  display: none;
}

.privacy-page {
  max-width: 860px;
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 24px;
}

.privacy-page h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

.privacy-page h2 {
  margin-top: 42px;
  font-size: 1.8rem;
}

.privacy-page p,
.privacy-page li {
  color: var(--ink-soft);
}

.booking-page {
  background: var(--ivory);
}

.booking-main {
  padding: clamp(54px, 8vw, 108px) clamp(14px, 6vw, 90px);
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 48px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 42px;
}

.booking-heading h1 {
  font-size: clamp(3.2rem, 7vw, 6.3rem);
}

.booking-heading > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.booking-heading figure {
  margin: 0;
}

.booking-heading figure img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(1.03);
}

.booking-heading figcaption {
  display: flex;
  flex-direction: column;
  padding: 13px 15px;
  color: white;
  background: var(--ink);
}

.booking-heading figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-heading figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(12px, 3vw, 24px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-instruction {
  margin-bottom: 15px;
  padding: 15px 18px;
  border-left: 3px solid var(--brass);
  color: var(--ink-soft);
  background: #f2eadf;
  font-size: 0.87rem;
}

.booking-shell iframe {
  display: block;
  width: 100%;
  min-height: 690px;
  border: 0;
  background: white;
}

.missing-lead {
  padding: 48px 24px;
  text-align: center;
}

.missing-lead h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.missing-lead p {
  color: var(--ink-soft);
}

.booking-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 980px;
  margin: 16px auto 0;
}

.booking-proof span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero,
  .meet-steven,
  .estimate-section,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 48svh;
    order: 2;
  }

  .hero-copy {
    min-height: 620px;
    order: 1;
  }

  .meet-steven {
    gap: 70px;
  }

  .portrait-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .estimate-intro {
    position: static;
  }

  .closing > img {
    min-height: 480px;
  }

  .hero-funnel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 68px 22px 54px;
  }

  .hero-funnel .hero-copy {
    min-height: 0;
    padding: 0;
    order: 1;
  }

  .hero-funnel .hero-form-slot {
    min-width: 0;
    order: 2;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    font-size: 0.7rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 66px 22px 58px;
  }

  h1 {
    font-size: clamp(3.2rem, 13.5vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-lede {
    margin: 23px 0 27px;
    font-size: 0.98rem;
  }

  .hero-photo {
    min-height: 390px;
  }

  .hero-funnel {
    padding: 36px 14px 32px;
  }

  .hero-funnel .hero-copy {
    padding: 0 8px;
  }

  .hero-funnel h1 {
    font-size: clamp(3.2rem, 13.5vw, 4.5rem);
  }

  .hero-owner-card {
    grid-template-columns: 66px 1fr;
  }

  .hero-owner-card img {
    width: 66px;
    height: 76px;
  }

  .hero-form-slot .form-shell {
    min-height: 550px;
  }

  .hero-copy .hero-owner-card,
  .hero-funnel .trust-line {
    display: none;
  }

  .mobile-owner-proof {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 11px;
    align-items: center;
    margin: -8px -2px 24px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-owner-proof img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 16%;
  }

  .mobile-owner-proof div {
    display: flex;
    flex-direction: column;
  }

  .mobile-owner-proof strong {
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .mobile-owner-proof span {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.67rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-owner-proof b {
    color: var(--brass-dark);
    font-family: var(--display);
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }

  .meet-steven {
    padding: 105px 22px 88px;
  }

  .portrait-caption {
    right: -8px;
    bottom: -30px;
  }

  .process {
    padding: 80px 22px;
  }

  .process ol {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .process li,
  .process li + li {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process li:last-child {
    border-bottom: 0;
  }

  .estimate-section {
    gap: 38px;
    padding: 82px 14px;
  }

  .estimate-intro {
    padding: 0 8px;
  }

  .form-shell {
    min-height: 590px;
    padding: 28px 18px;
  }

  .choice-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid span {
    min-height: 55px;
  }

  .zip-field {
    max-width: none;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions .button-secondary {
    padding-right: 14px;
    padding-left: 14px;
  }

  .calendar-panel iframe {
    min-height: 900px;
  }

  .closing > img {
    min-height: 410px;
  }

  .closing > div {
    padding: 70px 22px 84px;
  }

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

  .sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(23, 35, 31, 0.97);
    backdrop-filter: blur(12px);
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 52px;
    color: var(--ink);
    background: #e5b273;
  }

  .sticky-cta.is-hidden {
    display: none;
  }

  .booking-main {
    padding: 50px 0 72px;
  }

  .booking-heading {
    grid-template-columns: 1fr 110px;
    gap: 16px;
    padding: 0 18px;
  }

  .booking-heading h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .booking-heading figure img {
    height: 160px;
  }

  .booking-heading figcaption {
    padding: 9px;
  }

  .booking-heading figcaption strong {
    font-size: 0.95rem;
  }

  .booking-heading figcaption span {
    display: none;
  }

  .booking-shell {
    padding: 0;
    box-shadow: none;
  }

  .booking-instruction {
    margin: 0 14px 12px;
  }

  .booking-shell iframe {
    min-height: 920px;
  }

  .booking-proof {
    grid-template-columns: 1fr;
    margin: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
