@font-face {
  font-family: "Forma DJR Deck";
  src: url("/cldb/assets/fonts/forma-djr-deck-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Forma DJR Deck";
  src: url("/cldb/assets/fonts/forma-djr-deck-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Forma DJR Deck";
  src: url("/cldb/assets/fonts/forma-djr-deck-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #e47c28;
  --orange-dark: #c76217;
  --orange-hover: #ef9045;
  --orange-text: #a84608;
  --orange-soft: #f6dbc5;
  --charcoal: #323231;
  --charcoal-deep: #242423;
  --ink: #2d2d2b;
  --muted: #686761;
  --line: #dcd6ce;
  --paper: #fbf8f3;
  --peach: #faece1;
  --white: #ffffff;
  --success: #476a52;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(72px, 9vw, 128px);
  --radius: 4px;
  --shadow: 0 18px 60px rgba(36, 36, 35, 0.12);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Forma DJR Deck", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--charcoal-deep);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--charcoal-deep);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

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

.section--tight {
  padding-block: clamp(56px, 7vw, 88px);
}

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

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

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--ink {
  background: var(--charcoal-deep);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  max-width: none;
}

.section-heading--split > :last-child {
  max-width: 520px;
  justify-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: var(--orange-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #ffad69;
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(52px, 6.25vw, 92px);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.04;
}

h4 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin-bottom: 22px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.42;
}

.section--dark .lead,
.section--ink .lead {
  color: rgba(255, 255, 255, 0.74);
}

.small-copy {
  color: var(--muted);
  font-size: 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--charcoal-deep);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal-deep);
}

.button--outline {
  border-color: var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.button--outline:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link:hover {
  color: var(--orange-text);
}

.utility-bar {
  background: var(--orange);
  color: var(--charcoal-deep);
  font-size: 14px;
  font-weight: 700;
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar a {
  border-bottom: 1px solid rgba(36, 36, 35, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(36, 36, 35, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(36, 36, 35, 0.985);
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.18);
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-logo {
  width: 184px;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding-block: 27px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__lines {
  display: grid;
  width: 22px;
  gap: 5px;
}

.menu-toggle__lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 118px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  overflow-y: auto;
  background: var(--charcoal-deep);
  color: var(--white);
}

.site-header.is-scrolled + .mobile-menu {
  top: 82px;
}

.mobile-menu__inner {
  display: grid;
  gap: 30px;
  padding-block: 42px 80px;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 28px;
  font-weight: 600;
}

.mobile-menu__actions {
  display: grid;
  gap: 12px;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(660px, 80svh, 820px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal-deep);
  color: var(--white);
}

.home-hero__media,
.home-hero__media::after {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  z-index: -2;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero__media::after {
  background:
    linear-gradient(90deg, rgba(25, 25, 24, 0.97) 0%, rgba(25, 25, 24, 0.86) 38%, rgba(25, 25, 24, 0.22) 72%, rgba(25, 25, 24, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 20, 19, 0.58), transparent 48%);
  content: "";
}

.home-hero__content {
  max-width: 760px;
  padding-block: clamp(100px, 13vw, 160px);
}

.home-hero h1 {
  max-width: 9ch;
}

.home-hero .lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-facts li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.trust-strip {
  background: var(--orange);
  color: var(--charcoal-deep);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(18px, 3vw, 40px);
  border-left: 1px solid rgba(36, 36, 35, 0.22);
}

.trust-item:last-child {
  border-right: 1px solid rgba(36, 36, 35, 0.22);
}

.trust-item strong {
  font-size: 20px;
  line-height: 1.1;
}

.trust-item span {
  font-size: 14px;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
}

.split-layout--reverse > :first-child {
  order: 2;
}

.editorial-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd6cf;
}

.editorial-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image--portrait img {
  object-position: center 34%;
}

.editorial-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(290px, 68%);
  padding: 22px;
  background: var(--orange);
  color: var(--charcoal-deep);
  box-shadow: var(--shadow);
}

.editorial-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.05;
}

.editorial-note span {
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--orange);
  content: "";
}

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

.product-grid--single {
  grid-template-columns: minmax(0, 660px);
}

.product-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.product-card[hidden] {
  display: none;
}

.product-card > a {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  grid-template-rows: 1fr auto;
}

.product-card > a:focus-visible {
  outline: 0;
  box-shadow: none;
}

.product-card > a:focus-visible::before {
  position: absolute;
  inset: 6px;
  z-index: 3;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--charcoal-deep);
  content: "";
  pointer-events: none;
}

.product-card__media {
  position: absolute;
  inset: 0;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 24, 23, 0.92) 0%, rgba(24, 24, 23, 0.18) 58%, rgba(24, 24, 23, 0.06) 100%);
  content: "";
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 26px;
}

.product-card__tag {
  display: block;
  margin-bottom: 6px;
  color: #ffad69;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.7vw, 38px);
}

.product-card__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 24px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.product-card:hover .product-card__arrow {
  background: var(--white);
  color: var(--charcoal-deep);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.need-card {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.need-card__number {
  display: block;
  margin-bottom: 44px;
  color: var(--orange-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.need-card h3 {
  font-size: 28px;
}

.need-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: 34px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: process;
}

.process-step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step::before {
  display: block;
  margin-bottom: 70px;
  color: #ffad69;
  content: "0" counter(process);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-step h3 {
  font-size: 28px;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
}

.quality-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: stretch;
  background: var(--charcoal-deep);
  color: var(--white);
}

.quality-story__media {
  min-height: min(640px, 65svh);
}

.quality-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-story__content {
  display: grid;
  align-content: center;
  padding: clamp(44px, 7vw, 96px);
}

.quality-story__badge {
  width: 92px;
  margin: 24px 0 30px;
}

.quality-story .lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.review-card {
  display: grid;
  min-height: 380px;
  align-content: space-between;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
}

.review-stars {
  margin-bottom: 24px;
  color: var(--orange-text);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.38;
}

.review-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.review-card footer strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.review-card footer a {
  border-bottom: 1px solid currentColor;
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.product-proof__quote {
  margin: 0;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-proof__quote blockquote {
  margin: 0 0 32px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
}

.product-proof__quote figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.review-stars--light {
  color: #ffad69;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.18;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 820px;
  padding: 0 60px 30px 4px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-deep);
  color: var(--white);
}

.quote-panel::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(228, 124, 40, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(228, 124, 40, 0.05),
    0 0 0 110px rgba(228, 124, 40, 0.035);
  content: "";
}

.quote-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.quote-panel__choices {
  display: grid;
  gap: 12px;
}

.quote-panel .lead {
  color: rgba(255, 255, 255, 0.74);
}

.quote-choice {
  display: grid;
  min-height: 144px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.quote-choice:hover {
  border-color: var(--orange);
  background: rgba(228, 124, 40, 0.1);
}

.quote-choice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1.1;
}

.quote-choice span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.quote-choice b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 24px;
}

.page-hero {
  background: var(--white);
}

.page-hero__grid {
  display: grid;
  min-height: min(680px, 72svh);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.page-hero__content {
  display: grid;
  align-content: center;
  padding: clamp(64px, 8vw, 108px) var(--gutter) clamp(64px, 8vw, 108px) max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.page-hero__content h1 {
  max-width: 9ch;
  font-size: clamp(52px, 5.8vw, 82px);
}

.page-hero__content .lead {
  margin-bottom: 32px;
}

.page-hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #ded8d1;
}

.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  border: 18px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-bottom-color: currentColor;
}

.breadcrumbs span::before {
  margin-right: 8px;
  color: var(--orange-text);
  content: "/";
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-card__mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--orange-text);
  color: var(--orange-text);
  font-size: 14px;
  font-weight: 700;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.detail-panel__aside {
  padding: clamp(32px, 4vw, 50px);
  border-left: 5px solid var(--orange);
  background: var(--peach);
}

.detail-panel__aside h3 {
  max-width: 12ch;
}

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

.related-card {
  display: grid;
  min-height: 185px;
  grid-template-columns: 148px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.related-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.related-card__copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.related-card__copy span {
  color: var(--orange-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card__copy strong {
  font-size: 23px;
  line-height: 1.08;
}

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

.gallery-card {
  background: var(--white);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card__copy {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 0;
}

.gallery-card__copy h3 {
  font-size: 26px;
}

.gallery-card__copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

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

.team-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 22px 22px;
  background: linear-gradient(0deg, rgba(28, 28, 27, 0.88), transparent);
  color: var(--white);
  font-size: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-card__label {
  display: block;
  margin-bottom: 50px;
  color: var(--orange-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
}

.contact-card a {
  border-bottom: 1px solid currentColor;
}

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

.quote-route {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-route:first-child {
  background: var(--peach);
}

.quote-route__number {
  color: var(--orange-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.quote-route h3 {
  max-width: 13ch;
  font-size: clamp(34px, 4vw, 52px);
}

.quote-route p {
  max-width: 520px;
  color: var(--muted);
}

.voucher-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 28px;
}

.voucher-amounts span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  max-width: 11ch;
}

.legal-wrap h2 {
  margin-top: 56px;
  font-size: clamp(32px, 3.8vw, 48px);
}

.legal-wrap h3 {
  margin-top: 38px;
  font-size: 28px;
}

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

.legal-wrap ul {
  display: grid;
  gap: 10px;
}

.legal-callout {
  margin: 42px 0;
  padding: 30px;
  border-left: 5px solid var(--orange);
  background: var(--peach);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #1c1c1b;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(36px, 6vw, 80px);
  padding-block: clamp(64px, 8vw, 94px);
}

.footer-brand img {
  width: 210px;
  margin-bottom: 26px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 15px;
}

.footer-heading {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  border-bottom: 1px solid currentColor;
}

.mobile-dock {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(36, 36, 35, 0.22);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(36, 36, 35, 0.22);
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-step:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .product-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--single {
    grid-template-columns: minmax(0, 660px);
  }

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

  .quote-panel__inner,
  .quality-story,
  .product-proof {
    grid-template-columns: 1fr;
  }

  .quality-story__media {
    min-height: min(600px, 62svh);
  }

  .quote-panel__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-panel__choices .quote-choice {
    min-height: 180px;
  }

  .site-footer__main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .site-footer__main > :last-child {
    grid-column: 2;
  }
}

@media (min-width: 801px) and (max-height: 780px) {
  .home-hero {
    min-height: calc(100svh - 119px);
  }

  .home-hero__content {
    padding-block: 52px;
  }

  .home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(54px, 5.4vw, 70px);
  }

  .home-hero .lead {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.35;
  }

  .hero-facts {
    margin-top: 22px;
  }
}

@media (max-width: 800px) {
  body {
    padding-bottom: 70px;
    font-size: 17px;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner > span {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 160px;
  }

  .mobile-menu {
    top: 108px;
  }

  .site-header.is-scrolled + .mobile-menu {
    top: 72px;
  }

  .header-actions .button {
    display: none;
  }

  .section-heading--split,
  .split-layout,
  .detail-panel,
  .page-hero__grid,
  .quote-panel__inner,
  .product-proof {
    grid-template-columns: 1fr;
  }

  .section-heading--split > :last-child {
    justify-self: start;
  }

  .split-layout--reverse > :first-child {
    order: initial;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero__media img {
    object-position: 64% center;
  }

  .home-hero__media::after {
    background:
      linear-gradient(90deg, rgba(25, 25, 24, 0.94), rgba(25, 25, 24, 0.56)),
      linear-gradient(0deg, rgba(20, 20, 19, 0.72), rgba(20, 20, 19, 0.1));
  }

  .home-hero__content {
    max-width: 640px;
    padding-block: 94px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .review-grid,
  .benefit-grid,
  .curtain-gallery,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 104px;
    border-right: 1px solid rgba(36, 36, 35, 0.22);
    border-bottom: 1px solid rgba(36, 36, 35, 0.22);
  }

  .editorial-image {
    min-height: 480px;
  }

  .editorial-note {
    right: 12px;
    bottom: 12px;
  }

  .product-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: min(500px, 62svh);
  }

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

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

  .process-step {
    min-height: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-step::before {
    margin-bottom: 44px;
  }

  .quality-story__media {
    min-height: 430px;
  }

  .quote-panel__choices,
  .quote-route-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel__choices .quote-choice {
    min-height: 138px;
  }

  .page-hero__grid {
    min-height: auto;
  }

  .page-hero__content {
    padding: 72px var(--gutter);
  }

  .page-hero__media {
    min-height: min(460px, 56svh);
  }

  .page-hero__media--wide-art {
    min-height: 0;
    aspect-ratio: 1478 / 636;
  }

  .page-hero__media--wide-art img {
    object-fit: contain;
  }

  .page-hero__media::after {
    border-width: 10px;
  }

  .benefit-card {
    min-height: 240px;
  }

  .benefit-card__mark {
    margin-bottom: 38px;
  }

  .related-card {
    min-height: 150px;
    grid-template-columns: 120px 1fr;
  }

  .quote-route {
    min-height: 320px;
  }

  .product-proof__quote figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer__main > :last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    min-height: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    min-height: 70px;
    grid-template-columns: 0.76fr 1.24fr;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(36, 36, 35, 0.98);
    color: var(--white);
    box-shadow: 0 -12px 36px rgba(20, 20, 19, 0.2);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-dock.is-hidden,
  body.menu-open .mobile-dock {
    transform: translateY(110%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-dock a {
    display: grid;
    min-height: 52px;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-dock a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .mobile-dock a:last-child {
    background: var(--orange);
    color: var(--charcoal-deep);
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 18px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 9px;
  }

  .home-hero {
    min-height: 760px;
  }

  .product-card {
    min-height: 440px;
  }

  .product-card__content {
    padding: 22px;
  }

  .quote-choice {
    padding: 22px;
  }

  .quote-choice strong {
    font-size: 21px;
  }

  .related-card {
    grid-template-columns: 106px 1fr;
  }

  .related-card__copy {
    padding: 18px;
  }

  .related-card__copy strong {
    font-size: 20px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .site-footer__main > :last-child {
    grid-column: auto;
  }
}

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

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