:root {
  --forest-950: #062a21;
  --forest-900: #0a3c2f;
  --forest-800: #0f4d3c;
  --forest-100: #e6eee9;
  --gold-600: #b78a3c;
  --gold-500: #c99d4e;
  --gold-300: #dfbf7c;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --ink: #15201c;
  --muted: #5c6963;
  --line: rgba(10, 60, 47, 0.14);
  --shadow: 0 24px 70px rgba(12, 37, 29, 0.16);
  --shell: min(1180px, calc(100vw - 40px));
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --header-height: 94px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--forest-950);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 252px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #26332e;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 680;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #d6ad5d, var(--gold-500));
  color: var(--forest-950);
  box-shadow: 0 8px 24px rgba(183, 138, 60, 0.2);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(183, 138, 60, 0.27);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.92rem;
}

.button--outline {
  border-color: rgba(223, 191, 124, 0.7);
  background: var(--forest-900);
  color: #fff;
  box-shadow: none;
}

.button--outline:hover {
  background: var(--forest-800);
  box-shadow: none;
}

.hero {
  display: grid;
  min-height: 625px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  background: var(--forest-900);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 8%, rgba(40, 116, 87, 0.36), transparent 36%),
    linear-gradient(145deg, var(--forest-800), var(--forest-950));
  color: #fff;
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -56px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--paper);
}

.hero-copy-inner {
  position: relative;
  z-index: 2;
  width: min(590px, calc(100% - 72px));
  margin-left: max(36px, calc((100vw - 1180px) / 2));
  padding-block: 74px 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 5.5rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trail-lines {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 4%;
  left: 0;
  height: 110px;
  opacity: 0.66;
  pointer-events: none;
  transform: rotate(-5deg);
}

.trail-lines span {
  position: absolute;
  right: 0;
  width: 76%;
  height: 120px;
  border-top: 2px solid var(--gold-500);
  border-radius: 50% 50% 0 0;
}

.trail-lines span:nth-child(2) { top: 13px; width: 83%; }
.trail-lines span:nth-child(3) { top: 26px; width: 91%; }

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 42, 33, 0.28), transparent 34%), linear-gradient(0deg, rgba(6, 42, 33, 0.26), transparent 38%);
  pointer-events: none;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero--interior {
  min-height: 600px;
}

.hero--interior .hero-copy {
  align-items: flex-start;
}

.hero--interior .hero-copy-inner {
  padding-block: 46px 76px;
}

.hero--interior .breadcrumbs {
  margin-bottom: 22px;
}

.hero--interior h1 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
}

.hero--interior .hero-intro {
  max-width: 610px;
}

.hero-image--trade > img {
  object-position: 52% center;
}

.hero-image--invoice > img {
  object-position: 46% center;
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest-950);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-note--top {
  top: 50px;
  right: 7%;
  min-width: 182px;
  padding: 16px 18px;
}

.hero-note--bottom {
  right: 8%;
  bottom: 48px;
  padding: 18px 20px 17px 44px;
}

.hero-note-label,
.hero-note span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 2px;
  font-size: 1.06rem;
}

.hero-note-dot {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--gold-500);
  border-radius: 50%;
}

.assurance {
  border-bottom: 1px solid var(--line);
  background: #f2f1eb;
}

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

.assurance p {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 18px 24px;
}

.assurance p + p {
  border-left: 1px solid var(--line);
}

.assurance span {
  color: var(--gold-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.assurance strong {
  color: var(--forest-950);
  font-size: 0.98rem;
}

.section {
  padding-block: clamp(82px, 9vw, 132px);
}

.section--cream {
  background: var(--cream);
}

.section--compact {
  padding-block: 68px;
}

.assurance + .section,
.detail-strip + .section,
.page-hero + .section {
  padding-top: clamp(64px, 7vw, 100px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker--light {
  color: var(--gold-300);
}

h2,
h3 {
  margin-top: 0;
  color: var(--forest-950);
  line-height: 1.12;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.3vw, 4.25rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading--centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading--centred > p:last-child {
  margin-inline: auto;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 50px rgba(12, 37, 29, 0.07);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -74px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(183, 138, 60, 0.28);
  border-radius: 50%;
}

.product-card--tinted {
  background: var(--cream);
}

.product-card--dark {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.78);
}

.product-card--dark h3,
.product-card--dark .arrow-link {
  color: #fff;
}

.card-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border: 1px solid rgba(183, 138, 60, 0.38);
  border-radius: 50%;
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.product-card p {
  margin: 0 0 24px;
  color: inherit;
}

.arrow-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
  font-weight: 800;
  text-decoration-color: rgba(183, 138, 60, 0.55);
  text-underline-offset: 5px;
}

.arrow-link span {
  color: var(--gold-600);
  font-size: 1.3em;
  transition: transform 180ms ease;
}

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

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.approach-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.approach-copy .arrow-link {
  margin-top: 16px;
}

.principles-panel {
  position: relative;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-950);
  color: #fff;
  box-shadow: var(--shadow);
}

.principles-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(223, 191, 124, 0.26);
  border-radius: 50%;
}

.panel-label {
  margin: 0 0 26px;
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 20px 0 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--gold-300);
  border-left: 2px solid var(--gold-300);
  transform: rotate(-45deg);
}

.check-list strong {
  font-size: 1.03rem;
}

.check-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 8px 34px;
}

.process-grid li:first-child { padding-left: 0; }
.process-grid li:last-child { padding-right: 0; }
.process-grid li + li { border-left: 1px solid var(--line); }

.step-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold-300);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-grid h3 {
  font-size: 1.15rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-action {
  margin-top: 42px;
}

.button--dark {
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 60, 47, 0.2);
}

.fit-section {
  padding-block: clamp(76px, 8vw, 112px);
  background: var(--forest-900);
  color: #fff;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.fit-grid h2 {
  margin-bottom: 0;
  color: #fff;
}

.fit-facts {
  display: grid;
  gap: 0;
}

.fit-facts p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fit-facts p:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fit-facts strong {
  color: var(--gold-300);
  font-size: 1.2rem;
}

.fit-facts span {
  color: rgba(255, 255, 255, 0.7);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(40px, 6vw, 78px);
  border: 1px solid rgba(183, 138, 60, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 157, 78, 0.12), transparent 32%),
    var(--cream);
}

.cta-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.cta-action p {
  margin: 0 0 24px;
  color: var(--muted);
}

.site-footer {
  padding-top: 72px;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
}

.footer-contact {
  display: grid;
  max-width: 330px;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-contact-label {
  margin-bottom: 2px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer .footer-contact a {
  margin: 0;
  font-size: inherit;
}

.site-footer h2 {
  margin: 6px 0 18px;
  color: var(--gold-300);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #fff;
  font-size: 0.92rem;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  text-decoration-color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-registration {
  display: block;
  margin-top: 4px;
}

/* Interior pages */
.primary-nav [aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 126px);
  background:
    radial-gradient(circle at 82% 10%, rgba(54, 126, 99, 0.45), transparent 30%),
    var(--forest-950);
  color: #fff;
}

.page-hero:not(.page-hero--full) {
  padding-block: clamp(46px, 5vw, 70px) clamp(72px, 8vw, 104px);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -65%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 191, 124, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(223, 191, 124, 0.05), 0 0 0 48px rgba(223, 191, 124, 0.035);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: #fff;
  text-underline-offset: 3px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
}

.page-hero .lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.page-hero--full {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: clamp(55px, 9vw, 120px);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: 62px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 36px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.04rem;
}

.prose a {
  color: var(--forest-900);
  font-weight: 750;
  text-underline-offset: 4px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 17px 18px 17px 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--gold-600);
  border-left: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}

.side-card {
  position: sticky;
  top: 28px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.side-card h2 {
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.side-card p {
  color: var(--muted);
}

.side-card .button {
  width: 100%;
  margin-top: 10px;
}

.detail-strip {
  border-block: 1px solid var(--line);
  background: #f3f1ea;
}

.detail-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.detail-strip p {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 24px 28px;
}

.detail-strip p + p {
  border-left: 1px solid var(--line);
}

.detail-strip strong {
  color: var(--forest-900);
}

.detail-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.quote-panel {
  margin-block: 38px;
  padding: 28px 30px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
}

.quote-panel p {
  margin: 0;
  color: var(--forest-950);
  font-size: 1.15rem;
  font-weight: 650;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  position: relative;
  padding: 0 0 42px 78px;
  counter-increment: timeline;
}

.timeline li::before {
  content: counter(timeline, decimal-leading-zero);
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 850;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: var(--line);
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p {
  margin: 0;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.enquiry-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.mini-facts {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.mini-facts li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.mini-facts strong,
.mini-facts span {
  display: block;
}

.mini-facts strong {
  color: var(--forest-900);
}

.mini-facts span {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-card {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 20px 65px rgba(12, 37, 29, 0.08);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--forest-950);
  font-size: 0.88rem;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 60, 47, 0.24);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-600);
  outline: 3px solid rgba(201, 157, 78, 0.2);
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--forest-900);
}

.form-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  margin: 20px 0 0;
  padding: 15px 17px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
  color: var(--forest-950);
  font-weight: 700;
}

.legal-page {
  max-width: 820px;
}

.legal-page h2 {
  margin-top: 52px;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: -0.025em;
}

.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page li + li {
  margin-top: 8px;
}

.notice {
  margin-bottom: 38px;
  padding: 19px 22px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
}

.notice strong {
  color: var(--forest-900);
}

@media (max-width: 1040px) {
  :root { --header-height: 82px; }

  .menu-toggle { display: block; }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px max(20px, calc((100vw - 1180px) / 2));
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(12, 37, 29, 0.12);
  }

  .primary-nav.is-open { display: grid; }

  .primary-nav > a:not(.button) { padding: 8px 4px; }

  .hero { min-height: 600px; grid-template-columns: 1.08fr 0.92fr; }
  .hero-copy-inner { width: calc(100% - 48px); margin-left: 28px; }
  .hero-note--top { display: none; }

  .product-card { min-height: 330px; padding: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { padding: 26px 0; }
  .process-grid li + li { border-top: 1px solid var(--line); border-left: 0; }
  .fit-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1180px); }

  .brand img { width: 212px; }

  .hero { display: flex; min-height: 0; flex-direction: column; }

  .hero-copy-inner {
    width: min(100% - 40px, 590px);
    margin-inline: auto;
    padding-block: 64px 84px;
  }

  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }

  .hero-copy::after { right: -60px; bottom: -90px; }
  .trail-lines { bottom: -8%; }
  .hero-image { min-height: 440px; }
  .hero-image > img { object-position: 56% center; }
  .hero--interior .hero-copy-inner { padding-block: 40px 68px; }
  .hero--interior h1 { font-size: clamp(2.55rem, 11.5vw, 3.8rem); }
  .hero--interior .hero-image { min-height: 360px; }
  .hero--interior .hero-image--trade > img { object-position: 40% center; }
  .hero--interior .hero-image--invoice > img { object-position: 43% center; }

  .assurance-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .assurance p { min-height: 66px; justify-content: flex-start; padding: 12px 8px; }
  .assurance p + p { border-top: 1px solid var(--line); border-left: 0; }

  .section-heading--centred { text-align: left; }
  .product-grid,
  .approach-grid,
  .cta-panel,
  .content-grid,
  .enquiry-layout { grid-template-columns: 1fr; }
  .product-card { min-height: 320px; }
  .principles-panel { border-radius: 22px; }
  .cta-panel { align-items: start; }
  .side-card { position: static; }
  .detail-strip .shell { grid-template-columns: 1fr; padding-block: 8px; }
  .detail-strip p { padding: 16px 0; }
  .detail-strip p + p { border-top: 1px solid var(--line); border-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
}

@media (max-width: 460px) {
  .brand img { width: 186px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-image { min-height: 380px; }
  .hero-note--bottom { right: 18px; bottom: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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