:root {
  --black: #080808;
  --black-soft: #121212;
  --black-card: #171717;
  --ink: #111111;
  --muted: #5f625d;
  --paper: #ffffff;
  --off-white: #f5f5f1;
  --yellow: #fdec28;
  --yellow-deep: #dfcf12;
  --line: rgba(17, 17, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: 1320px;
  --section: clamp(5rem, 8vw, 8rem);
  --font: "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
blockquote {
  margin-top: 0;
}

p:last-child,
figure:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin-bottom: 1.25rem;
  font-weight: 580;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 6.4vw, 6.6rem);
}

h2 {
  font-size: clamp(2.65rem, 4.7vw, 5rem);
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.06;
}

.shell {
  width: min(var(--shell), calc(100% - 3rem));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--yellow);
  font-weight: 700;
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.66);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 62px;
  padding: 1rem 1.45rem;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 740;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  transform: translateY(-2px);
}

.button span {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translateX(3px);
}

.button-small {
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

.button-dark {
  color: var(--paper);
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand img {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 7rem);
  color: var(--paper);
  background: var(--black);
}

.hero::before {
  position: absolute;
  top: -120px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(190px);
  opacity: 0.1;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  border: 1px solid rgba(253, 236, 40, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid-one {
  top: -280px;
  right: -180px;
  width: 780px;
  height: 780px;
}

.hero-grid-two {
  top: -190px;
  right: -90px;
  width: 600px;
  height: 600px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.78fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}

.hero-content {
  padding-top: 1.5rem;
}

.hero h1 em {
  display: block;
  color: var(--yellow);
  font-style: italic;
  font-weight: 620;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-checks span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.025);
}

.hero-image-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
}

.hero-image-caption strong {
  color: var(--yellow);
}

.quote-card {
  position: sticky;
  top: 110px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-card::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.quote-card-heading h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.3rem, 3.7vw, 3.8rem);
}

.quote-card-heading > p:last-child {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.ghl-form-shell {
  width: 100%;
  height: 696px;
  overflow: hidden;
  background: var(--paper);
  border-radius: 8px;
}

.ghl-form-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 8px;
}

.form-note {
  margin: 1rem 0 0;
  color: #777871;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.proof-strip {
  padding-block: 1.7rem;
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 68px;
  padding-inline: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(8, 8, 8, 0.2);
  text-align: center;
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-item strong {
  font-size: 1.15rem;
  font-weight: 760;
  line-height: 1.2;
}

.proof-item span {
  margin-top: 0.28rem;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.76rem;
  font-weight: 620;
}

.services {
  background: var(--off-white);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.7fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.split-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.centre-heading {
  width: min(880px, calc(100% - 3rem));
  margin-inline: auto;
  text-align: center;
}

.centre-heading .eyebrow {
  justify-content: center;
}

.centre-heading p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px);
}

.service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-body {
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}

.card-kicker {
  margin-bottom: 0.7rem;
  color: #797a74;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-body h3 {
  min-height: 2.2em;
}

.service-body > p:not(.card-kicker) {
  min-height: 6.3em;
  color: var(--muted);
  font-size: 0.92rem;
}

.tick-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.84rem;
  font-weight: 590;
}

.tick-list li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  content: "✓";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.28rem;
  border-bottom: 2px solid var(--yellow);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.why-section {
  color: var(--paper);
  background: var(--black);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.why-intro {
  position: sticky;
  top: 125px;
}

.why-intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.why-intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.66);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promise-card {
  min-height: 285px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--black-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.promise-card:nth-child(2),
.promise-card:nth-child(3) {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.promise-icon {
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 2.65rem;
  object-fit: contain;
}

.promise-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.75rem;
}

.promise-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.promise-card:nth-child(2) p,
.promise-card:nth-child(3) p {
  color: rgba(8, 8, 8, 0.66);
}

.fit-section {
  background: var(--paper);
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.fit-images {
  position: relative;
  min-height: 625px;
}

.fit-image-main {
  width: 86%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.fit-image-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 380px;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.fit-content h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.fit-content > p:not(.eyebrow) {
  color: var(--muted);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-block: 2rem;
}

.audience-list span {
  padding: 0.65rem 0.9rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
}

.results {
  color: var(--paper);
  background: var(--black);
}

.results .centre-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-card {
  display: flex;
  min-height: 250px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: space-between;
  flex-direction: column;
  background: var(--black-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.result-card:nth-child(2) {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.result-card strong {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.02em;
}

.result-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 650;
}

.result-card:nth-child(2) span {
  color: rgba(8, 8, 8, 0.64);
}

.reviews {
  background: var(--off-white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.review-card {
  display: flex;
  min-height: 390px;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: space-between;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-card-featured {
  color: var(--paper);
  background: var(--black);
  border-color: var(--black);
}

.stars {
  margin-bottom: 2.5rem;
  color: #e4cd00;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  margin-bottom: 2.8rem;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 540;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.review-card-featured figcaption {
  border-top-color: var(--line-light);
}

.review-card figcaption strong {
  font-size: 0.92rem;
}

.review-card figcaption span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.review-card-featured figcaption span {
  color: rgba(255, 255, 255, 0.58);
}

.process {
  background: var(--paper);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-step {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
}

.process-step > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.5rem;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 6px solid var(--paper);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 780;
}

.process-step h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-action {
  text-align: center;
}

.faq-section {
  color: var(--paper);
  background: var(--black);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.62);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 700px;
  padding: 0 3rem 1.6rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.coverage {
  background: var(--off-white);
}

.coverage-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--yellow);
  border-radius: var(--radius-lg);
}

.coverage-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
}

.coverage-card .eyebrow {
  color: rgba(8, 8, 8, 0.58);
}

.coverage-card .eyebrow::before {
  background: var(--black);
}

.coverage-places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-content: center;
}

.coverage-places span {
  padding: 0.7rem 0.95rem;
  color: var(--paper);
  background: var(--black);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 620;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--paper);
  background: var(--black);
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.74) 52%, rgba(8, 8, 8, 0.46) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.45), transparent);
}

.final-cta-content {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.final-cta-content h2 {
  max-width: 780px;
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.cta-note {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.05em;
}

.site-footer {
  padding-block: 2rem;
  color: var(--paper);
  background: var(--black);
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.footer-brand span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.footer-inner p:last-child {
  text-align: right;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 2.5rem;
  }

  .service-grid {
    gap: 1rem;
  }

  .service-body {
    padding: 1.5rem;
  }

  .why-layout,
  .faq-layout {
    gap: 4rem;
  }

  .fit-layout {
    gap: 4rem;
  }

  .fit-images {
    min-height: 570px;
  }

  .fit-image-main {
    height: 490px;
  }

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

  .footer-inner p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .header-note {
    display: none;
  }

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

  .hero-content {
    padding-top: 0;
  }

  .quote-card {
    position: relative;
    top: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(8, 8, 8, 0.2);
  }

  .proof-item:nth-child(n + 3) {
    padding-top: 1.25rem;
  }

  .split-heading,
  .coverage-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .service-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-body h3,
  .service-body > p:not(.card-kicker) {
    min-height: 0;
  }

  .why-layout,
  .faq-layout,
  .fit-layout {
    grid-template-columns: 1fr;
  }

  .why-intro,
  .faq-intro {
    position: relative;
    top: auto;
  }

  .fit-images {
    width: min(720px, 100%);
  }

  .results-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: 200px;
  }

  .review-card {
    min-height: 320px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }

  .process-grid::before {
    display: none;
  }

  .final-cta,
  .final-cta-content {
    min-height: 630px;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 4.5rem;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 76px;
    font-size: 16px;
  }

  .shell,
  .centre-heading {
    width: min(100% - 2rem, var(--shell));
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-copy {
    display: none;
  }

  .header-action .button {
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-block: 3.2rem 4rem;
  }

  .hero-layout {
    gap: 2rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-checks {
    display: grid;
    gap: 0.7rem;
  }

  .hero-image-wrap,
  .hero-image {
    min-height: 265px;
  }

  .hero-image-caption {
    flex-direction: column;
    gap: 0.25rem;
  }

  .quote-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .ghl-form-shell {
    height: 696px;
  }

  .proof-strip {
    padding-block: 1.3rem;
  }

  .proof-item {
    padding-inline: 0.65rem;
  }

  .proof-item strong {
    font-size: 0.92rem;
  }

  .proof-item span {
    font-size: 0.67rem;
  }

  .split-heading {
    gap: 1rem;
  }

  .service-card {
    display: block;
  }

  .service-image {
    aspect-ratio: 1.35 / 1;
  }

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

  .promise-card {
    min-height: 235px;
  }

  .promise-icon {
    margin-bottom: 2rem;
  }

  .fit-images {
    min-height: 440px;
  }

  .fit-image-main {
    width: 94%;
    height: 390px;
  }

  .fit-image-inset {
    width: 44%;
    height: 250px;
    border-width: 7px;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0 1rem;
    padding: 0;
    text-align: left;
  }

  .process-step > span {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .process-step h3 {
    margin-top: 0.25rem;
    margin-bottom: 0.45rem;
  }

  .process-step p {
    grid-column: 2;
  }

  .coverage-card {
    width: min(100% - 2rem, var(--shell));
    padding: 1.5rem;
    border-radius: 24px;
  }

  .coverage-places {
    gap: 0.45rem;
  }

  .coverage-places span {
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
  }

  .final-cta-overlay {
    background: rgba(8, 8, 8, 0.79);
  }

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

  .footer-inner p:last-child {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 0.75rem;
    bottom: 0.65rem;
    left: 0.75rem;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: var(--black);
    background: var(--yellow);
    border: 1px solid rgba(8, 8, 8, 0.15);
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    font-size: 0.9rem;
    font-weight: 760;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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