html {
  scroll-behavior: smooth;
}

.spring-review .spr-section {
  padding: clamp(56px, 8vw, 104px) 0;
}
.spring-review .spr-section--warm {
  background: var(--color-secondary-light);
}
/* The eyebrow (.subtitle) is a muted light tone that reads poorly on the warm
   tinted background — darken it to the site's near-black in those sections. */
.spring-review .spr-section--warm .subtitle {
  color: var(--color-default);
}
.spring-review .spr-intro {
  max-width: 760px;
}
.spring-review .spr-intro .content-wrap {
  margin-top: 14px;
}
.spring-review [id] {
  scroll-margin-top: 90px;
}

/* ---------- Hero: full-bleed image, fixed (parallax), content overlaid ---------- */
.spring-review .spr-hero {
  align-items: center !important;
  background-image:
    linear-gradient(
      95deg,
      rgba(26, 25, 23, 0.9) 0%,
      rgba(26, 25, 23, 0.66) 45%,
      rgba(26, 25, 23, 0.3) 100%
    ),
    url("/assets/img/foster-st-parkside.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* keeps the image fixed while content scrolls, like the home hero */
}
.spring-review .spr-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 440px);
  gap: clamp(30px, 4vw, 66px);
  align-items: center;
}
.spring-review .spr-hero__text {
  max-width: 640px;
}
.spring-review .spr-hero .subtitle {
  color: var(--color-primary);
}
.spring-review .spr-hero h1 {
  color: #fbf8f2;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.07;
  margin: 0;
}
.spring-review .spr-hero__lead {
  color: rgba(246, 241, 233, 0.92);
  font-size: clamp(16px, 1.5vw, 19px);
  margin-top: 20px;
  max-width: 48ch;
}
.spring-review .spr-hero__buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Secondary hero CTA — a hairline outline button (hairline border + hairline
   text) that inverts on hover to a hairline fill with near-black text. The theme
   ships no such variant, so it's defined here. Text colour needs !important
   because the theme sets button text with it. */
.spring-review .spr-hero .btn--tertiary {
  color: #e6dfd1 !important;
  background: transparent;
  border: 1px solid #e6dfd1;
  box-shadow: none;
}
.spring-review .spr-hero .btn--tertiary:hover,
.spring-review .spr-hero .btn--tertiary:focus {
  color: var(--color-default) !important;
  background: #e6dfd1;
  border-color: #e6dfd1;
}

.spring-review .spr-formcard {
  background: #fff;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 30px 72px rgba(18, 16, 13, 0.4);
  scroll-margin-top: 90px;
}
.spring-review .spr-formcard__sub {
  color: #6f6b62;
  font-size: 14.5px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .spring-review .spr-hero {
    min-height: auto;
    padding: clamp(90px, 14vw, 120px) 0 clamp(48px, 9vw, 72px);
    background-attachment: scroll; /* fixed backgrounds are unreliable on iOS — fall back to scroll */
    background-image:
      linear-gradient(
        180deg,
        rgba(24, 23, 21, 0.82) 0%,
        rgba(24, 23, 21, 0.6) 40%,
        rgba(24, 23, 21, 0.66) 100%
      ),
      url("/assets/img/foster-st-parkside.jpg");
  }
  .spring-review .spr-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 7vw, 40px);
  }
  .spring-review .spr-hero__text {
    max-width: none;
  }
}

/* ---------- Form (scoped; submission wired via API by the client) ---------- */
.spring-review .spr-form {
  display: grid;
  gap: 16px;
}
.spring-review .spr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spring-review .spr-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a08f72;
  margin-bottom: 7px;
}
.spring-review .spr-field input,
.spring-review .spr-field textarea,
.spring-review .spr-field .fsb-select > button {
  width: 100% !important;
  font-family: sofia-pro, Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
  color: #2f2e2b;
  background: #fff;
  border: 1px solid #e6dfd1 !important;
  padding: 12px 13px !important;
  border-radius: 0 !important;
}
.spring-review .spr-field .fsb-select {
	height: auto;
}
.spring-review .spr-field .fsb-select > button {
	height: auto !important;
}
.spring-review .spr-field .fsb-select > button::after {
	border-width: 0 1px 1px 0;
}
.spring-review .spr-field .fsb-list {
	border-radius: 0 !important;
}
/* hide arrow in legacy Edge/IE */
.spring-review .spr-field textarea {
  min-height: 92px;
  resize: vertical;
}
.spring-review .spr-field input:focus,
.spring-review .spr-field textarea:focus,
.spring-review .spr-field .fsb-select > button:focus {
  outline: 2px solid #c2ad89;
  outline-offset: 1px;
  border-color: #c2ad89;
}
.spring-review .spr-form__note {
  font-size: 12px;
  color: #6f6b62;
  opacity: 0.8;
}
@media (max-width: 520px) {
  .spring-review .spr-form__row {
    grid-template-columns: 1fr;
  }
}
.spring-review .spr-form #btnSpringReviewSubmit {
  width: 100%;
}

/* ---------- Form validation feedback ---------- */
/* Honeypot: removed from view/AT but still in the DOM for bots to fill.
   Not display:none — some bots skip hidden fields. */
.spring-review .spr-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.spring-review .spr-field.is-invalid input,
.spring-review .spr-field.is-invalid textarea,
.spring-review .spr-field.is-invalid .fsb-select > button {
  border-color: #c0392b !important;
}
.spring-review .spr-field.is-invalid input:focus,
.spring-review .spr-field.is-invalid textarea:focus {
  outline-color: #c0392b;
  border-color: #c0392b;
}
.spring-review .spr-field__error {
  display: block;
  margin-top: 6px;
  color: #c0392b;
  font-size: 12.5px;
  line-height: 1.35;
}
/* The submit handler injects plain text into the error notification. */
.spring-review .spr-form .notification--error .notification__text {
  margin: 0;
}

/* ---------- Success state (replaces the form after submit) ---------- */
.spring-review .spr-success {
  text-align: center;
  padding: clamp(10px, 2vw, 22px) 0 clamp(6px, 1.5vw, 12px);
  animation: sprSuccessIn 0.5s ease-out both;
}
.spring-review .spr-success__badge {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #4e9a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(78, 154, 107, 0.32);
  animation: sprBadgePop 0.45s cubic-bezier(0.17, 0.67, 0.35, 1.3) 0.08s both;
}
.spring-review .spr-success__badge svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spring-review .spr-success__title {
  margin: 0 0 10px;
  font-family: etherealmedium, sofia-pro, Helvetica, Arial, sans-serif;
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.12;
  color: #2e2e2c;
}
.spring-review .spr-success__text {
  margin: 0 auto;
  max-width: 40ch;
  color: #55514a;
  font-size: 15.5px;
  line-height: 1.6;
}
.spring-review .spr-success__note {
  margin: 16px auto 0;
  padding-top: 16px;
  max-width: 40ch;
  border-top: 1px solid #e6dfd1;
  color: #8a857c;
  font-size: 13px;
}
@keyframes sprSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sprBadgePop {
  0%   { opacity: 0; transform: scale(0.4); }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .spring-review .spr-success,
  .spring-review .spr-success__badge {
    animation: none;
  }
}

/* ---------- Facets (aspects, not a sequence — no numbers) ---------- */
.spring-review .spr-facets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(36px, 4vw, 58px);
}
.spring-review .spr-facets--two {
  grid-template-columns: 1fr 1fr;
}
.spring-review .spr-facet {
  border-top: 2px solid #c2ad89;
  padding-top: 20px;
}
.spring-review .spr-facet h3 {
  margin: 0 0 10px;
}
.spring-review .spr-facet .subtitle {
  margin-bottom: 10px;
}
/* Boxed variant — full hairline border (matches the 3px card border used on
   property-estimate-report, but in the tan hairline instead of grey). Scoped to
   the "What's included" and "Who this is for" grids; the FAQ keeps its top accent. */
.spring-review .spr-facets--boxed .spr-facet {
  border: 3px solid #e6dfd1;
  padding: clamp(22px, 2.2vw, 28px);
}
@media (max-width: 820px) {
  .spring-review .spr-facets {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .spring-review .spr-facets--two {
    grid-template-columns: 1fr;
  }
}

/* ---------- Image + text split ---------- */
.spring-review .spr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: stretch;
}
.spring-review .spr-split__media {
  display: flex;
  min-height: 360px;
}
.spring-review .spr-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .spring-review .spr-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .spring-review .spr-split__media {
    min-height: 240px;
  }
}

/* ---------- Checklist ---------- */
.spring-review .spr-check {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.spring-review .spr-check li {
  position: relative;
  padding-left: 28px;
}
.spring-review .spr-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1px;
  background: #b0965f;
}

/* ---------- Process (a real sequence — tan numerals, no borders) ---------- */
.spring-review .spr-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 3vw, 44px);
  margin-top: clamp(34px, 4vw, 56px);
}
.spring-review .spr-step__num {
  font-family: etherealmedium, sofia-pro, Helvetica, Arial, sans-serif;
  font-size: 44px;
  color: #c2ad89;
  line-height: 1;
}
.spring-review .spr-step h3 {
  margin: 14px 0 10px;
}
@media (max-width: 820px) {
  .spring-review .spr-process {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .spring-review .spr-process {
    grid-template-columns: 1fr;
  }
}

/* ---------- Quote + profile ---------- */
.spring-review .spr-quotewrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
/* Brenton is presented with the site's own team-profile card — the same
   `.profile-article` component used on /our-team, fully styled by the global
   chunk stylesheet (arched photo, tan markline, piped contacts). Only strip
   the list's stock outer spacing so the card sits flush inside this grid. */
.spring-review .spr-quotewrap .profile-list,
.spring-review .spr-quotewrap .profile-list .profile-article {
  margin: 0;
}
.spring-review .spr-quotewrap .profile-list .profile-article p {
  max-width: 500px;
}
@media (max-width: 1399px) {
  .spring-review .spr-quotewrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Final CTA (wide heading so it doesn't stack tall) ---------- */
.spring-review .spr-cta {
  text-align: center;
}
.spring-review .spr-cta .content-wrap {
  max-width: 56ch;
  margin: 12px auto 26px;
}

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