/* ==========================================================
   Pro-Fit Green Energy : direction B, "Cakey Sunset"
   Flat poster banding sampled from the client reference.
   Text never sits on a band. It sits on ink, on cream, or on
   a solid panel, and every pairing below is checked.
   ========================================================== */

:root{
  /* the ramp, top to bottom */
  --c1:#0E5FE0;  /* sky blue   */
  --c2:#2078FD;  /* blue       */
  --c3:#676FFF;  /* indigo     */
  --c4:#7E64FB;  /* violet     */
  --c5:#A665FF;  /* purple     */
  --c6:#CE65FF;  /* orchid     */
  --c7:#FB4EF5;  /* magenta    */
  --c8:#FD50AA;  /* pink       */
  --c9:#F35D42;  /* red orange */
  --c10:#F7950C; /* gold       */
  --ink:#141E13; /* the hills  */

  /* lifted band colours, for small type on the ink surfaces */
  --c3-lift:#9FA8FF;
  --c6-lift:#DC8CFF;
  --c8-lift:#FF8FC4;
  --ink-2:#1D2A1C;
  --ink-3:#2A3A28;
  --cream:#FCF0E1;
  --cream-2:#F2E0C9;
  --paper:#FFFFFF;
  --ok:#19693F;   /* the tick green, also the "included" panel rule */
  --warn:#A82A12; /* the cross red */

  /* the two rule devices, and nothing else */
  --rule-boundary:linear-gradient(90deg,
    var(--c1) 0 10%,var(--c2) 10% 20%,var(--c3) 20% 30%,var(--c4) 30% 40%,
    var(--c5) 40% 50%,var(--c6) 50% 60%,var(--c7) 60% 70%,var(--c8) 70% 80%,
    var(--c9) 80% 90%,var(--c10) 90% 100%);
  --rule-card:linear-gradient(90deg,
    var(--c4) 0 25%,var(--c6) 25% 50%,var(--c8) 50% 75%,var(--c10) 75% 100%);

  --gutter:clamp(16px,4vw,32px);

  /* verified pairings, see notes at the foot of this file */
  --on-ink:#FFFFFF;        /* 17.1:1 on --ink */
  --on-ink-soft:#D9DFD6;   /* 12.4:1 on --ink */
  --on-cream:#141E13;      /* 16.4:1 on --cream */
  --on-cream-soft:#3E4A3C; /* 9.4:1  on --cream */

  --shell:1200px;
  --r:4px;

  --display:"Outfit","Poppins",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --body:"Public Sans",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--cream);
  color:var(--on-cream);
  font-family:var(--body);
  font-size:17px;
  line-height:1.6;
  overflow-x:hidden;
}
img,video,svg{max-width:100%;display:block}
a{color:inherit}
h1,h2,h3,h4{font-family:var(--display);font-weight:700;line-height:1.02;letter-spacing:-.022em;margin:0}
h1,h2{text-wrap:balance}
p{margin:0 0 1rem}
ul{margin:0;padding:0;list-style:none}

/* Headings outside .sec-head carried no space beneath them. */
h2 + p,h2 + .lede,h2 + ul,h2 + ol,h2 + .f-actions{margin-top:1rem}
.sec-head h2 + p,.sec-head h2 + .lede{margin-top:0}

.wrap{width:100%;max-width:var(--shell);margin:0 auto;padding:0 var(--gutter)}
.visually-hidden{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

:focus-visible{outline:3px solid var(--c10);outline-offset:3px;border-radius:2px}
.on-ink :focus-visible,.topbar :focus-visible,.f-head :focus-visible{outline-color:var(--c10)}
.on-cream :focus-visible{outline-color:#6E2AB8}

/* ---------- type scale ---------- */
.display-xl{font-size:clamp(2.6rem,7.4vw,5.4rem)}
.display-l{font-size:clamp(2.1rem,5vw,3.6rem)}
.display-m{font-size:clamp(1.5rem,3vw,2.25rem)}
.eyebrow{
  font-family:var(--display);font-weight:700;font-size:.74rem;
  letter-spacing:.19em;text-transform:uppercase;margin:0 0 .85rem;
}
.lede{font-size:clamp(1.02rem,1.5vw,1.22rem);line-height:1.55;max-width:46ch}
.micro{font-size:.83rem;line-height:1.5}
.smallprint{font-size:.83rem;line-height:1.6;color:var(--on-cream-soft);max-width:78ch}
/* Legal copy set across the full measure in two columns, the way a printed
   price list sets it, rather than dribbling down the left edge. */
/* CSS columns broke a single paragraph mid-sentence across the gutter
   ("because it" / "depends on your roof"). Two self-contained paragraphs
   in a grid read correctly instead. */
.smallprint--cols{max-width:none;display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem)}
.smallprint--cols p{margin:0;max-width:62ch}
@media (max-width:820px){.smallprint--cols{grid-template-columns:1fr;gap:.8rem;max-width:78ch}}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--display);font-weight:700;font-size:.98rem;letter-spacing:-.01em;
  padding:.86rem 1.35rem;border-radius:var(--r);border:2px solid transparent;
  text-decoration:none;cursor:pointer;background:none;
  transition:transform .16s ease,opacity .16s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
/* One accent for the primary action: gold. .btn-amber is kept only as an
   alias of it, because the funnel script still emits that class name. */
.btn-primary,.btn-amber{background:var(--c10);color:var(--ink);border-color:var(--c10)}
.btn-ghost{background:transparent;color:var(--ink);border-color:rgba(20,30,19,.34)}
.on-ink .btn-ghost,.pkg .btn-ghost,.ac-offer .btn-ghost,.rail .btn-ghost{color:#fff;border-color:rgba(255,255,255,.45)}
.btn-lg{padding:1.05rem 1.7rem;font-size:1.06rem}

/* ---------- rule device one: 9px ten-band, page-level boundaries only ---------- */
.band-rule{height:9px;width:100%;border:0;margin:0;background:var(--rule-boundary)}

/* ---------- rule device two: 7px four-band, card tops ---------- */
.card-rule::before{
  content:"";position:absolute;left:0;right:0;top:0;height:7px;
  background:var(--rule-card);
}

/* ---------- top bar (on ink, so contrast is never in doubt) ---------- */
.topbar{background:var(--ink);color:#fff;position:relative;z-index:5}
.topbar .wrap{display:flex;align-items:center;gap:1.2rem;min-height:76px}
.brand-logo{height:34px;width:auto}
.topnav{margin-left:auto;display:flex;align-items:center;gap:clamp(.6rem,2vw,1.6rem)}
.topnav a:not(.btn){
  font-family:var(--display);font-weight:600;font-size:.95rem;
  text-decoration:none;color:#fff;padding:.3rem 0;
  border-bottom:2px solid transparent;
}
.topnav a:not(.btn):hover{border-bottom-color:var(--c10)}
.topnav .btn:hover{border-bottom-color:transparent}
.tel-link{font-family:var(--display);font-weight:700;color:var(--c10);text-decoration:none}

/* ==========================================================
   THE SUNSET
   Hard-edged bands, paired stops at identical percentages.
   ========================================================== */
.sky.sky--short{height:clamp(170px,21vw,270px)}
.sky{
  position:relative;
  height:clamp(300px,40vw,470px);
  overflow:hidden;
  background:linear-gradient(180deg,
    var(--c1)  0     13%,
    var(--c2) 13%    24%,
    var(--c3) 24%    34%,
    var(--c4) 34%    43%,
    var(--c5) 43%    52%,
    var(--c6) 52%    61%,
    var(--c7) 61%    70%,
    var(--c8) 70%    79.5%,
    var(--c9) 79.5%  89%,
    var(--c10)89%    100%);
}

/* straight rays fanning up from the sun */
.sky-rays{
  position:absolute;inset:0;pointer-events:none;
  background:repeating-conic-gradient(from 182deg at 68% 96%,
    rgba(255,255,255,.20) 0deg 3.4deg,
    rgba(255,255,255,0)   3.4deg 13deg);
  -webkit-mask-image:radial-gradient(ellipse 70% 92% at 68% 96%,#000 0%,rgba(0,0,0,.75) 42%,transparent 78%);
  mask-image:radial-gradient(ellipse 70% 92% at 68% 96%,#000 0%,rgba(0,0,0,.75) 42%,transparent 78%);
  mix-blend-mode:screen;
}

/* the glow, then the disc, sitting on the horizon */
.sky-glow{
  position:absolute;left:68%;bottom:4%;
  width:clamp(300px,54vw,660px);aspect-ratio:1;
  transform:translate(-50%,50%);
  border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,
    rgba(255,243,214,.72) 0%,
    rgba(247,149,12,.44) 34%,
    rgba(243,93,66,.16) 60%,
    rgba(243,93,66,0) 74%);
}
.sun{
  position:absolute;left:68%;bottom:4%;
  width:clamp(96px,15vw,176px);aspect-ratio:1;
  transform:translate(-50%,32%);
  border-radius:50%;pointer-events:none;
  background:radial-gradient(circle at 50% 42%,
    #FFFDF3 0%,#FFF0C2 34%,#FFC94F 66%,var(--c10) 100%);
  box-shadow:0 0 0 10px rgba(255,236,181,.24);
}

/* flat poster clouds in a muted violet */
.cloud{
  position:absolute;pointer-events:none;
  background:rgba(90,60,150,.38);
  border-radius:999px;
}
.cloud::after{
  content:"";position:absolute;border-radius:999px;background:inherit;
  left:22%;top:-58%;width:52%;height:100%;
}
.cloud-1{left:8%;top:22%;width:clamp(96px,17vw,210px);height:clamp(15px,2.3vw,30px)}
.cloud-2{left:26%;top:39%;width:clamp(64px,11vw,138px);height:clamp(12px,1.8vw,22px);background:rgba(70,44,132,.34)}
.cloud-3{right:9%;top:16%;width:clamp(72px,13vw,164px);height:clamp(13px,2vw,25px);background:rgba(58,52,158,.32)}

/* the hills, soft rolling curves */
.hills{
  position:absolute;left:0;right:0;bottom:-1px;width:100%;
  height:clamp(72px,11vw,132px);
  display:block;
}

/* ---------- hero ---------- */
.hero{background:var(--ink);color:var(--on-ink);position:relative}
.hero-ink{padding:clamp(1.4rem,3vw,2.4rem) 0 clamp(3rem,6vw,4.6rem)}
.hero-grid{
  display:grid;gap:clamp(1.8rem,4vw,3.4rem);
  grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);
  align-items:end;
}
.hero h1{color:#fff;text-wrap:balance}
.hero .eyebrow{color:var(--c10)}
.hero .lede{color:var(--on-ink-soft);margin-top:1.4rem}
.hero-kicker{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--display);font-weight:700;font-size:.8rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--ink);
  background:var(--c10);padding:.34rem .7rem;border-radius:2px;margin-bottom:1.2rem;
}

/* postcode starter, a solid panel so nothing sits on a band */
.starter{
  background:var(--paper);color:var(--on-cream);
  border-radius:var(--r);padding:clamp(1.2rem,2.4vw,1.7rem);
  /* A committed poster offset, hard edged like the bands. No blur, no
     negative spread, so it never reads as a stray bar under the card. */
  box-shadow:10px 10px 0 var(--c10);
}
.starter .label{
  font-family:var(--display);font-weight:700;font-size:.74rem;
  letter-spacing:.17em;text-transform:uppercase;color:var(--on-cream-soft);margin:0 0 .5rem;
}
.starter .figure{
  font-family:var(--display);font-weight:700;font-size:clamp(2.3rem,4.4vw,3.1rem);
  line-height:1;letter-spacing:-.03em;margin-bottom:.5rem;
}
.starter form{display:flex;gap:.55rem;margin:1.1rem 0 .7rem;flex-wrap:wrap}
.starter input{
  flex:1 1 150px;min-width:0;font:inherit;padding:.8rem .9rem;
  border:2px solid rgba(20,30,19,.3);border-radius:var(--r);
  background:#fff;color:var(--on-cream);
}
.starter input::placeholder{color:#6A736A}
.starter .foot{margin:0;font-size:.82rem;color:var(--on-cream-soft)}

/* ---------- proof strip ---------- */
.proof{background:var(--ink-3);color:#fff;padding:clamp(1.6rem,3vw,2.2rem) 0}
.proof-row{display:grid;gap:1.2rem;grid-template-columns:repeat(4,minmax(0,1fr))}
.proof-item strong{
  display:block;font-family:var(--display);font-weight:700;
  font-size:clamp(1.2rem,2vw,1.55rem);letter-spacing:-.02em;
}
.proof-item:nth-child(1) strong{color:var(--c6-lift)}
.proof-item:nth-child(2) strong{color:var(--c8-lift)}
.proof-item:nth-child(3) strong{color:var(--c10)}
.proof-item:nth-child(4) strong{color:var(--c3-lift)}
.proof-item span{display:block;color:var(--on-ink-soft);font-size:.9rem;line-height:1.4}
.proof-note{
  grid-column:1/-1;margin:.4rem 0 0;font-size:.8rem;color:#AEB8AC;
}

/* ---------- generic sections ---------- */
.section{padding:clamp(3.2rem,7vw,6rem) 0}
.on-cream{background:var(--cream);color:var(--on-cream)}
.on-paper{background:var(--paper);color:var(--on-cream)}
.on-ink{background:var(--ink);color:var(--on-ink)}
.on-ink .eyebrow{color:var(--c10)}
.on-ink p{color:var(--on-ink-soft)}
.on-ink h2,.on-ink h3{color:#fff}
.on-cream .eyebrow{color:#7A2FB3}
.sec-head{max-width:60ch;margin-bottom:clamp(2rem,4vw,3rem)}
.sec-head h2{margin-bottom:1rem}

/* Two ways of occupying the full measure, chosen per section rather than
   applied as one blanket rule. */
.sec-head--split{
  max-width:none;display:grid;align-items:end;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
  gap:clamp(1.2rem,4vw,3.2rem);
}
.sec-head--split h2{margin-bottom:0}
.sec-head--split>p{margin:0;max-width:52ch}
.sec-head--narrow{max-width:24ch}

/* Heading left, action right, on a single band. */
.cta-band{
  display:grid;align-items:end;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
  gap:clamp(1.2rem,4vw,3.2rem);
}
.cta-band .f-actions{margin-top:0}
.cta-band .lede{margin-top:1rem}

/* ---------- packages as poster blocks ---------- */
.poster-grid{
  display:grid;gap:14px;
  grid-template-columns:repeat(12,minmax(0,1fr));
}
.pkg{
  position:relative;display:flex;flex-direction:column;
  background:var(--ink-2);color:#fff;border-radius:var(--r);
  padding:clamp(1.3rem,2.6vw,2rem);overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
}
.pkg::before{
  content:"";position:absolute;left:0;right:0;top:0;height:7px;
  background:var(--rule-card);
}
.pkg h3{font-size:clamp(1.15rem,1.9vw,1.5rem);margin-bottom:.55rem}
.pkg .spec{color:var(--on-ink-soft);font-size:.94rem;margin-bottom:1.3rem}
.pkg .amount{
  font-family:var(--display);font-weight:700;line-height:1;letter-spacing:-.035em;
  color:var(--c10);font-size:clamp(2.5rem,5vw,3.6rem);
  margin-top:auto;padding-top:1.4rem;
}
.pkg .from{
  display:block;font-size:.72rem;letter-spacing:.19em;text-transform:uppercase;
  color:var(--on-ink-soft);margin-bottom:.3rem;
}
.pkg .btn{margin-top:1.3rem;align-self:flex-start}
.pkg .kit{margin:1.1rem 0 0;font-size:.88rem;color:var(--on-ink-soft)}
.pkg .kit li{padding-left:1.3rem;position:relative;margin-bottom:.4rem}
.pkg .kit li::before{content:"";position:absolute;left:0;top:.45em;width:6px;height:6px;background:var(--c8)}

.pkg--pop{grid-column:1/7;grid-row:1/3;background:var(--ink)}
/* One split, used by both rows, so the four cards share two vertical edges. */
.poster-grid--price>.pkg:nth-child(2n+1){grid-column:1/8}
.poster-grid--price>.pkg:nth-child(2n){grid-column:8/13}
/* Same 7px height as its neighbours. Only the band count differs. */
.pkg--pop::before{
  background:linear-gradient(90deg,
    var(--c1) 0 11%,var(--c3) 11% 22%,var(--c4) 22% 33%,var(--c5) 33% 44%,
    var(--c6) 44% 55%,var(--c7) 55% 66%,var(--c8) 66% 77%,var(--c9) 77% 88%,var(--c10) 88% 100%);
}
.pkg--pop .amount{font-size:clamp(3.2rem,7.4vw,5.4rem)}
.pkg--a{grid-column:7/13}
.pkg--b{grid-column:7/13}
.pkg--c{grid-column:1/13;flex-direction:row;align-items:flex-end;gap:clamp(1.2rem,3vw,2.5rem);flex-wrap:wrap}
.pkg--c>div:first-child{flex:1 1 320px}
/* The row variant bottom-aligns, so the price needs no auto margin and no
   phantom descender from a sub-1 line height. */
.pkg--c .amount{margin-top:0;padding-top:0;line-height:1;padding-bottom:.06em}
.pkg--c .btn{margin-top:0;align-self:flex-end}
.badge{
  display:inline-block;background:var(--c10);color:var(--ink);
  font-family:var(--display);font-weight:700;font-size:.72rem;
  letter-spacing:.17em;text-transform:uppercase;padding:.3rem .62rem;
  border-radius:2px;margin-bottom:.9rem;align-self:flex-start;
}

/* ---------- vat block ---------- */
.vat-grid{display:grid;gap:clamp(1.5rem,4vw,3rem);grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);align-items:stretch}
/* The gold block runs the full height of the row rather than leaving the
   right half of the band empty below it. */
.vat-grid .vat-figure{display:flex;flex-direction:column;justify-content:flex-start}
.vat-figure{
  background:var(--c10);color:var(--ink);border-radius:var(--r);
  padding:clamp(1.4rem,3vw,2rem);
}
/* Optical nudge: the heading beside it sits on a 1.02 line height, so the
   panel's top edge read high against the cap line. */
.vat-grid .vat-figure{margin-top:.35rem}
.vat-figure .big{
  font-family:var(--display);font-weight:700;font-size:clamp(2.6rem,6vw,4rem);
  line-height:.94;letter-spacing:-.035em;margin-bottom:.6rem;
}
.vat-figure p{color:var(--ink);margin:0;font-size:.94rem;font-weight:500}
.date-strip{
  display:flex;flex-wrap:wrap;gap:.5rem 1.4rem;margin:1.6rem 0 0;
  font-family:var(--display);font-weight:600;font-size:.92rem;
}
.date-strip li{display:flex;gap:.55rem;align-items:baseline}
.date-strip b{color:var(--c10);font-weight:700}

/* ---------- cooling ---------- */
.split{display:grid;gap:clamp(1.6rem,4vw,3.2rem);grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:start}
.shot{border-radius:var(--r);overflow:hidden;position:relative;background:var(--ink-3)}
.shot img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.shot--tall img{aspect-ratio:4/5}
/* The card rule, run along the foot of the image instead of its head. */
.shot-band{position:absolute;left:0;right:0;bottom:0;height:7px;background:var(--rule-card)}

/* ---------- steps ---------- */
.steps{display:grid;gap:14px;grid-template-columns:repeat(4,minmax(0,1fr));counter-reset:s}
/* Same 7px four-band card rule as .pkg, so there is one card device. */
.step{
  position:relative;background:var(--paper);border-radius:var(--r);
  padding:1.9rem 1.4rem 1.4rem;overflow:hidden;
}
.step::before{
  content:"";position:absolute;left:0;right:0;top:0;height:7px;
  background:var(--rule-card);
}
/* The step card sat on a section of the same colour and disappeared. */
.on-paper .step{background:var(--cream)}
.on-cream .step{background:var(--paper)}
.step .n{font-family:var(--display);font-weight:700;font-size:.78rem;letter-spacing:.19em;color:var(--on-cream-soft);display:block;margin-bottom:.6rem}
.step h3{font-size:1.25rem;margin-bottom:.5rem}
.step p{font-size:.92rem;color:var(--on-cream-soft);margin:0}

/* ---------- lists on pricing ---------- */
.two-col{display:grid;gap:clamp(1.6rem,4vw,3rem);grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:stretch}
.ticks li,.crosses li{position:relative;padding-left:1.9rem;margin-bottom:.7rem;font-size:.96rem}
.ticks li::before{content:"\2713";position:absolute;left:0;top:0;font-weight:700;color:var(--ok)}
.crosses li::before{content:"\00D7";position:absolute;left:0;top:-.1em;font-weight:700;font-size:1.2em;color:var(--warn)}
/* The left bar is semantic here, not decorative: it takes the colour of the
   marks inside the panel. */
.panel{background:var(--paper);border-radius:var(--r);padding:clamp(1.3rem,2.6vw,2rem);border-left:7px solid var(--ok)}
.panel--warn{border-left-color:var(--warn)}
.panel h3{font-size:1.2rem;margin-bottom:.8rem}

.spec-table{width:100%;border-collapse:collapse;font-size:.94rem}
.spec-table th,.spec-table td{text-align:left;padding:.85rem .7rem;border-bottom:1px solid rgba(20,30,19,.14);vertical-align:top}
/* The table was starting 11px right of every other element on the page. */
.spec-table th:first-child,.spec-table td:first-child{padding-left:0}
.spec-table th:last-child,.spec-table td:last-child{padding-right:0}
.spec-table tbody tr:last-child th,.spec-table tbody tr:last-child td{border-bottom:0}
.spec-table th{font-family:var(--display);font-weight:700}
.spec-table td:last-child,.spec-table th:last-child{text-align:right;white-space:nowrap}
.table-scroll{overflow-x:auto}
.proof .spec-table th,.proof .spec-table td{border-bottom-color:rgba(255,255,255,.18)}
.proof .spec-table thead th{color:var(--c10);font-size:.74rem;letter-spacing:.16em;text-transform:uppercase}
.proof .spec-table td{color:var(--on-ink-soft)}
.proof .spec-table td:last-child{color:var(--c10);font-family:var(--display);font-weight:700;font-size:1.05rem}
.on-paper .panel{background:var(--cream)}
.numbered{counter-reset:n;margin:1.4rem 0 0;padding:0;list-style:none}
.numbered li{counter-increment:n;position:relative;padding-left:3rem;margin-bottom:1rem;font-size:.98rem}
.numbered li::before{
  content:counter(n,decimal-leading-zero);position:absolute;left:0;top:.05em;
  font-family:var(--display);font-weight:700;font-size:.95rem;color:var(--c10);
  letter-spacing:.05em;
}

/* ---------- footer ---------- */
.site-foot{background:var(--ink);color:var(--on-ink-soft);padding:clamp(2.6rem,5vw,4rem) 0 2rem}
.foot-grid{display:grid;gap:2rem;grid-template-columns:1.5fr 1fr 1fr}
.site-foot h4{font-size:.78rem;letter-spacing:.19em;text-transform:uppercase;color:var(--c10);margin-bottom:.9rem}
.site-foot a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.28)}
.site-foot a:hover{border-bottom-color:var(--c10)}
.site-foot li{margin-bottom:.5rem;font-size:.94rem}
/* The rule spans the column; only the copy inside it is held to a measure. */
.foot-legal{margin-top:2.4rem;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.16);font-size:.8rem;color:#A9B4A7;max-width:none}
.foot-legal p{max-width:78ch}

/* ==========================================================
   FUNNEL
   ========================================================== */
.funnel-shell{min-height:100vh;display:flex;flex-direction:column;background:var(--cream)}
.f-head{background:var(--ink);color:#fff}
.f-head .wrap{display:flex;align-items:center;gap:1rem;min-height:70px}
.f-help{margin:0 0 0 auto;font-size:.92rem;color:var(--on-ink-soft)}
.f-help a{color:var(--c10);font-family:var(--display);font-weight:700;text-decoration:none}

.progress-track{
  position:relative;height:38px;background:var(--ink);overflow:hidden;
}
.progress-track::before{
  content:"";position:absolute;left:0;right:0;top:0;height:8px;background:rgba(255,255,255,.14);
}
.progress-bar{
  position:absolute;left:0;top:0;height:8px;width:0;
  /* Hard stops, like every other rule in the design. */
  background:linear-gradient(90deg,
    var(--c3) 0 20%,var(--c5) 20% 40%,var(--c7) 40% 60%,var(--c9) 60% 80%,var(--c10) 80% 100%);
  background-size:calc(100vw) 100%;
  transition:width .3s ease;
}
/* Sits on the same content box as .wrap, so the chip tracks the page gutter. */
.chip-lane{
  position:absolute;left:0;right:0;top:13px;height:0;margin:0 auto;
  width:min(100% - (var(--gutter) * 2),var(--shell) - (var(--gutter) * 2));
}
.progress-chip{
  position:absolute;top:0;transform:translateX(-50%);
  font-family:var(--display);font-weight:700;font-size:.74rem;letter-spacing:.06em;
  color:var(--ink);background:var(--c10);padding:.15rem .55rem;border-radius:2px;
  white-space:nowrap;transition:left .3s ease;
}

/* Flat. The two blurred radial washes were the only soft gradients in a
   design built entirely on hard band edges. */
.f-body{flex:1;padding:clamp(1.8rem,4vw,3.2rem) 0;background:var(--cream)}
.f-grid{display:grid;gap:clamp(1.6rem,3.5vw,2.8rem);grid-template-columns:minmax(0,1.45fr) minmax(0,1fr);align-items:start}

#stage{position:relative;overflow:hidden;background:var(--paper);border-radius:var(--r);padding:clamp(1.9rem,3.4vw,3rem) clamp(1.4rem,3.2vw,2.6rem) clamp(1.4rem,3.2vw,2.6rem)}
#stage::before{content:"";position:absolute;left:0;right:0;top:0;height:7px;background:var(--rule-card)}
.step-in{animation:stepIn .28s ease both}
@keyframes stepIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

#stage .eyebrow{color:#7A2FB3}
.q-title{font-size:clamp(1.6rem,3.4vw,2.5rem);margin-bottom:.7rem;text-wrap:balance}
.q-sub{color:var(--on-cream-soft);margin-bottom:1.6rem;max-width:56ch}

.opts{display:grid;gap:10px}
.opt{
  display:flex;align-items:flex-start;gap:.9rem;width:100%;text-align:left;
  font-family:var(--body);font-size:1.02rem;color:var(--on-cream);
  background:#fff;border:2px solid rgba(20,30,19,.18);border-radius:var(--r);
  padding:.95rem 1.05rem;cursor:pointer;
  transition:transform .14s ease,border-color .14s ease,background-color .14s ease;
}
.opt:hover{border-color:var(--c7);transform:translateX(3px)}
.opt[aria-pressed="true"]{border-color:var(--ink);background:var(--cream-2)}
.opt .key{
  flex:none;width:26px;height:26px;border-radius:2px;background:var(--ink);color:#fff;
  font-family:var(--display);font-weight:700;font-size:.82rem;
  display:flex;align-items:center;justify-content:center;margin-top:.1rem;
}
.opt[aria-pressed="true"] .key{background:var(--c9)}
.opt-sub{display:block;font-size:.85rem;color:var(--on-cream-soft);margin-top:.15rem}

.f-label{display:block;font-family:var(--display);font-weight:700;font-size:.86rem;letter-spacing:.06em;margin-bottom:.5rem}
.f-input{
  width:100%;font:inherit;font-size:1.05rem;padding:.9rem 1rem;
  border:2px solid rgba(20,30,19,.28);border-radius:var(--r);background:#fff;color:var(--on-cream);
}
.f-input::placeholder{color:#6A736A}
.f-hint{font-size:.85rem;color:var(--on-cream-soft)}
.f-error{min-height:1.3rem;margin:.5rem 0 0;font-size:.9rem;font-weight:600;color:#A82A12}

.f-actions{display:flex;flex-wrap:wrap;align-items:center;gap:.9rem;margin-top:1.5rem}
.f-back{
  background:none;border:0;padding:.5rem 0;cursor:pointer;
  font-family:var(--display);font-weight:600;font-size:.94rem;color:var(--on-cream-soft);
  border-bottom:2px solid rgba(20,30,19,.3);
}
.f-back:hover{color:var(--on-cream);border-bottom-color:var(--ink)}
#stage .micro{color:var(--on-cream-soft);margin:0}

.why{
  display:flex;gap:.7rem;align-items:flex-start;margin-top:1.6rem;
  background:var(--cream);border-left:5px solid var(--c6);
  padding:.9rem 1rem;border-radius:0 var(--r) var(--r) 0;
  font-size:.9rem;color:var(--on-cream-soft);
}
.why svg{flex:none;margin-top:.2rem}
.why svg circle,.why svg path{stroke:#7A2FB3}

.result-head{margin-bottom:1.4rem}
.result-price{
  font-size:clamp(3rem,8vw,5.2rem);line-height:.9;letter-spacing:-.04em;margin-bottom:.6rem;
}
.incl{margin:1.4rem 0}
.incl li{display:flex;gap:.7rem;align-items:flex-start;margin-bottom:.55rem;font-size:.96rem}
.incl .done{color:var(--ok);font-weight:700;flex:none}

.assump{
  margin-top:1.4rem;background:var(--cream);border-radius:var(--r);padding:.2rem 1.1rem;
  border-left:5px solid var(--c6);
}
.assump summary{
  cursor:pointer;font-family:var(--display);font-weight:700;font-size:.96rem;padding:.9rem 0;
}
.assump p{font-size:.9rem;color:var(--on-cream-soft)}

.ac-offer{position:relative;overflow:hidden;margin-top:1.8rem;background:var(--ink);color:#fff;border-radius:var(--r);padding:clamp(1.6rem,2.6vw,2.1rem) clamp(1.1rem,2.4vw,1.6rem) clamp(1.1rem,2.4vw,1.6rem)}
.ac-offer::before{content:"";position:absolute;left:0;right:0;top:0;height:7px;background:var(--rule-card)}
.ac-offer h3{font-size:1.15rem;margin-bottom:.6rem;color:#fff}
.ac-offer p{color:var(--on-ink-soft);font-size:.94rem}
.ac-offer .micro{display:flex;gap:.6rem;align-items:center;color:#fff;margin:0}
.ac-offer input[type=checkbox]{width:20px;height:20px;accent-color:var(--c10)}

/* running price rail */
.rail{
  background:var(--ink);color:#fff;border-radius:var(--r);overflow:hidden;
  padding:clamp(1.7rem,2.6vw,2.2rem) clamp(1.2rem,2.4vw,1.7rem) clamp(1.2rem,2.4vw,1.7rem);
  position:sticky;top:1rem;
}
.rail::before{content:"";position:absolute;left:0;right:0;top:0;height:7px;background:var(--rule-card)}
.rail .label{font-family:var(--display);font-weight:700;font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:var(--c10);margin:0 0 .4rem}
.rail .figure{
  font-family:var(--display);font-weight:700;line-height:1;letter-spacing:-.035em;
  font-size:clamp(1.7rem,3.4vw,2.4rem);color:#fff;
}
.rail .figure.settling{color:var(--c8);font-size:clamp(1.3rem,2.6vw,1.75rem)}
.rail .narrowing{font-size:.84rem;color:var(--on-ink-soft);margin:.5rem 0 1.2rem}
.rail ul{border-top:1px solid rgba(255,255,255,.16)}
.rail li{
  display:grid;grid-template-columns:20px 1fr auto;gap:.5rem;align-items:baseline;
  padding:.55rem 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:.88rem;
  color:var(--on-ink-soft);
}
.rail .done{color:var(--c10);font-weight:700}
.rail .v{color:#fff;font-family:var(--display);font-weight:600;text-align:right}

.f-foot{background:var(--ink-2);color:#AEB8AC;padding:1.2rem 0;font-size:.8rem}
.f-foot .wrap{display:flex;flex-wrap:wrap;gap:.5rem 1.8rem}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width:980px){
  .hero-grid,.vat-grid,.split,.two-col,.f-grid,.sec-head--split,.cta-band{grid-template-columns:minmax(0,1fr)}
  /* Stacked, the row gap alone sets the space under the heading. */
  .sec-head--split,.cta-band{gap:1.1rem;align-items:start}
  .sec-head--narrow{max-width:60ch}
  .poster-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
  .pkg--pop{grid-column:1/7;grid-row:auto}
  .pkg--a,.pkg--b,.pkg--c{grid-column:1/7}
  .poster-grid--price>.pkg:nth-child(n){grid-column:1/7}
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  /* relative, not static: the 7px card rule is an absolutely positioned
     pseudo-element and needs this box as its containing block. */
  .rail{position:relative;top:auto}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .proof-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .topnav a.hide-sm{display:none}
  .steps{grid-template-columns:minmax(0,1fr)}
  .foot-grid{grid-template-columns:1fr}
  /* Stacked, the 320px flex-basis became a height and then grew. */
  .pkg--c{flex-direction:column;align-items:flex-start}
  .pkg--c>div:first-child{flex:0 0 auto}
  .pkg--c .amount{padding-top:1.4rem}
  .pkg--c .btn{align-self:flex-start;margin-top:1.3rem}
  .progress-track{height:34px}
  .chip-lane{position:static}
  .progress-chip{
    position:static;transform:none;display:block;
    margin:.55rem auto 0;width:max-content;
  }
}
@media (max-width:520px){
  /* The postcode field clipped its own placeholder beside the button. */
  .starter form{flex-wrap:wrap}
  .starter input,.starter .btn{flex:1 1 100%}
  .starter{box-shadow:6px 6px 0 var(--c10)}
}
@media (max-width:400px){
  body{font-size:16px}
  .topbar .wrap{gap:.7rem}
  .brand-logo{height:28px}
}

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

/* ==========================================================
   CONTRAST NOTES (sRGB relative luminance, WCAG 2.1 formula)
   ink #141E13 has L 0.0112.
     white  #FFFFFF on ink   17.1:1
     #D9DFD6            on ink   12.4:1
     gold   #F7950C on ink    7.6:1
     pink   #FD50AA on ink    5.6:1
     orchid #CE65FF on ink    5.7:1
     #9FA8FF        on ink-2  6.8:1  (lifted indigo for small type)
     ink    #141E13 on #F35D42 5.3:1 (the red orange button)
   cream #FCF0E1 is now warm enough to read as a different surface from
   paper #FFFFFF, which it did not at #FFFDFA.
     ink    #141E13 on cream 15.7:1
     #3E4A3C        on cream  9.0:1
     #7A2FB3        on cream  7.6:1
     #A82A12        on cream  7.2:1
     #19693F        on cream  5.7:1
   gold panel #F7950C has L 0.4129, ink on gold 7.6:1.
   No text is ever placed over the sunset bands themselves.
   ========================================================== */

/* The air conditioning opt-in sits on the ink panel, where the muted
   .micro colour measured 1.84:1. Light text is required here. */
.ac-offer .micro,
.ac-offer label { color: #D9DFD6; }
.ac-offer input[type="checkbox"] { accent-color: #F7950C; }

/* Raised specificity: an earlier id-scoped rule was winning over the
   plain class selector, so the opt-in label stayed at 1.84:1. */
#stage .ac-offer .micro,
#stage .ac-offer label,
.ac-offer label.micro { color: #D9DFD6; }
/* The nav CTA measured 2.27:1 on the ink bar. */
.nav .btn-primary, .site-head .btn-primary { background: #F7950C; color: #141E13; }

/* The nav CTA measured 2.27:1. Gold with ink text is already in the
   band palette and measures 7.6:1. */
.btn-primary { background: #F7950C; color: #141E13; border-color: #F7950C; }
.btn-primary:hover { background: #FFA92E; color: #141E13; }

/* .topnav a out-specifies .btn-primary and was forcing white onto the
   gold button, 2.27:1. Ink text on gold measures 7.6:1. */
.topnav .btn-primary, .topnav a.btn-primary { color: #141E13; }


/* The nav CTA was inheriting the nav-link rule and losing all horizontal
   padding, rendering 38px tall with 0/0 padding against a 57px button
   system, and failing the 44px tap target. It is a compact variant of the
   same button, not a different object. */
.topnav .btn-primary,
.topnav a.btn-primary {
  color: #141E13;
  padding: .7rem 1.25rem;
  min-height: 46px;
  font-size: .95rem;
  font-weight: 700;
  border: 2px solid var(--c10);
  border-bottom: 2px solid var(--c10);
  line-height: 1;
}
