/* Sagegrove Garden Care — site stylesheet
   Tokens and rules follow the design handoff README and the brand book:
   one typeface (Spectral), border-radius 0 everywhere, no shadows. */

:root {
  --forest: #2F5D45;
  --forest-dark: #244A37;
  --salvia: #7A6AA3;
  --salvia-light: #B7A6DE;
  --linen: #EFEBE0;
  --linen-bright: #FBF8F1;
  --linen-dark: #E5E0D2;
  --strip: #E9E4D6;
  --ink: #23301F;
  --muted: #55604F;
  --faint: #8B927F;
  --cream: #DDD8C8;
  --sage-grey: #A9B3A1;
  --disabled: #C8C6BA;

  --hair-12: rgba(47, 93, 69, 0.12);
  --hair-16: rgba(47, 93, 69, 0.16);
  --hair-18: rgba(47, 93, 69, 0.18);
  --hair-22: rgba(47, 93, 69, 0.22);
  --hair-28: rgba(47, 93, 69, 0.28);
  --hair-35: rgba(47, 93, 69, 0.35);

  --font: Spectral, Georgia, serif;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

/* The prototype sized these as content-box: their max-width is the text column
   itself, with the section padding on top. */
.intro, .result__est, .trust, .change, .ask { box-sizing: content-box; }

html { -webkit-text-size-adjust: 100%; }

/* The design was reviewed at an effective width of ~1580px; on wider monitors
   the prototype viewer scaled the page rather than stretching it. Do the same. */
@media (min-width: 1600px) {
  html { zoom: 1.2; }
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  min-height: 100vh;
}

h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--salvia); }

button {
  font-family: var(--font);
  border-radius: 0;
}

input, textarea {
  font-family: var(--font);
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: var(--faint); }

:focus-visible {
  outline: 2px solid var(--salvia);
  outline-offset: 2px;
}

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

[hidden] { display: none !important; }

.photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--32 { aspect-ratio: 3 / 2; }
.photo--43 { aspect-ratio: 4 / 3; }

/* ---------- Shared pieces ---------- */

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-link:hover { text-decoration: underline; }
.nav-current {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--linen);
  border: 0;
  padding: 17px 28px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 48px;
  cursor: pointer;
}
.btn:hover { background: var(--forest-dark); color: var(--linen); }

.btn--linen {
  background: var(--linen);
  color: var(--ink);
}
.btn--linen:hover { background: var(--linen-bright); color: var(--ink); }

.btn--wide { padding: 17px 30px; }

.btn:disabled,
.btn[disabled] {
  background: var(--disabled);
  color: var(--faint);
  cursor: default;
}

.link-plain {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.link-back {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--salvia);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rule { width: 64px; height: 1px; background: var(--salvia); }

.nowrap { white-space: nowrap; }

/* Wide / narrow switches. CSS only — never JS. */
@media (max-width: 639px) {
  [data-w="wide"] { display: none !important; }
  body { padding-bottom: 52px; }
}
@media (min-width: 640px) {
  [data-w="narrow"] { display: none !important; }
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 5vw;
  border-bottom: 1px solid var(--hair-18);
}

.lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.lockup:hover { color: inherit; }
.lockup svg { flex: none; }
.lockup__text { display: flex; flex-direction: column; gap: 3px; }
.lockup__name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
.lockup__sub { display: flex; align-items: center; gap: 8px; }
.lockup__rule { width: 18px; height: 1px; background: var(--salvia); }
.lockup__care {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--linen);
  padding: 13px 20px;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-height: 44px;
}
.call-btn:hover { background: var(--forest-dark); color: var(--linen); }
.call-btn__eyebrow {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--salvia-light);
}

/* ---------- Area & season strip ---------- */

.strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding: 13px 5vw;
  border-bottom: 1px solid var(--hair-18);
  background: var(--strip);
}
.strip__area {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}
.strip__season {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Home: hero ---------- */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 5vw;
  align-items: center;
  padding: 7vw 5vw;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 560px;
}
.hero__title {
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 440px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

/* ---------- Home: how it goes (three columns) ---------- */

.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--hair-18);
  border-bottom: 1px solid var(--hair-18);
}
.how__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 5vw;
  border-right: 1px solid var(--hair-18);
}
.how__item:last-child { border-right: 0; }
.how__head { display: flex; align-items: baseline; gap: 12px; }
.how__num {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--faint);
}
.how__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}
.how__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Home: what we do ---------- */

.services {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 7vw 5vw;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.section-head__title {
  font-size: clamp(28px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.section-head__link {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 34px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card__title { font-size: 22px; font-weight: 500; }
.card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.card__price {
  padding-top: 14px;
  border-top: 1px solid var(--hair-18);
  font-size: 16px;
}
strong { font-weight: 600; }

/* ---------- Home: who we are ---------- */

.us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5vw;
  align-items: end;
  padding: 0 5vw 7vw;
}
.us__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 440px;
  padding-bottom: 6px;
}
.h2 {
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.lead-muted {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------- Home: reviews ---------- */

.reviews {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 5vw 7vw;
}
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.reviews__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.reviews__note {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid rgba(122, 106, 163, 0.45);
  padding: 4px 0 4px 22px;
}
.quote p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.quote footer {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- Home: where we work ---------- */

.area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5vw;
  align-items: start;
  padding: 0 5vw 7vw;
}
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 420px;
  border: 1px solid var(--forest);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.area__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ring {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ring__head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--forest);
}
.dot {
  flex: none;
  width: 11px;
  height: 11px;
  border: 2px solid var(--forest);
  border-radius: 50%;
}
.dot--near { background: var(--forest); }
.dot--far { background: var(--linen); }
.ring__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.ring__towns .sep { color: var(--salvia); }

/* ---------- Home: wide band ---------- */

.band {
  position: relative;
  width: 100%;
  aspect-ratio: 24 / 10;
  min-height: 220px;
  max-height: 62vh;
  overflow: hidden;
}
.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact (Forest section) ---------- */

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5vw;
  align-items: start;
  background: var(--forest);
  color: var(--linen);
  padding: 7vw 5vw;
}
.contact__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 480px;
}
.contact__title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.on-forest {
  font-size: 19px;
  line-height: 1.6;
  color: var(--cream);
}
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 440px;
}
.contact__phone {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--linen);
  text-decoration: none;
}
.contact__phone:hover { color: var(--salvia-light); }
.contact__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.contact__email {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--salvia-light);
}
.contact__email:hover { color: var(--linen-bright); }
.contact__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}

/* Prices page CTA */
.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: var(--forest);
  color: var(--linen);
  padding: 7vw 5vw;
}
.cta__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 620px;
}
.cta__text { max-width: 480px; }
.cta__text a { color: var(--salvia-light); }
.cta__text a:hover { color: var(--linen-bright); }
.cta__link {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--salvia-light);
}
.cta__link:hover { color: var(--linen-bright); }

/* ---------- Mobile call bar (CSS-only visibility) ---------- */

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  border-top: 1px solid rgba(239, 235, 224, 0.3);
}
.callbar a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--linen);
  padding: 16px 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 52px;
}
.callbar__call { background: var(--forest); }
.callbar__wa {
  background: var(--forest-dark);
  border-left: 1px solid rgba(239, 235, 224, 0.22);
}
.callbar a:hover { color: var(--linen-bright); }

/* ---------- Scroll hint ---------- */

@keyframes sg-hint {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}
.hint {
  position: fixed;
  left: 50%;
  bottom: 84px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 420ms ease;
  opacity: 1;
}
.hint.is-gone { opacity: 0; }
.hint__line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(47, 93, 69, 0), var(--forest));
  animation: sg-hint 2.4s ease-in-out infinite;
}
.hint svg { animation: sg-hint 2.4s ease-in-out infinite; }

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px;
  padding: 46px 5vw;
  border-top: 1px solid var(--hair-18);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__name { font-size: 19px; font-weight: 500; }
.footer__contact {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.footer__legal {
  font-size: 13px;
  line-height: 1.6;
  color: var(--faint);
  max-width: 320px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Prices: intro ---------- */

.intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 6vw 5vw 3vw;
  max-width: 700px;
}
.intro__title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.intro__list {
  padding-top: 4px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  text-wrap: pretty;
}

/* ---------- Prices: estimate tool ---------- */

.tool {
  margin: 0 5vw 7vw;
  border: 1px solid var(--hair-35);
}

.tool__progress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 22px 34px;
  border-bottom: 1px solid var(--hair-22);
}
.progress--wide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.progress__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.progress__label {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 300;
  text-decoration: none;
  text-decoration-color: var(--salvia);
  text-underline-offset: 5px;
}
.progress__label.is-done {
  color: var(--muted);
  font-weight: 400;
  text-decoration: underline;
}
.progress__label.is-current {
  color: var(--forest);
  font-weight: 500;
}
.progress__dot { font-size: 12px; color: var(--faint); }
.progress--narrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.progress__count {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.progress__word {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--forest);
}

.step { display: none; }
.step.is-active {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 34px;
}
.step--2.is-active { gap: 24px; }
.step--3.is-active, .step--4.is-active { gap: 36px; }

.step__q {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.step__q--narrow { max-width: 620px; }
.step__q--small {
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.step__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step__sub {
  font-size: 17px;
  color: var(--muted);
}
.step__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.hint-text {
  font-size: 15px;
  color: var(--faint);
}

/* Choice buttons: unselected Linen fill, Forest border, Ink text.
   Selected Forest fill, Linen text. Hover moves the border to Salvia. */
.choice {
  border: 1px solid var(--forest);
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font);
  cursor: pointer;
  min-height: 48px;
  text-align: left;
}
.choice:hover { border-color: var(--salvia); }
.choice.is-selected {
  background: var(--forest);
  color: var(--linen);
}
.choice__label {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.choice__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}
.choice.is-selected .choice__sub { color: var(--cream); }

.choice--card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
}
.choice--pill {
  padding: 15px 22px;
  font-size: 17px;
}
.choice--small {
  padding: 14px 20px;
  font-size: 17px;
}
.choice--opt {
  padding: 14px 18px;
  font-size: 17px;
  line-height: 1.45;
}
.choice--tall {
  padding: 16px 18px;
  font-size: 17px;
  line-height: 1.45;
}
.choice--when {
  padding: 11px 15px;
  font-size: 15px;
  min-height: 44px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 720px;
}
.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.opt-grid--250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.opt-grid--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.opt-grid--230 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pills--tight { gap: 10px; }
.pills--when { gap: 8px; }

.sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 22px;
  border-left: 1px solid var(--forest);
  max-width: 720px;
}
.sub[hidden] { display: none; }

.block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}
.block--620 { max-width: 620px; gap: 18px; }

/* Step 2: task list */
.tasks {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}
.task {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hair-22);
}
.task:last-child { border-bottom: 1px solid var(--hair-22); }
.task__toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}
.box {
  flex: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--forest);
  background: transparent;
}
.task.is-checked .box { background: var(--forest); }
.task__toggle:hover .box { border-color: var(--salvia); }
.task__name {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
}
.task__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 34px;
  padding-left: 22px;
  border-left: 1px solid var(--forest);
}
.task__body--loose { gap: 22px; }
.task__body--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}
.task__body[hidden] { display: none; }
.q { font-size: 17px; color: var(--ink); }
.field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.field-group--10 { gap: 10px; }
.num-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}
.num-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.num {
  width: 74px;
  border: 0;
  border-bottom: 1px solid var(--forest);
  background: transparent;
  font-family: var(--font);
  font-size: 20px;
  color: var(--ink);
  padding: 8px 2px;
  text-align: center;
  outline: none;
}
.num:focus { border-bottom-color: var(--salvia); }
.note {
  font-size: 15px;
  color: var(--faint);
}
.note--lh { line-height: 1.55; }
.textarea {
  width: 100%;
  max-width: 560px;
  border: 0;
  border-bottom: 1px solid var(--forest);
  background: transparent;
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  padding: 10px 2px;
  resize: vertical;
  outline: none;
}
.textarea:focus { border-bottom-color: var(--salvia); }

/* Step 4 */
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field--postcode { max-width: 260px; }
.input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--forest);
  background: transparent;
  font-family: var(--font);
  font-size: 19px;
  color: var(--ink);
  padding: 10px 2px;
  outline: none;
}
.input:focus { border-bottom-color: var(--salvia); }
.input--postcode {
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  border: 1px dashed var(--forest);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
  min-height: 48px;
}
.upload:hover { border-color: var(--salvia); color: var(--salvia); }
.upload input { display: none; }

/* Result */
.result { display: none; }
.result.is-active {
  display: flex;
  flex-direction: column;
}
.result__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--forest);
  color: var(--linen);
  padding: 44px 34px;
}
.result__caption {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--salvia-light);
}
.result__figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.result__figure[hidden] { display: none; }
.result__kind {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
}
.result__price,
.result__headline {
  font-size: clamp(32px, 6.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.result__headline { max-width: 720px; }
.result__headline[hidden] { display: none; }
.result__lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  padding-top: 8px;
}
.result__lines p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--cream);
}
.result__change {
  align-self: flex-start;
  margin-top: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--salvia-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.result__forget {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
}
.result__forget:hover { color: var(--salvia-light); }

.result__est {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 34px 0;
  max-width: 780px;
}
.result__est h2 {
  font-size: clamp(21px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 34px;
  padding: 30px 34px 6px;
  max-width: 780px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
.trust__text--ink { color: var(--ink); }

.change {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 34px;
  max-width: 780px;
}
.change__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--hair-22);
  border-bottom: 1px solid var(--hair-22);
  background: transparent;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  min-height: 48px;
}
.change__sign {
  font-size: 22px;
  font-weight: 300;
  color: var(--salvia);
  line-height: 1;
}
.change__label {
  font-size: 19px;
  color: var(--ink);
}
.change__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.change__list[hidden] { display: none; }
.change__list li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.ask {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 34px 34px;
  max-width: 780px;
}
.ask__box {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border: 1px solid var(--hair-28);
  padding: 30px;
}
.ask__title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.ask__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.ask__grid .field { gap: 8px; }
.ask__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.ask__note {
  font-size: 15px;
  color: var(--muted);
}
.ask__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ask__status {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.ask__thanks {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}
.ask__privacy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--faint);
}
.ask__alt {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--salvia);
}

.tool__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 18px 34px;
  border-top: 1px solid var(--hair-22);
  font-size: 15px;
  color: var(--muted);
}
.tool__foot[hidden] { display: none; }
.tool__progress[hidden] { display: none; }

/* ---------- Prices: rates ---------- */

.rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4vw 5vw;
  align-items: start;
  padding: 0 5vw 6vw;
}
.rates__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
}
.rates__title {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.rate-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair-22);
  max-width: 460px;
  width: 100%;
}
.rate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hair-12);
  font-size: 17px;
}
.rate--tight { padding: 14px 24px; }
.rate--open { border-bottom: 0; }
.rate strong {
  font-weight: 600;
  font-size: 20px;
}
.rate strong.rate__small { font-size: 17px; }
.rate__group {
  padding: 18px 24px 12px;
  border-bottom: 1px solid var(--hair-12);
}
.rate-card__note {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--hair-16);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Prices: service list ---------- */

.svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4vw 5vw;
  padding: 0 5vw 6vw;
}
.svc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc__title {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair-22);
  font-size: 22px;
  font-weight: 500;
}
.svc__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.birds {
  padding: 14px 16px;
  background: rgba(122, 106, 163, 0.1);
  border-left: 2px solid var(--salvia);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

/* ---------- Prices: from your call ---------- */

.process {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 5vw 6vw;
}
.h2-section {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 34px 5vw;
}
.process__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hair-22);
}
.process__num {
  font-size: 34px;
  font-weight: 300;
  color: var(--salvia);
  line-height: 1;
}
.process__title {
  font-size: 20px;
  font-weight: 500;
}
.process__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Prices: statement line ---------- */

.line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 5vw 7vw;
}
.line p {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 900px;
  text-wrap: pretty;
}

/* ---------- Prices: what we don't do ---------- */

.dont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px 5vw;
  align-items: start;
  background: var(--linen-dark);
  padding: 40px 5vw 44px;
  margin: 0 0 6vw;
}
.dont__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
}
.dont__title { font-size: 22px; font-weight: 500; }
.dont__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.dont__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px 4vw;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Prices: good to know ---------- */

.good {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 5vw 6vw;
  padding: 40px 0 0;
  border-top: 1px solid var(--hair-22);
}
.good__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px 5vw;
}
.good__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.good__text {
  font-size: 17px;
  line-height: 1.55;
}
