:root {
  --mist: #eef0eb;
  --paper: #f7f3ea;
  --paper-deep: #e5dfd2;
  --sandstone: #c0a66d;
  --brick: #783c32;
  --moss: #3f4a40;
  --ink: #1f2421;
  --soft-ink: #5d625d;
  --line: rgba(31, 36, 33, 0.18);
  --white: #fffdf7;
  --hero-panel: rgba(247, 243, 234, 0.86);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(31, 36, 33, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 36, 33, 0.1) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

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

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

h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition: background 360ms cubic-bezier(0.16, 1, 0.3, 1), color 360ms cubic-bezier(0.16, 1, 0.3, 1), padding 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  padding-block: 16px;
  color: var(--ink);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.nav-cta-link,
.button,
.eyebrow,
.section-label,
.intro-kicker,
.panel-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  justify-self: center;
}

.nav-cta-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.nav-spacer {
  width: 1px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("https://commons.wikimedia.org/wiki/Special:FilePath/17%E2%80%9321%2C%20High%20Street%2C%20Tarporley.jpg?width=2400");
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(0.98) brightness(1.12);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96) 0%, var(--hero-panel) 42%, rgba(247, 243, 234, 0.4) 72%),
    linear-gradient(180deg, rgba(247, 243, 234, 0.88) 0%, rgba(247, 243, 234, 0.3) 52%, rgba(247, 243, 234, 0.76) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(34px, 7vw, 112px);
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(112px, 11vw, 172px) clamp(22px, 6vw, 96px) clamp(44px, 6vw, 86px);
}

.hero-copy {
  max-width: min(1120px, 76vw);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--brick);
}

.hero-title {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 156px);
  font-weight: 400;
  line-height: 1.04;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--soft-ink);
  font-size: clamp(19px, 1.75vw, 25px);
}

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

.hero-direct-line {
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.45vw, 22px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid rgba(31, 36, 33, 0.32);
  border-radius: 4px;
  transition: background 220ms ease, color 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  background: rgba(31, 36, 33, 0.06);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

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

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

.button.ghost {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.46);
}

.hero-panel {
  display: grid;
  gap: 20px;
  padding: 0;
  color: var(--soft-ink);
}

.hero-trust-panel {
  align-self: end;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(31, 36, 33, 0.14);
}

.hero-trust-item {
  display: grid;
  gap: 10px;
  min-height: 156px;
  padding: 18px;
  background: rgba(247, 243, 234, 0.9);
}

.hero-trust-item span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 22px;
}

.hero-trust-item strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.02;
}

.hero-trust-item p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: clamp(82px, 11vw, 150px) clamp(20px, 5vw, 68px);
}

.situation-card span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 24px;
}

.intro,
.local-feature,
.places,
.process,
.valuation {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) minmax(0, 1.65fr);
  gap: clamp(36px, 8vw, 128px);
  padding-top: clamp(74px, 8vw, 116px);
}

.intro-kicker,
.section-label,
.panel-kicker {
  color: var(--brick);
}

.intro-copy h2,
.section-heading h2,
.feature-copy h2,
.process-title h2,
.valuation-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

.intro-copy p,
.valuation-copy p {
  max-width: 720px;
  margin: 28px 0 0 auto;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.6vw, 22px);
}

.intro-copy {
  display: grid;
  gap: 28px;
}

.intro-offers {
  display: grid;
  gap: 16px;
}

.intro-offers p {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 2.85vw, 56px);
  line-height: 1;
  white-space: nowrap;
}

.offer-qualifiers {
  display: grid;
  gap: 12px;
  max-width: 760px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.offer-qualifiers p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 7vw, 118px);
  width: min(100%, 1480px);
  margin: 0 auto;
  padding-top: 0;
}

.faq .section-heading h2 {
  display: none;
}

.faq .section-heading {
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.faq-item {
  padding: 0;
  background: #f8f4eb;
}

.faq-item summary {
  position: relative;
  padding: 24px 56px 24px 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--brick);
  content: "+";
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 820px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.65;
}

.local-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.76fr);
  align-items: end;
  gap: clamp(34px, 7vw, 106px);
  padding-top: 0;
}

.feature-photo {
  min-height: clamp(420px, 56vw, 720px);
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.82) contrast(0.98);
}

.feature-copy {
  padding-bottom: clamp(8px, 5vw, 80px);
}

.feature-copy h2 {
  margin-top: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.16;
}

.reason-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.reason-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
}

.situations {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding-top: 14px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 80px);
  background: var(--line);
}

.situation-card {
  display: grid;
  gap: 16px;
  min-height: 250px;
  padding: clamp(28px, 3vw, 40px);
  background: #f8f4eb;
}

.situation-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.situation-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: start;
}

.place-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 1px;
  margin-top: clamp(48px, 7vw, 96px);
  background: var(--line);
}

.place {
  min-height: 280px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--paper);
}

.place:hover {
  background: #f6f0e5;
}

.place-large {
  grid-row: span 2;
}

.place-wide {}

.place-deep {
  background: var(--paper-deep);
}

.place-soft {
  background: #f2ece1;
}

.place-paper {
  background: #fbf7ef;
}

.place span,
.step span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 28px;
}

.place h3,
.step h3 {
  margin: 46px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.place p,
.step p {
  max-width: 390px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.place-link-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-link-line::after {
  content: "→";
  font-size: 15px;
}

#situations {
  scroll-margin-top: 118px;
}

.process {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 136px);
  background: var(--mist);
}

.process-title {
  position: sticky;
  top: 118px;
  align-self: start;
}

.process-title h2 {
  margin-top: 22px;
  max-width: 12ch;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.08;
}

.process-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.step {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: clamp(18px, 4vw, 62px);
  padding: clamp(34px, 5vw, 66px) 0;
  background: var(--mist);
}

.step h3 {
  margin-top: 0;
}

.valuation {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.86fr);
  gap: clamp(36px, 8vw, 122px);
  border-top: 1px solid var(--line);
}

.valuation-copy h2 {
  margin-top: 22px;
  max-width: 10ch;
  line-height: 1.12;
}

.valuation-copy p {
  margin-left: 0;
  font-size: 19px;
}

.valuation-callout {
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 18px;
}

.valuation-callout a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.valuation-notes {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 28px 0 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  list-style: none;
}

.valuation-notes li {
  padding-left: 0;
}

.valuation-legal {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.6;
}

.valuation-form {
  display: grid;
  gap: 16px;
  align-self: start;
}

.valuation-form label {
  display: grid;
  gap: 8px;
}

.valuation-form label span {
  color: var(--brick);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-sharing {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.5;
}

.form-sharing a,
.consent-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding-top: 0;
  cursor: pointer;
}

.consent-check input {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  accent-color: var(--brick);
}

.consent-check span {
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.field-message {
  min-height: 18px;
  margin: -2px 0 0;
  color: #8f2d24;
  font-size: 13px;
  line-height: 1.4;
}

.field-message.is-optional {
  color: var(--soft-ink);
}

.valuation-form input,
.valuation-form select,
.valuation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 15px 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  resize: vertical;
  transition: border-color 220ms ease, background 220ms ease;
}

.valuation-form input:focus,
.valuation-form select:focus,
.valuation-form textarea:focus {
  border-color: var(--brick);
}

.valuation-form .is-invalid {
  border-color: #a83328;
  background: rgba(168, 51, 40, 0.06);
}

.valuation-form button {
  margin-top: 14px;
  min-height: 56px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}

.valuation-form button:hover {
  background: var(--moss);
}

.valuation-form button:active {
  transform: translateY(1px) scale(0.99);
}

.form-next-step {
  margin: 2px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.5;
}

.form-status {
  margin: 6px 0 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.14;
}

.form-note {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.55;
}

.form-status.is-error {
  color: #8f2d24;
}

.form-status.is-success {
  color: var(--brick);
}

.valuation-form.is-submitted .form-status {
  padding-top: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 68px);
  color: var(--soft-ink);
  background: #eee8dc;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(170px, 0.8fr) minmax(210px, 0.9fr) minmax(190px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(100%, 1480px);
  margin: 0 auto;
  align-items: start;
}

.footer-brand,
.footer-office,
.footer-contact,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-brand strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.footer-legal-line {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.6;
}

.footer-inner span {
  color: var(--brick);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
}

.footer-office {
  font-style: normal;
}

.footer-contact a,
.footer-links a {
  padding-bottom: 3px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  line-height: 2;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: grid;
  gap: 14px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.97);
  box-shadow: 0 18px 40px rgba(31, 36, 33, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-banner p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner button {
  justify-self: start;
  min-height: 44px;
  border: 1px solid var(--ink);
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-action-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(31, 36, 33, 0.16);
}

.mobile-action-bar a:first-child {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.96);
}

#property-address {
  scroll-margin-top: 112px;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 144px clamp(20px, 5vw, 68px) 96px;
}

.legal-header {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 80px);
  font-weight: 400;
  line-height: 1.04;
}

.legal-header p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 19px;
  line-height: 1.65;
}

.legal-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.legal-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

.legal-section {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.7;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #f3ede2;
}

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

.local-benefit-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 22px;
  background: #f8f4eb;
}

.local-benefit-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.02;
}

.local-benefit-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.55;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 740ms cubic-bezier(0.16, 1, 0.3, 1), transform 740ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-copy {
    max-width: min(930px, 100%);
  }

  .hero-title {
    font-size: clamp(58px, 7.8vw, 92px);
    line-height: 0.94;
  }

  .hero-panel {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .nav-spacer {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-grid,
  .intro,
  .local-feature,
  .section-heading,
  .process,
  .valuation,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.94) 0%, rgba(247, 243, 234, 0.68) 46%, rgba(247, 243, 234, 0.9) 100%),
      linear-gradient(90deg, rgba(247, 243, 234, 0.62), rgba(247, 243, 234, 0.24));
  }

  .hero-panel {
    max-width: 560px;
  }

  #situations {
    scroll-margin-top: 106px;
  }

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

  .hero-title {
    font-size: clamp(58px, 11vw, 108px);
  }

  .intro-offers p,
  .valuation-copy p {
    margin-left: 0;
  }

  .intro-offers p {
    white-space: normal;
  }

  .offer-qualifiers {
    max-width: none;
  }

  .faq {
    gap: 28px;
  }

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

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

  .place-large,
  .place-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .process-title {
    position: static;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 18px;
  }

  .brand span:last-child,
  .nav-cta-link {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-grid {
    padding: 100px 20px 28px;
  }

  .hero-title {
    font-size: clamp(46px, 15.2vw, 72px);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  #property-address {
    scroll-margin-top: 86px;
  }

  #situations {
    scroll-margin-top: 90px;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    display: grid;
    max-width: none;
  }

  .hero-trust-item {
    min-height: auto;
    padding: 16px;
  }

  .hero-trust-item strong {
    font-size: 24px;
  }

  .hero-trust-item p {
    font-size: 14px;
  }

  .section {
    padding: 72px 20px;
  }

  .intro-copy h2,
  .section-heading h2,
  .feature-copy h2,
  .process-title h2,
  .valuation-copy h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .intro-offers p {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
    white-space: normal;
  }

  .feature-photo {
    min-height: 360px;
  }

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

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

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 22px 50px 22px 20px;
    font-size: 28px;
  }

  .faq-item p {
    padding: 0 20px 22px;
    font-size: 16px;
  }

  .place {
    min-height: auto;
  }

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

  .valuation {
    gap: 28px;
  }

  .valuation-copy p {
    font-size: 18px;
    line-height: 1.58;
  }

  .valuation-form {
    gap: 14px;
  }

  .form-sharing,
  .consent-check span,
  .form-next-step,
  .form-note {
    font-size: 14px;
  }

  .consent-check {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
  }

  .consent-check input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-top: 2px;
    transform: scale(1.18);
    transform-origin: top left;
  }

  .form-status {
    font-size: clamp(22px, 7vw, 30px);
  }

  .site-footer {
    padding-block: 44px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 88px;
    max-width: none;
  }

  .mobile-action-bar {
    display: grid;
  }

  .legal-shell {
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .local-benefit-grid article {
    min-height: auto;
    padding: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand strong {
    font-size: 38px;
  }
}
