/* MAW Enterprise — site styles
   Palette and type from the approved "two doors" artboards. */

/* Self-hosted, latin-subset fonts (Google Fonts builds). */
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url('/fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces'; font-style: italic; font-weight: 300; font-display: swap;
  src: url('/fonts/fraunces-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Franklin'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url('/fonts/libre-franklin-latin.woff2') format('woff2');
}

:root {
  --paper: #FBF8F3;
  --ink: #17352B;
  --clay: #A14A28;
  --clay-dark: #7E3A1F;
  --slate: #55605A;
  --panel: #1E4034;
  --copper: #D89A73;
  --copper-light: #E7A87F;
  --cream: #F4F1EA;
  --white: #FFFFFF;

  --text-mid: #435049;
  --grey: #6B736E;          /* artboard #8A9188, darkened for 4.5:1 on paper */
  --line: #E4DDD1;
  --line-soft: #F0EAE0;
  --line-warm: #E0D8CA;
  --btn-border: #7C847F;     /* 3.6:1 on paper for rules and outline borders */
  --portrait-bg: #2B3431;

  --mint: #BFCCC3;
  --mint-light: #E4EAE5;
  --sage: #98AC9F;          /* artboard #92A79B, nudged for 4.5:1 on the panel */
  --sage-dark: #8FA396;     /* artboard #6C8578, lightened for 4.5:1 on ink */
  --green-line: #244A3D;
  --green-line-2: #2C5346;
  --green-line-3: #3A5B4C;

  --serif: Fraunces, Georgia, serif;
  --sans: 'Libre Franklin', system-ui, sans-serif;

  --gutter: clamp(16px, 5.5vw, 80px);
  --max: 1440px;
  --radius: 8px;
  --pill: 999px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 300; letter-spacing: -0.015em; }
p { margin: 0; }
a { color: var(--clay); text-decoration: none; }
a:hover { color: var(--clay-dark); }
strong { font-weight: 600; }
.num { font-variant-numeric: tabular-nums; }
ol, ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}
.dark :focus-visible { outline-color: var(--copper-light); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

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

/* ---- page frame ---- */
.frame { max-width: var(--max); margin: 0 auto; }
.pad { padding-left: var(--gutter); padding-right: var(--gutter); }

body.dark { background: var(--ink); color: var(--cream); }
.dark a { color: var(--copper); }
.dark a:hover { color: var(--copper-light); }

/* ---- header ---- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px 24px;
  padding: 30px var(--gutter);
}
.dark .site-header { border-bottom: 1px solid var(--green-line); }
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); font-family: var(--serif); font-size: 26px; font-weight: 500;
}
.brand:hover { color: var(--ink); }
.dark .brand, .dark .brand:hover { color: var(--cream); }
.brand img {
  width: 52px; height: 52px; object-fit: cover; object-position: 50% 38%;
  border-radius: 4px;
}
.dark .brand img { background: var(--cream); }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 34px; font-size: 15px; }
.site-nav a:not(.btn) { color: var(--slate); }
.site-nav a:not(.btn):hover { color: var(--ink); }
.dark .site-nav a:not(.btn) { color: var(--mint); }
.dark .site-nav a:not(.btn):hover { color: var(--cream); }
.site-nav [aria-current="page"] {
  color: var(--ink); font-weight: 600;
  border-bottom: 2px solid var(--clay); padding-bottom: 2px;
}
.dark .site-nav [aria-current="page"] { color: var(--cream); border-bottom-color: var(--copper); }

/* ---- buttons ---- */
.btn {
  display: inline-block; border-radius: var(--pill); font-weight: 600;
  font-family: var(--sans); line-height: 1.2; text-align: center;
  padding: 15px 26px; font-size: 15px; cursor: pointer; border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { padding: 12px 22px; font-weight: 500; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-ink, .btn-ink:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: #0F2820; }
.btn-clay, .btn-clay:hover { background: var(--clay); color: var(--paper); border-color: var(--clay); }
.btn-clay:hover { background: var(--clay-dark); }
.btn-cream, .btn-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-cream:hover { background: var(--white); }
.btn-copper, .btn-copper:hover { background: var(--copper); color: var(--ink); border-color: var(--copper); }
/* On the dark (acquire) page `.dark a { color: copper }` outranks the single-class button rules,
   which painted copper text on a copper button — an invisible "See the terms" (found 26 Sep 2026
   on the first visual check). Button text colours must win under .dark. */
.dark .btn-copper, .dark .btn-copper:hover { color: var(--ink); }
.dark .btn-cream, .dark .btn-cream:hover { color: var(--ink); }
.dark .btn-outline-dark, .dark .btn-outline-dark:hover { color: var(--cream); }
.btn-copper:hover { background: var(--copper-light); }
.btn-outline, .btn-outline:hover { background: transparent; color: var(--ink); border-color: var(--btn-border); font-weight: 500; }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-dark, .btn-outline-dark:hover { background: transparent; color: var(--cream); border-color: var(--green-line-3); font-weight: 500; }
.btn-outline-dark:hover { border-color: var(--copper); }
.btn[disabled] { opacity: .6; cursor: wait; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding-top: 4px; }

/* ---- type helpers ---- */
.eyebrow {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); font-weight: 600;
}
.eyebrow-sm { font-size: 12px; }
.dark .eyebrow { color: var(--copper); }
.eyebrow-muted { color: var(--sage); font-weight: 400; letter-spacing: 0.18em; font-size: 11px; }
.lede { font-size: 19px; line-height: 1.6; color: var(--slate); }
.dark .lede { color: var(--mint); }
.muted { color: var(--slate); }
.dark .muted { color: var(--mint); }
.small { font-size: 14px; color: var(--grey); }
.dark .small { color: var(--sage); }
.h1 { font-size: clamp(38px, 4.9vw, 70px); line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; }
.h2 { font-size: clamp(30px, 3.1vw, 44px); line-height: 1.1; }
.section { padding-top: clamp(48px, 5vw, 72px); }

/* ---- home ---- */
.hero-centred {
  padding: clamp(40px, 5vw, 72px) var(--gutter) 48px;
  display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center;
}
.hero-centred .h1 { max-width: 14em; }
.hero-centred .lede { max-width: 36em; }

.doors {
  padding: 24px var(--gutter) 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.door {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 460px; border-radius: var(--radius); padding: clamp(28px, 3vw, 44px);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.door:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(23, 53, 43, .10); }
.door-light { background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.door-light:hover { color: var(--ink); }
.door-dark { background: var(--ink); border: 1px solid var(--ink); color: var(--cream); }
.door-dark:hover { color: var(--cream); }
.door-dark .eyebrow { color: var(--copper); }
.door-body { display: flex; flex-direction: column; gap: 14px; }
.door h2 { font-size: clamp(30px, 3.05vw, 44px); line-height: 1.08; }
.door p { font-size: 17px; line-height: 1.6; color: var(--slate); max-width: 28em; }
.door-dark p { color: var(--mint); }
.door-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
}
.door-note { font-size: 13px; color: var(--grey); }
.door-dark .door-note { color: var(--sage); }

.facts {
  margin: 40px var(--gutter) 0;
  border-top: 1px solid var(--line); padding-top: 28px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact dt { font-family: var(--serif); font-size: 30px; line-height: 1.2; order: 1; }
.fact dd { margin: 0; font-size: 14px; color: var(--slate); order: 2; }

/* ---- newsletter ---- */
.newsletter {
  margin: clamp(48px, 5vw, 72px) var(--gutter) 0;
  border-top: 1px solid var(--line); padding-top: clamp(40px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center;
}
.newsletter .lede { max-width: 34em; }
.newsletter-form { display: flex; gap: 10px; width: 100%; max-width: 520px; margin-top: 8px; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 0; font: inherit; font-size: 16px;
  padding: 14px 18px; border-radius: var(--pill);
  border: 1px solid var(--btn-border); background: var(--white); color: var(--ink);
}
.newsletter-form input[type="email"]:focus { outline: 3px solid var(--clay); outline-offset: 2px; }
.newsletter-form input.is-invalid { border-color: var(--clay); }
.newsletter-success { display: none; font-size: 17px; color: var(--ink); }
.newsletter-small { font-size: 13px; color: var(--grey); }

/* ---- split heroes (sell / acquire) ---- */
.hero-split {
  padding: clamp(40px, 5vw, 80px) var(--gutter) 56px;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; align-items: center;
}
.hero-split.top { align-items: start; }
.hero-copy { grid-column: span 7; display: flex; flex-direction: column; gap: 24px; }
.hero-copy .lede { line-height: 1.65; color: var(--text-mid); max-width: 31em; }
.dark .hero-copy .lede { color: var(--mint); max-width: 32em; }
.hero-copy .lede strong { color: var(--cream); }
.hero-aside { grid-column: span 5; }

.portrait {
  border-radius: 6px; overflow: hidden; border: 1px solid var(--line-warm);
  background: var(--portrait-bg); display: flex; flex-direction: column;
}
.portrait img { width: 100%; height: 520px; object-fit: cover; object-position: 50% 20%; }
.portrait figcaption {
  padding: 16px 20px; background: var(--white);
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 4px 12px;
}
.portrait figcaption .name { font-family: var(--serif); font-size: 18px; }
.portrait figcaption .role { font-size: 13px; color: var(--grey); }

/* ---- promises ---- */
.promises {
  margin: 0 var(--gutter);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 34px 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px;
}
.promise { display: flex; flex-direction: column; gap: 6px; }
.promise h2 { font-size: 23px; font-weight: 400; }
.promise p { font-size: 16px; color: var(--slate); }

/* ---- comparison table ---- */
.compare-intro { margin: 8px 0 28px; font-size: 17px; color: var(--slate); }
.compare {
  width: 100%; border-collapse: collapse;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  font-size: 17px;
}
.compare th, .compare td { text-align: left; padding: 22px 28px; vertical-align: top; }
.compare thead th {
  padding: 18px 28px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); font-weight: 400; border-bottom: 1px solid var(--line);
}
.compare thead th.us { color: var(--clay); font-weight: 600; background: var(--paper); }
.compare tbody th { font-weight: 600; width: 38%; }
.compare tbody td { color: var(--slate); }
.compare tbody td.us { color: var(--ink); background: var(--paper); }
.compare tbody tr:not(:last-child) th, .compare tbody tr:not(:last-child) td { border-bottom: 1px solid var(--line-soft); }

/* ---- what we buy ---- */
.worth-grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; align-items: start;
}
.worth-copy { grid-column: span 5; display: flex; flex-direction: column; gap: 14px; }
.worth-copy p { color: var(--slate); line-height: 1.65; }
.worth-copy .btn { align-self: flex-start; margin-top: 8px; }
.ledger {
  grid-column: span 7; background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: 8px 32px;
}
.ledger-row {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 4px 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-row dt { color: var(--slate); }
.ledger-row dd { margin: 0; font-family: var(--serif); font-size: 28px; line-height: 1.2; }

/* ---- process ---- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 30px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px; display: flex; flex-direction: column; gap: 8px;
}
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--serif); font-size: 28px; color: var(--clay); line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: 0; }
.step p { font-size: 15px; color: var(--slate); }

/* ---- acquire: ledger card + ticks ---- */
.card-dark {
  position: relative; background: var(--panel); border: 1px solid var(--green-line-2);
  padding: clamp(24px, 2.5vw, 36px); display: flex; flex-direction: column; gap: 4px;
}
.tick { position: absolute; width: 10px; height: 10px; border-color: var(--copper); border-style: solid; }
.tick-tl { top: -5px; left: -5px; border-width: 1px 0 0 1px; }
.tick-tr { top: -5px; right: -5px; border-width: 1px 1px 0 0; }
.tick-bl { bottom: -5px; left: -5px; border-width: 0 0 1px 1px; }
.tick-br { bottom: -5px; right: -5px; border-width: 0 1px 1px 0; }
.card-dark .eyebrow-muted { padding-bottom: 14px; letter-spacing: 0.2em; }
.card-dark .ledger-row { padding: 14px 0; border-bottom: 0; border-top: 1px solid var(--green-line-2); }
.card-dark .ledger-row dt { font-size: 15px; color: var(--mint); }
.card-dark .ledger-row dd { font-size: 30px; }
.card-dark .foot { font-size: 13px; color: var(--sage); padding-top: 16px; border-top: 1px solid var(--green-line-2); }

/* ---- included ---- */
.included {
  margin-top: 20px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(4, auto);
  grid-auto-flow: column; gap: 0 56px;
}
.included li {
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--green-line);
  font-size: 16px; line-height: 1.55; color: var(--mint-light);
}
.included li .n { color: var(--sage-dark); font-size: 13px; padding-top: 3px; flex: none; }

/* ---- bands ---- */
.bands-head {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 8px 24px;
  margin-bottom: 24px;
}
.bands { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.band {
  position: relative; background: var(--panel); border: 1px solid var(--green-line-2);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.band.featured { border-color: var(--copper); }
.band .eyebrow-muted { letter-spacing: 0.18em; }
.band.featured .eyebrow-muted { color: var(--copper-light); }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .amt { font-family: var(--serif); font-size: clamp(44px, 3.6vw, 52px); line-height: 1; }
.price .per { font-size: 14px; color: var(--sage); }
.completion {
  border-top: 1px solid var(--green-line-2); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 4px 12px;
}
.band.featured .completion { border-top-color: var(--green-line-3); }
.completion dt { font-size: 14px; color: var(--mint); }
.completion dd { margin: 0; font-family: var(--serif); font-size: 20px; color: var(--copper-light); }
.band .btn { margin-top: auto; padding: 14px; }

.fee-note {
  margin-top: 16px; background: var(--cream); color: var(--ink); border-radius: 6px;
  padding: 30px 36px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.fee-note .pct { font-family: var(--serif); font-size: 56px; color: var(--clay); line-height: 1; }
.fee-note .body { display: flex; flex-direction: column; gap: 6px; }
.fee-note h3 { font-family: var(--sans); font-size: 19px; font-weight: 600; letter-spacing: 0; }
.fee-note p { font-size: 16px; color: var(--slate); }

/* ---- first months ---- */
.months { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.month { border-top: 2px solid var(--green-line-2); padding-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.month.first { border-top-color: var(--copper); }
.month .when { font-size: 12px; letter-spacing: 0.16em; color: var(--sage); text-transform: uppercase; }
.month h3 { font-size: 24px; font-weight: 400; }
.month p { font-size: 15px; color: var(--mint); }

/* ---- who runs it ---- */
.who {
  border: 1px solid var(--green-line-2); background: var(--panel); border-radius: 6px; overflow: hidden;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
}
.who-img { grid-column: span 4; min-height: 320px; }
.who-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: 50% 15%; }
.who-copy { grid-column: span 8; padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.who-copy blockquote { margin: 0; font-family: var(--serif); font-size: clamp(21px, 1.9vw, 27px); line-height: 1.45; color: var(--cream); }
.who-copy cite { font-style: normal; font-size: 15px; color: var(--mint); }

/* ---- forms ---- */
.enquiry {
  margin-top: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 44px);
}
.dark .enquiry { background: var(--panel); border-color: var(--green-line-2); }
.enquiry-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.enquiry-head p { color: var(--slate); }
.dark .enquiry-head p { color: var(--mint); }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; }
.field .hint { font-weight: 400; color: var(--grey); }
.dark .field .hint { color: var(--sage); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--btn-border); border-radius: 6px; padding: 12px 14px; width: 100%;
}
.dark .field input, .dark .field select, .dark .field textarea { background: var(--cream); border-color: var(--green-line-3); }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2317352B' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--clay); outline-offset: 2px; border-color: var(--ink); }
.dark .field input:focus, .dark .field select:focus, .dark .field textarea:focus { outline-color: var(--copper-light); }
.field [aria-invalid="true"] { border-color: var(--clay); }
.dark .field [aria-invalid="true"] { border-color: var(--copper-light); }
.field-error { font-size: 14px; color: var(--clay); display: none; }
.dark .field-error { color: var(--copper-light); }
.field-error.show { display: block; }
.consent { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 6px; }
.consent .check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.consent input[type="checkbox"] { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--clay); }
.dark .consent input[type="checkbox"] { accent-color: var(--copper); }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; padding-top: 8px; }
.form-error { font-size: 15px; color: var(--clay); display: none; }
.dark .form-error { color: var(--copper-light); }
.form-error.show { display: block; }
.form-success { font-size: 19px; line-height: 1.6; font-family: var(--serif); max-width: 36em; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---- footer ---- */
.site-footer {
  margin-top: 64px; border-top: 1px solid var(--line);
  padding: 30px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: var(--grey); line-height: 1.7;
}
.dark .site-footer { border-top-color: var(--green-line); color: var(--sage-dark); }
.site-footer a { color: inherit; }
.site-footer a:hover { text-decoration: underline; }

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .hero-copy, .hero-aside, .worth-copy, .ledger { grid-column: 1 / -1; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bands { grid-template-columns: 1fr; }
  .months { grid-template-columns: 1fr; }
  .who-img, .who-copy { grid-column: 1 / -1; }
  .who-img img { max-height: 420px; }
  .portrait img { height: 420px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .site-header { padding-top: 20px; padding-bottom: 20px; }
  .brand { font-size: 22px; }
  .brand img { width: 44px; height: 44px; }
  .site-nav { gap: 12px 18px; font-size: 14px; }
  .doors { grid-template-columns: 1fr; }
  .door { min-height: 0; }
  .facts { grid-template-columns: 1fr; gap: 18px; }
  .promises { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  .fee-note { grid-template-columns: 1fr; padding: 24px; gap: 14px; }
  .fields { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .ledger { padding: 4px 20px; }
  .ledger-row dd { font-size: 24px; }
  .cta-row .btn { width: 100%; }
  .band { padding: 24px; }

  /* comparison table stacks into cards */
  .compare, .compare thead, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .compare tbody tr { padding: 6px 0; }
  .compare tbody tr:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
  .compare tbody th { width: auto; padding: 16px 20px 6px; border-bottom: 0 !important; }
  .compare tbody td { padding: 6px 20px; border-bottom: 0 !important; font-size: 16px; }
  .compare tbody td:last-child { padding-bottom: 16px; }
  .compare tbody td::before {
    content: attr(data-label); display: block;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 2px;
  }
  .compare tbody td.us::before { color: var(--clay); font-weight: 600; }
}

/* ---- additions: trust panel, condensed header, table hover, step 2 ---- */
.trust {
  margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: clamp(22px, 2.5vw, 32px) clamp(22px, 3vw, 40px);
}
.trust h2 { font-size: 23px; font-weight: 400; margin-bottom: 12px; }
.trust ul { display: flex; flex-direction: column; gap: 8px; }
.trust li { font-size: 16px; line-height: 1.6; color: var(--text-mid); padding-left: 18px; position: relative; }
.trust li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--paper);
  transition: padding .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.dark .site-header { background: var(--ink); }
.site-header.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 6px 20px -12px rgba(23, 53, 43, .35);
}
.dark .site-header.is-scrolled { background: rgba(23, 53, 43, .92); box-shadow: 0 1px 0 var(--green-line); }
.site-header.is-scrolled .brand img { width: 40px; height: 40px; }
.site-header.is-scrolled .brand { font-size: 22px; }
@media (prefers-reduced-motion: reduce) { .site-header { transition: none; } }
:target { scroll-margin-top: 96px; }

.compare tbody tr { transition: background-color .15s ease; }
.compare tbody tr:hover th, .compare tbody tr:hover td { background: var(--line-soft); }
.compare tbody tr:hover td.us { background: #F3EDE2; }

.submit-block { display: flex; flex-direction: column; gap: 8px; }
.submit-block .small { max-width: 34em; }
.form-success:focus { outline: none; }
.step2 { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.step2 .enquiry-head { margin-bottom: 20px; }
.step2 .enquiry-head p { font-family: var(--serif); font-size: 21px; line-height: 1.4; color: var(--ink); }
.fee-note .worked { margin-top: 6px; }

/* ---- polish pass (Mobbin review) ---- */

/* 3. headline accent — Fraunces italic in clay; copper on the dark page for contrast */
.h1 .accent { font-style: italic; font-weight: 300; color: var(--clay); }
.dark .h1 .accent { color: var(--copper); }

/* 1. two doors: photographic texture on the seller card, arrows nudge on hover */
.door-texture {
  position: absolute; inset: 0; left: 35%; pointer-events: none; z-index: 0;
  background: url("/mark-warren.jpg") right 20% / cover no-repeat;
  opacity: .13;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 55%);
  mask-image: linear-gradient(to right, transparent 0%, #000 55%);
}
.door > .door-body, .door > .door-foot { position: relative; z-index: 1; }
.arrow { display: inline-block; transition: transform .2s ease; }
.door:hover .arrow { transform: translateX(4px); }

/* 2. the arch — the one non-rectangular shape on the site */
.portrait { border: 0; background: transparent; border-radius: 0; overflow: visible; gap: 14px; }
.portrait img { border-radius: 999px 999px 8px 8px; background: var(--portrait-bg); }
.portrait figcaption { background: transparent; padding: 0 6px; }
.who-img { padding: 24px 0 24px 24px; }
.who-img img { border-radius: 999px 999px 8px 8px; min-height: 0; height: 100%; max-height: 360px; }

/* 4. pricing cards */
.band { padding-top: 40px; overflow: visible; }
.band::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 8px; background: var(--green-line-3); }
.band.featured::before { background: var(--copper); }
.band-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.completion-note { font-size: 13px; color: var(--sage); margin-top: -8px; }
.band-help { margin-top: 20px; font-size: 15px; color: var(--sage); }
.band-help a { text-decoration: underline; text-underline-offset: 3px; }

/* 4b. acquiring: illustrative examples of the deliverables */
.examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 24px; }
.example { border: 1px solid var(--green-line-2); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.example ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.example li { font-size: 15px; line-height: 1.5; color: var(--mint); }
@media (max-width: 767px) { .examples { grid-template-columns: 1fr; } }

/* 5. seller form: trust panel beside the form, underlined fields */
.enquiry-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; margin-top: 40px; align-items: start; }
.enquiry-layout .trust { grid-column: span 5; margin-top: 0; position: sticky; top: 100px; }
.enquiry-layout .enquiry { grid-column: span 7; margin-top: 0; }
.trust-person { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.trust-person img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; flex: none; }
.trust-name { font-family: var(--serif); font-size: 19px; line-height: 1.3; }
.trust-name .small { font-family: var(--sans); }
.enquiry-underline { background: var(--paper); border: 0; padding: 0; }
.enquiry-underline .field input, .enquiry-underline .field select, .enquiry-underline .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--btn-border); border-radius: 0; padding: 12px 0;
}
.enquiry-underline .field select { background-position: right 4px center; padding-right: 28px; }
.enquiry-underline .field input:focus, .enquiry-underline .field select:focus, .enquiry-underline .field textarea:focus {
  outline: none; border-bottom: 2px solid var(--ink); padding-bottom: 11px;
}
.enquiry-underline .field [aria-invalid="true"] { border-bottom-color: var(--clay); }
.tiny { font-size: 13px; color: var(--grey); }

/* 6. comparison table: the recommended column reads as a block */
.compare thead th.us, .compare tbody td.us { background: var(--ink); color: var(--cream); }
.compare thead th.us { color: var(--copper); border-bottom-color: var(--green-line-2); }
.compare tbody tr:not(:last-child) td.us { border-bottom-color: var(--green-line-2); }
.compare tbody tr:hover td.us { background: var(--panel); }
.compare tbody td.us::before { color: var(--copper); }

/* 7. sticky header: paper background and 1px line once scrolled; phone menu */
.site-header.is-scrolled { background: rgba(251, 248, 243, .96); box-shadow: 0 1px 0 var(--line); }
.dark .site-header.is-scrolled { background: rgba(23, 53, 43, .96); box-shadow: 0 1px 0 var(--green-line); }
.nav-links { display: contents; }
.nav-toggle { display: none; }

@media (max-width: 1024px) {
  .enquiry-layout .trust, .enquiry-layout .enquiry { grid-column: 1 / -1; position: static; }
  .who-img { padding: 0; }
  .who-img img { border-radius: 0; max-height: 420px; }
}
@media (max-width: 767px) {
  .door-texture { left: 20%; }
  .site-nav { gap: 10px; }
  .nav-toggle {
    display: inline-block; font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
    background: transparent; color: var(--ink); border: 1px solid var(--btn-border); border-radius: var(--pill); padding: 10px 16px;
  }
  .dark .nav-toggle { color: var(--cream); border-color: var(--green-line-3); }
  .nav-links {
    display: none; order: 10; flex-basis: 100%; flex-direction: column; gap: 12px;
    padding: 12px 0 4px; border-top: 1px solid var(--line);
  }
  .dark .nav-links { border-top-color: var(--green-line); }
  .nav-links.is-open { display: flex; }
  .site-nav .btn-sm { padding: 10px 16px; font-size: 14px; }
}

/* ---- review fixes ---- */
.site-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer .footer-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.site-footer a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(0,0,0,.25); }
.dark .site-footer a { text-decoration-color: rgba(255,255,255,.3); }
.consent .check a { text-decoration: underline; text-underline-offset: 3px; }
.who-rule { font-size: 16px; line-height: 1.6; color: var(--mint); border-top: 1px solid var(--green-line-2); padding-top: 14px; }
.after-note { margin-top: 16px; font-size: 16px; color: var(--slate); max-width: 40em; }
.after-note a { text-decoration: underline; text-underline-offset: 3px; }
.newsletter .form-error { margin-top: 4px; }

/* home: short biography beside the portrait */
.hero-split.about {
  margin: clamp(40px, 5vw, 64px) var(--gutter) 0;
  padding: clamp(40px, 4vw, 56px) 0 0;
  border-top: 1px solid var(--line);
}
.hero-split.about .lede { font-size: 17px; max-width: 34em; }

/* privacy notice */
.prose { max-width: 42em; display: flex; flex-direction: column; gap: 18px; padding-bottom: 24px; }
.prose h2 { font-size: 26px; margin-top: 16px; }
.prose p, .prose li { font-size: 17px; line-height: 1.65; color: var(--text-mid); }
.prose ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Newsletter: valuation route vs plain subscribe (26 Sep) */
.newsletter-options { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0 16px; text-align: left; }
.newsletter-option { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--white); }
.newsletter-option .h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 400; font-size: 1.25rem; }
.newsletter-option p { margin: 0 0 12px; color: var(--text-mid); }
@media (max-width: 767px) { .newsletter-options { grid-template-columns: 1fr; } }
