:root {
  --ink: #0a0d0d;
  --forest: #14231f;
  --moss: #455142;
  --paper: #f4f0e8;
  --white: #fffaf1;
  --muted: #746f66;
  --line: rgba(10, 13, 13, 0.14);
  --line-dark: rgba(255, 250, 241, 0.16);
  --ember: #e86f2f;
  --amber: #f0a544;
  --shadow: 0 28px 80px rgba(8, 11, 11, 0.22);
  --hero-bottom-fade: linear-gradient(180deg, rgba(244, 240, 232, 0), rgba(244, 240, 232, 0.34) 58%, var(--paper));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(10, 13, 13, 0.62);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.brand img {
  width: clamp(118px, 13vw, 164px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 250, 241, 0.74);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--ember), var(--amber));
  color: #170d07;
  box-shadow: 0 16px 34px rgba(232, 111, 47, 0.24);
}

.button-secondary {
  border-color: rgba(255, 250, 241, 0.28);
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
}

.dark-text {
  border-color: var(--line);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  min-height: 88svh;
  padding: 150px max(22px, calc((100vw - 1180px) / 2)) 80px;
  overflow: hidden;
}

.hero-home {
  display: grid;
  align-items: end;
  color: var(--white);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-video.is-loaded {
  opacity: 1;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 6, 6, 0.88), rgba(4, 6, 6, 0.36) 55%, rgba(4, 6, 6, 0.72)),
    linear-gradient(180deg, rgba(4, 6, 6, 0.18), rgba(4, 6, 6, 0.76));
}

.hero-inner {
  position: relative;
  width: min(930px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.hero p,
.page-hero p,
.section-heading p,
.teaser-panel p,
.copy-stack p {
  max-width: 680px;
  color: inherit;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.58;
}

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

.centered {
  justify-content: center;
}

.section {
  padding: clamp(76px, 10vw, 140px) max(22px, calc((100vw - 1180px) / 2));
}

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

.section-dark {
  background:
    linear-gradient(145deg, rgba(232, 111, 47, 0.08), transparent 36%),
    linear-gradient(180deg, #0b0f0e, #15231f);
  color: var(--white);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.card-grid,
.feature-grid,
.colour-grid,
.proof-grid,
.option-grid,
.contact-routes {
  display: grid;
  gap: 20px;
}

.three,
.feature-grid,
.colour-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.simple-card,
.route-card,
.option-card,
.summary-panel,
.contact-form,
.contact-details article,
.hotspot-placeholder,
.legal-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #202623;
}

.product-card div,
.simple-card,
.route-card,
.summary-panel,
.hotspot-placeholder {
  padding: clamp(22px, 3vw, 34px);
}

.micro-mark {
  width: min(180px, 72%);
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ember);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.proof-grid article,
.simple-card {
  border-color: var(--line-dark);
  background: rgba(255, 250, 241, 0.06);
}

.proof-grid span {
  color: var(--ember);
  font-weight: 950;
}

.home-proof-section {
  padding-top: clamp(86px, 9vw, 132px);
  padding-bottom: clamp(86px, 9vw, 132px);
}

.home-proof-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.68fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.home-proof-heading {
  max-width: 700px;
}

.home-proof-heading .eyebrow {
  margin-bottom: 18px;
}

.home-proof-heading h2 {
  max-width: 680px;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  line-height: 0.96;
}

.home-proof-media {
  max-width: 540px;
  margin-top: clamp(28px, 2.4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.home-proof-media img,
.home-proof-media video {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  max-height: 410px;
  object-fit: cover;
  object-position: center;
}

.home-proof-section .proof-grid {
  gap: clamp(24px, 3vw, 36px);
}

.home-proof-section .proof-grid article {
  min-height: 0;
  padding: clamp(26px, 3vw, 38px);
  border-color: rgba(255, 250, 241, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.035));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-proof-section .proof-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 250, 241, 0.34);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
}

.home-proof-section .proof-grid span {
  margin-bottom: clamp(34px, 4vw, 52px);
  color: var(--ember);
  opacity: 0.92;
}

.home-proof-section .proof-grid h3 {
  max-width: 330px;
  font-size: clamp(1.65rem, 2vw, 2.25rem);
  line-height: 1.08;
}

.home-proof-section .proof-grid p {
  max-width: 300px;
  line-height: 1.58;
}

.watch-section {
  padding-top: clamp(100px, 9vw, 120px);
  padding-bottom: clamp(100px, 9vw, 120px);
  background: var(--white);
}

.watch-section > .eyebrow {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.watch-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.watch-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.watch-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  background: rgba(10, 13, 13, 0.08);
  cursor: pointer;
}

.watch-play::before {
  content: "";
  width: clamp(62px, 8vw, 92px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.66);
  border-radius: 999px;
  background: rgba(10, 13, 13, 0.44);
  backdrop-filter: blur(8px);
}

.watch-play::after {
  content: "";
  position: absolute;
  left: calc(50% + 4px);
  top: 50%;
  border-top: clamp(12px, 1.6vw, 18px) solid transparent;
  border-bottom: clamp(12px, 1.6vw, 18px) solid transparent;
  border-left: clamp(18px, 2.2vw, 28px) solid var(--white);
  transform: translate(-50%, -50%);
}

.watch-play:hover {
  background: rgba(10, 13, 13, 0.02);
}

.watch-play:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: -6px;
}

.watch-play[hidden] {
  display: none;
}

.teaser-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.teaser-copy {
  max-width: 520px;
}

.teaser-copy .teaser-action {
  margin-top: clamp(24px, 3vw, 34px);
}

.teaser-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(330px, 34vw, 520px);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255, 250, 240, 0.04);
  box-shadow:
    0 26px 62px rgba(9, 12, 11, 0.28),
    0 0 42px rgba(232, 111, 47, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.teaser-image-link img,
.teaser-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 54%;
  transform: scale(1.015);
  transition: transform 220ms ease;
}

.teaser-image-link:hover,
.teaser-image-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 111, 47, 0.56);
  box-shadow:
    0 24px 58px rgba(9, 12, 11, 0.3),
    0 0 0 1px rgba(232, 111, 47, 0.14),
    0 0 28px rgba(232, 111, 47, 0.22);
}

.teaser-image-link:hover img,
.teaser-image-link:focus-visible img {
  transform: scale(1.045);
}

.teaser-panel > img {
  border-radius: 8px;
}

.teaser-image-link:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.78);
  outline-offset: 5px;
}

.teaser-image-link::before {
  content: "";
  position: absolute;
  inset: auto -8% -16% 20%;
  z-index: -1;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 111, 47, 0.2), transparent 68%);
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.teaser-annotation {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(72px, 9vw, 124px);
  height: 1px;
  background: rgba(255, 250, 241, 0.54);
  opacity: 0.54;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.teaser-annotation::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 0 16px rgba(232, 111, 47, 0.5);
}

.teaser-annotation span {
  position: absolute;
  top: -30px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(0.58rem, 0.72vw, 0.68rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(4, 6, 5, 0.58);
}

.teaser-image-link:hover .teaser-annotation,
.teaser-image-link:focus-visible .teaser-annotation {
  opacity: 0.86;
}

.annotation-tentbox {
  top: 23%;
  left: 44%;
}

.annotation-tentbox::before,
.annotation-rack::before {
  left: -4px;
}

.annotation-tentbox span,
.annotation-rack span {
  left: 0;
}

.annotation-colour {
  top: 60%;
  right: 17%;
}

.annotation-colour::before,
.annotation-accessories::before {
  right: -4px;
}

.annotation-colour span,
.annotation-accessories span {
  right: 0;
}

.annotation-rack {
  top: 41%;
  left: 15%;
}

.annotation-accessories {
  right: 10%;
  bottom: 25%;
}

.cta-band {
  padding: clamp(76px, 10vw, 132px) 22px;
  background: linear-gradient(90deg, rgba(10, 13, 13, 0.92), rgba(20, 35, 31, 0.84));
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.page-hero {
  --hero-content-top: clamp(188px, 24svh, 230px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1.04fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  min-height: 78svh;
  background:
    radial-gradient(circle at 80% 30%, rgba(232, 111, 47, 0.12), transparent 34%),
    var(--forest);
  color: var(--white);
}

.page-hero.compact {
  grid-template-columns: 1fr;
  min-height: 52svh;
  padding-top: var(--hero-content-top);
}

.page-hero > img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 38px 60px rgba(0, 0, 0, 0.42));
}

.hero-logo {
  filter: brightness(1.7);
}

.feature-grid article,
.colour-grid article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.feature-grid img,
.colour-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-grid h3,
.colour-grid h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hotspot-placeholder {
  min-height: 360px;
  display: grid;
  align-content: center;
  border-color: var(--line-dark);
  background:
    linear-gradient(90deg, rgba(10, 13, 13, 0.94), rgba(10, 13, 13, 0.64)),
    url("assets/Trailers/suspension.png") center / cover;
}

.configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.config-main {
  display: grid;
  gap: 46px;
}

.config-group {
  min-width: 0;
}

.config-group h2 {
  margin-bottom: 14px;
}

.config-intro {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

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

.option-card {
  min-height: 190px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.rig-option {
  display: grid;
  align-content: start;
  gap: 14px;
}

.option-card img {
  width: 100%;
  height: 150px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.option-image-placeholder {
  display: block;
  width: 100%;
  min-height: 150px;
  border: 1px solid rgba(10, 13, 13, 0.08);
  border-radius: 8px;
  background: var(--option-swatch, #303735);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.28);
}

.option-card strong,
.option-card span,
.summary-panel li,
.legal-list span,
.legal-list small {
  display: block;
}

.option-card strong {
  margin-bottom: 8px;
  font-weight: 950;
}

.option-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.option-card-topline strong {
  margin: 0;
}

.option-price {
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.option-card span,
.small-copy,
.product-card p,
.simple-card p,
.route-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section-dark .simple-card p,
.section-dark .small-copy,
.section-dark .product-card p {
  color: rgba(255, 250, 241, 0.72);
}

.option-card.is-selected {
  outline: 3px solid rgba(232, 111, 47, 0.34);
  border-color: var(--ember);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 24px 68px rgba(232, 111, 47, 0.16);
}

.option-card:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.42);
  outline-offset: 4px;
  border-color: var(--ember);
}

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

.accessory-prompt-card {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.62);
  box-shadow: var(--shadow);
}

.accessory-prompt-card h3 {
  margin: 14px 0 10px;
  font-size: 1.32rem;
}

.accessory-prompt-card p {
  color: var(--muted);
  line-height: 1.6;
}

.accessory-kicker {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accessory-kicker {
  color: var(--moss);
}

.summary-panel {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: var(--white);
}

.rig-summary h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 24px;
}

.estimate-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.estimate-list div {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.estimate-list dt {
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.saving-row dd {
  display: grid;
  gap: 7px;
}

.saving-row dd span {
  color: rgba(255, 250, 241, 0.72);
  font-weight: 700;
}

.saving-row dd strong {
  color: var(--amber);
  font-size: 1.14rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.estimate-total strong {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
}

.summary-handoff-copy {
  margin: 0 0 14px;
  color: rgba(255, 250, 241, 0.86);
  font-weight: 800;
  line-height: 1.45;
}

.summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.summary-actions .button-secondary {
  border-color: rgba(255, 250, 241, 0.24);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-table [role="row"]:first-child {
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.placeholder-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.placeholder-strip span {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.68);
}

.showcase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.74)),
    var(--paper);
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0));
}

.showcase-section > * {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
}

.showcase-section.is-visible > * {
  animation: section-rise 620ms ease both;
}

.section-intro {
  max-width: 760px;
  margin: clamp(-28px, -2vw, -16px) 0 clamp(30px, 4vw, 52px);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.showcase-grid,
.comparison-card-grid,
.expandable-card-grid,
.category-grid,
.masonry-gallery,
.accordion-list {
  display: grid;
  gap: 22px;
}

.showcase-grid.three,
.expandable-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-grid.four,
.comparison-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-carousel {
  position: relative;
  display: grid;
  gap: 12px;
}

.product-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.product-carousel-button {
  position: relative;
  display: inline-grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.product-carousel-button::before {
  content: "";
  width: 11px;
  height: 11px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: translateX(2px) rotate(45deg);
}

.product-carousel-button.next::before {
  transform: translateX(-2px) rotate(225deg);
}

.product-carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 111, 47, 0.42);
}

.product-carousel-button:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.42);
  outline-offset: 4px;
}

.product-carousel-button:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.expandable-card-grid.product-carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  margin: 0 calc(var(--page-pad) * -1);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px var(--page-pad) 22px;
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-carousel-track .expandable-card {
  flex: 0 0 clamp(286px, 28vw, 342px);
  min-height: 100%;
  scroll-snap-align: start;
}

.product-carousel-track:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.3);
  outline-offset: 4px;
}

.support-helper-link {
  max-width: 760px;
  margin: -6px 0 0;
  color: rgba(10, 13, 13, 0.54);
  font-size: 0.92rem;
  line-height: 1.5;
}

.support-helper-link a {
  color: var(--moss);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(20, 35, 31, 0.28);
  text-underline-offset: 3px;
}

.support-helper-link a:hover {
  color: var(--ember);
  text-decoration-color: rgba(232, 111, 47, 0.44);
}

.showcase-card,
.comparison-card,
.expandable-card,
.accessory-card,
.review-card,
.article-card,
.category-card,
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow-soft);
}

.showcase-card,
.comparison-card,
.accessory-card,
.review-card,
.article-card,
.category-card,
.accordion-item {
  padding: clamp(22px, 3vw, 34px);
}

.showcase-card,
.comparison-card,
.expandable-card,
.accessory-card,
.review-card,
.article-card,
.category-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover,
.comparison-card:hover,
.expandable-card:hover,
.accessory-card:hover,
.review-card:hover,
.article-card:hover,
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 111, 47, 0.34);
  box-shadow: 0 28px 72px rgba(9, 12, 11, 0.18);
}

.showcase-icon {
  display: inline-grid;
  width: 54px;
  margin-bottom: 28px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(232, 111, 47, 0.32);
  border-radius: 8px;
  background: rgba(232, 111, 47, 0.1);
  box-shadow: 0 10px 24px rgba(232, 111, 47, 0.1);
  color: var(--ember);
  font-weight: 950;
}

.showcase-icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.showcase-card p,
.comparison-card li,
.expandable-card p,
.accessory-card p,
.review-card p,
.article-card p,
.category-card p,
.accordion-item p,
.split-showcase-copy p,
.split-showcase-copy li {
  color: var(--muted);
  line-height: 1.58;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.comparison-card ul,
.expanded-content ul,
.split-showcase-copy ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.comparison-card .button {
  width: 100%;
  margin-top: auto;
}

.placeholder-media {
  display: grid;
  min-height: 240px;
  place-items: center;
  border: 1px dashed rgba(10, 13, 13, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 35, 31, 0.08), rgba(232, 111, 47, 0.08)),
    rgba(255, 250, 240, 0.58);
  color: rgba(10, 13, 13, 0.44);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.placeholder-media.large {
  min-height: clamp(360px, 42vw, 560px);
}

.split-showcase-media {
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.split-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.placeholder-media.illustration {
  min-height: 170px;
  margin-bottom: 22px;
}

.expandable-card-media {
  display: grid;
  min-height: clamp(176px, 16vw, 218px);
  padding: clamp(12px, 1.8vw, 18px);
  place-items: center;
  border-bottom: 1px solid rgba(10, 13, 13, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 240, 0.56)),
    rgba(255, 250, 240, 0.72);
}

.expandable-card-media img {
  width: 100%;
  height: clamp(148px, 13vw, 184px);
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(10, 13, 13, 0.14));
}

.expandable-card,
.accessory-card,
.article-card {
  overflow: hidden;
}

.expandable-card {
  display: flex;
  flex-direction: column;
}

.expandable-card-body,
.accessory-card h3,
.accessory-card p,
.accessory-card details {
  padding-right: clamp(22px, 3vw, 30px);
  padding-left: clamp(22px, 3vw, 30px);
}

.expandable-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: clamp(18px, 2.4vw, 24px);
  padding-bottom: clamp(18px, 2.4vw, 24px);
}

.expandable-card-body .button {
  width: 100%;
  margin-top: auto;
}

.expandable-card-body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.36rem, 2vw, 1.72rem);
}

.expandable-card-body > p {
  margin-bottom: 10px;
}

.model-card-price {
  color: rgba(10, 13, 13, 0.52);
  font-size: 0.9rem;
  font-weight: 850;
}

.model-spec-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  list-style: none;
}

.model-spec-list li {
  position: relative;
  padding-left: 18px;
}

.model-spec-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ember);
}

.accessory-card h3 {
  padding-top: clamp(22px, 3vw, 30px);
}

.accessory-card details {
  padding-bottom: clamp(22px, 3vw, 30px);
}

.compact-accessory-card h3,
.compact-accessory-card p,
.compact-accessory-card details {
  padding-right: 0;
  padding-left: 0;
}

.compact-accessory-card h3 {
  padding-top: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
}

.compact-accessory-card details {
  padding-bottom: 0;
}

.compact-accessory-card summary {
  min-height: 40px;
}

details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-color: rgba(232, 111, 47, 0.42);
  color: var(--ember);
}

body:has(.tentbox-hero) .page-hero.tentbox-hero {
  min-height: clamp(560px, 78svh, 760px);
  padding-bottom: clamp(62px, 8svh, 96px);
}

body:has(.tentbox-hero) .tentbox-intro-section,
body:has(.tentbox-hero) .tentbox-model-section,
body:has(.tentbox-hero) .tentbox-accessory-section,
body:has(.tentbox-hero) .tentbox-faq-section {
  padding-top: clamp(40px, 4.8vw, 66px);
  padding-bottom: clamp(40px, 4.8vw, 66px);
}

body:has(.tentbox-hero) .tentbox-model-section {
  padding-top: clamp(46px, 5vw, 74px);
  padding-bottom: clamp(40px, 4.8vw, 64px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.025) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.018) 0 1px, transparent 1px 42px),
    linear-gradient(115deg, rgba(255, 250, 240, 0.035), transparent 24%),
    radial-gradient(circle at 12% 6%, rgba(232, 111, 47, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(232, 111, 47, 0.18), transparent 34%),
    linear-gradient(225deg, rgba(240, 165, 68, 0.08), transparent 34%),
    linear-gradient(180deg, #080c0b, #182720 58%, #0a0e0d);
}

.tentbox-model-section::before {
  height: 150px;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 111, 47, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0));
}

.tentbox-model-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.026) 48%, transparent 52%),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.018) 0 1px, transparent 1px 12px);
  opacity: 0.42;
}

.tentbox-model-section > * {
  z-index: 1;
}

body:has(.tentbox-hero) .tentbox-accessory-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.7)),
    var(--paper);
}

body:has(.tentbox-hero) .tentbox-faq-section {
  background: var(--white);
}

.tentbox-intro-section .section-heading,
.tentbox-model-section .section-heading,
.tentbox-accessory-section .section-heading,
.tentbox-faq-section .section-heading {
  max-width: 820px;
  margin-bottom: clamp(16px, 2.2vw, 26px);
}

.tentbox-intro-section .section-heading h2,
.tentbox-model-section .section-heading h2,
.tentbox-accessory-section .section-heading h2,
.tentbox-faq-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 1;
}

.tentbox-intro-section .section-heading {
  max-width: 760px;
}

.tentbox-intro-section .section-heading h2 {
  max-width: 680px;
  font-size: clamp(1.7rem, 2.55vw, 2.75rem);
  line-height: 1.05;
}

.tentbox-faq-section .section-heading {
  grid-template-columns: minmax(0, 640px) minmax(140px, 1fr);
  max-width: 760px;
}

.tentbox-faq-section .section-heading h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.9rem);
}

.tentbox-model-section .section-heading {
  color: var(--white);
}

.tentbox-model-section .section-heading::after {
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.32), transparent);
}

.tentbox-model-section .section-intro,
.tentbox-accessory-section .section-intro {
  max-width: 680px;
  margin-bottom: clamp(16px, 2.3vw, 24px);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.tentbox-model-section .section-intro {
  color: rgba(255, 250, 240, 0.72);
}

.tentbox-intro-section .showcase-card {
  padding: clamp(18px, 2.2vw, 26px);
}

.tentbox-intro-section .showcase-icon {
  width: 46px;
  margin-bottom: 18px;
}

.tentbox-accessory-section .showcase-grid.three {
  gap: 16px;
  align-items: start;
}

.tentbox-accessory-section .compact-accessory-card {
  padding: clamp(18px, 2.4vw, 26px);
}

.tentbox-accessory-section .compact-accessory-card p {
  margin-bottom: 14px;
}

.accessory-reveal {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 13, 13, 0.1);
}

.accessory-reveal p {
  margin: 0;
  padding: 0;
}

.accessory-reveal-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  list-style: none;
}

.accessory-reveal-list li {
  position: relative;
  padding-left: 16px;
}

.accessory-reveal-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ember);
}

.accessory-advice-link {
  width: fit-content;
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(20, 35, 31, 0.24);
  text-underline-offset: 4px;
}

.accessory-advice-link:hover,
.accessory-advice-link:focus-visible {
  color: var(--ember);
  text-decoration-color: rgba(232, 111, 47, 0.48);
}

.tentbox-faq-section .accordion-list {
  max-width: 860px;
  gap: 10px;
}

.tentbox-faq-section .accordion-item {
  padding: clamp(15px, 1.8vw, 20px);
}

.tentbox-faq-section .accordion-item p {
  margin-top: 12px;
}

.tentbox-model-section .product-carousel {
  gap: 10px;
}

.tentbox-model-section .product-carousel-controls {
  margin-top: -6px;
}

.tentbox-model-section .product-carousel-button {
  border-color: rgba(255, 250, 240, 0.24);
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.tentbox-model-section .product-carousel-button::before {
  border-color: var(--white);
}

.tentbox-model-section .product-carousel-button:hover {
  border-color: rgba(232, 111, 47, 0.74);
  background: rgba(232, 111, 47, 0.14);
}

.tentbox-model-section .expandable-card-grid.product-carousel-track {
  padding-bottom: 18px;
}

.tentbox-model-section .expandable-card {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.94);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(232, 111, 47, 0.05);
}

.tentbox-model-section .expandable-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 111, 47, 0.48);
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(232, 111, 47, 0.08);
}

.tentbox-model-section .expandable-card-media {
  min-height: clamp(158px, 14vw, 196px);
}

.tentbox-model-section .expandable-card-media img {
  height: clamp(132px, 11.5vw, 164px);
  transition: filter 220ms ease, transform 220ms ease;
}

.tentbox-model-section .expandable-card:hover .expandable-card-media img {
  filter: brightness(1.035) drop-shadow(0 18px 22px rgba(10, 13, 13, 0.14));
}

.tentbox-model-section .expandable-card-body {
  padding-top: clamp(15px, 2vw, 20px);
  padding-bottom: clamp(16px, 2vw, 22px);
}

.tentbox-model-section .expandable-card-body h3 {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.6vw, 1.48rem);
}

.tentbox-model-section .expandable-card-body > p {
  color: var(--muted);
}

.tentbox-model-section .model-spec-list {
  gap: 7px;
  margin: 8px 0 16px;
}

.compatibility-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin-top: clamp(14px, 2vw, 22px);
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 111, 47, 0.16), rgba(255, 250, 240, 0.06)),
    rgba(255, 250, 240, 0.07);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.compatibility-card h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.7vw, 1.52rem);
}

.compatibility-card .eyebrow {
  margin-bottom: 7px;
  color: var(--amber);
}

.compatibility-card p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.5;
}

.compatibility-card p + p {
  margin-top: 9px;
}

.compatibility-card-information {
  grid-template-columns: minmax(0, 1fr);
}

.compatibility-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(232, 111, 47, 0.58);
  border-radius: 8px;
  background: rgba(232, 111, 47, 0.14);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compatibility-card-link:hover,
.compatibility-card-link:focus-visible {
  background: linear-gradient(135deg, var(--ember), var(--amber));
  color: #170d07;
}

.tentbox-palette-section {
  position: relative;
  overflow: hidden;
  height: clamp(250px, 33vw, 430px);
  background: var(--forest);
}

.tentbox-palette-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 13, 0.18), transparent 34%, rgba(10, 13, 13, 0.22)),
    linear-gradient(90deg, rgba(10, 13, 13, 0.1), transparent 28%, rgba(10, 13, 13, 0.12));
  pointer-events: none;
}

.tentbox-palette-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(1.03) contrast(1.02);
}

body:has(.tentbox-hero) .cta-band {
  padding-top: clamp(50px, 6vw, 78px);
  padding-bottom: clamp(50px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(232, 111, 47, 0.13), transparent 32%),
    linear-gradient(90deg, rgba(10, 13, 13, 0.95), rgba(20, 35, 31, 0.9));
}

body:has(.tentbox-hero) .cta-band h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

body:has(.tentbox-hero) .cta-band p:not(.eyebrow) {
  max-width: 640px;
}

@media (min-width: 981px) {
  .tentbox-intro-section .showcase-grid {
    width: calc(100% - 48px);
    margin-left: 48px;
  }

  .tentbox-accessory-section .showcase-grid {
    width: calc(100% - 56px);
    margin-left: 56px;
  }

  .tentbox-faq-section .accordion-list {
    width: calc(100% - 52px);
    margin-left: 52px;
  }
}

.expanded-content {
  display: grid;
  gap: 20px;
  padding-top: 24px;
}

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

.expanded-lists h4 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.split-showcase.image-first {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.split-showcase-copy h2 {
  font-size: clamp(2.32rem, 4.6vw, 4.9rem);
}

.split-showcase-copy p {
  max-width: 660px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.masonry-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.masonry-gallery .placeholder-media {
  min-height: 230px;
}

.masonry-gallery .gallery-1 {
  min-height: 360px;
  grid-row: span 2;
}

.masonry-gallery .gallery-2 {
  min-height: 280px;
}

.review-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--ember);
  letter-spacing: 0.1em;
}

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

.category-card {
  display: grid;
  min-height: 230px;
  align-content: end;
}

.category-card span {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.08;
}

.accordion-list {
  max-width: 920px;
}

.accordion-item summary {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: left;
}

.accordion-item summary::after {
  content: "+";
  color: var(--ember);
  font-size: 1.2rem;
}

.accordion-item[open] summary::after {
  content: "-";
}

.accordion-item p {
  max-width: 760px;
  margin: 18px 0 0;
}

.cta-band p {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-color: var(--line-dark);
  background: rgba(255, 250, 241, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.78);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  font: inherit;
  padding: 14px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 250, 240, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

select:invalid {
  color: rgba(255, 250, 241, 0.58);
}

.field-help {
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-details article {
  border-color: var(--line-dark);
  background: rgba(255, 250, 241, 0.06);
  padding: 22px;
}

.contact-details address {
  display: grid;
  gap: 3px;
  margin: 14px 0 18px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}

.contact-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-top: 8px;
}

.contact-link-row span {
  min-width: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link-row a {
  color: var(--pine);
  font-weight: 900;
}

.contact-opening-hours p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-opening-hours p:last-child {
  margin-bottom: 0;
}

.contact-phone-list {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
  padding-left: 18px;
  line-height: 1.45;
}

.contact-phone-list a {
  color: var(--pine);
  font-weight: 900;
}

.map-placeholder {
  display: grid;
  min-height: 220px;
  grid-column: 1 / -1;
  place-items: center;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.68);
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-list a {
  padding: 24px;
}

.legal-list span {
  margin-bottom: 6px;
  font-size: 1.3rem;
  font-weight: 950;
}

.legal-list small {
  color: var(--muted);
}

.legal-policy-stack {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.legal-policy-section {
  scroll-margin-top: 110px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-policy-section h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-policy-meta {
  margin: -10px 0 18px;
  color: var(--pine);
  font-weight: 900;
}

.legal-policy-intro {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.legal-policy-contents {
  max-width: 860px;
  margin-top: 28px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-policy-contents h3 {
  margin: 0 0 16px;
  font-size: 1.08rem;
}

.legal-policy-contents ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin: 0;
  padding-left: 22px;
}

.legal-policy-contents a {
  color: var(--pine);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(32, 78, 66, 0.28);
  text-underline-offset: 3px;
}

.legal-policy-contents a:hover {
  text-decoration-color: currentColor;
}

.legal-policy-block {
  display: grid;
  gap: 12px;
  max-width: 860px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.legal-policy-block + .legal-policy-block {
  margin-top: 22px;
}

.legal-policy-block h3 {
  margin: 0;
  font-size: 1.08rem;
}

.legal-policy-block p,
.legal-policy-block ul,
.legal-policy-block address {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-policy-block ul {
  padding-left: 20px;
}

.legal-policy-block address {
  display: grid;
  gap: 2px;
  font-style: normal;
}

.legal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.legal-link-row a {
  color: var(--pine);
  font-weight: 900;
}

.contact-form-privacy {
  margin: 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-form-privacy a {
  color: rgba(255, 250, 241, 0.94);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(232, 111, 47, 0.62);
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .legal-policy-contents ol {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px max(22px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer img {
  width: 130px;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-credit {
  margin: 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-credit a:hover {
  color: rgba(255, 250, 241, 0.78);
}

.footer-credit a:focus-visible {
  border-radius: 2px;
  outline: 2px solid rgba(255, 250, 241, 0.72);
  outline-offset: 3px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-contact a {
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 250, 241, 0.7);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    right: 16px;
    left: 16px;
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 22px;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 8px;
    background: rgba(10, 13, 13, 0.96);
  }

  body.menu-open .nav-links {
    display: grid;
    gap: 18px;
  }

  .page-hero,
  .split,
  .home-proof-top,
  .teaser-panel,
  .configurator,
  .form-section {
    grid-template-columns: 1fr;
  }

  .teaser-copy {
    max-width: 680px;
  }

  .teaser-image-link {
    min-height: clamp(300px, 58vw, 460px);
  }

  .home-proof-media {
    width: min(100%, 420px);
    max-width: 420px;
    margin-top: 0;
  }

  .three,
  .feature-grid,
  .colour-grid,
  .proof-grid,
  .option-grid,
  .accessory-prompt-grid,
  .placeholder-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid.three,
  .showcase-grid.four,
  .comparison-card-grid,
  .expandable-card-grid,
  .category-grid,
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-showcase,
  .split-showcase.image-first {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-hero {
    --hero-content-top: 124px;
  }

  .site-header {
    width: calc(100% - 20px);
    padding-left: 14px;
  }

  .brand img {
    width: 112px;
  }

  .hero,
  .page-hero {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .home-proof-section {
    padding-top: clamp(70px, 18vw, 96px);
    padding-bottom: clamp(72px, 18vw, 98px);
  }

  .home-proof-top {
    gap: 34px;
    margin-bottom: 42px;
  }

  .home-proof-media {
    width: 100%;
  }

  .home-proof-media img,
  .home-proof-media video {
    aspect-ratio: 1.25;
    max-height: 260px;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .three,
  .feature-grid,
  .colour-grid,
  .proof-grid,
  .option-grid,
  .contact-routes,
  .contact-details,
  .placeholder-strip,
  .showcase-grid.three,
  .showcase-grid.four,
  .comparison-card-grid,
  .expandable-card-grid,
  .category-grid,
  .masonry-gallery,
  .expanded-lists {
    grid-template-columns: 1fr;
  }

  .masonry-gallery .placeholder-media,
  .masonry-gallery .gallery-1,
  .masonry-gallery .gallery-2 {
    min-height: 240px;
    grid-row: auto;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Premium visual refinement layer */
:root {
  --night: #090c0b;
  --deep: #101714;
  --field: #38463d;
  --clay: #b8663b;
  --bone: #fffaf0;
  --max: 1180px;
  --shadow-soft: 0 22px 70px rgba(9, 12, 11, 0.16);
  --shadow-deep: 0 36px 110px rgba(0, 0, 0, 0.38);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(255, 250, 240, 0)),
    var(--paper);
  text-rendering: geometricPrecision;
}

::selection {
  background: var(--ember);
  color: #160b05;
}

.site-header {
  top: 18px;
  width: min(1280px, calc(100% - 36px));
  min-height: 76px;
  padding: 11px 12px 11px 22px;
  border-color: rgba(255, 250, 240, 0.18);
  background: linear-gradient(180deg, rgba(8, 11, 10, 0.78), rgba(8, 11, 10, 0.56));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 72%, rgba(232, 111, 47, 0.16));
  opacity: 0.72;
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 64px;
  background: rgba(9, 12, 11, 0.9);
  border-color: rgba(255, 250, 240, 0.24);
}

.brand,
.nav-links,
.nav-cta,
.menu-toggle {
  position: relative;
}

.brand img {
  width: clamp(124px, 13vw, 172px);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.nav-links {
  gap: clamp(12px, 1.55vw, 24px);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 250, 240, 0.72);
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--ember), var(--amber));
  box-shadow: 0 16px 38px rgba(232, 111, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button:hover,
.nav-cta:hover {
  box-shadow: 0 20px 46px rgba(232, 111, 47, 0.32);
}

.hero,
.page-hero {
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
}

.hero-home {
  --hero-content-top: clamp(188px, 24svh, 230px);
  align-items: start;
  min-height: 100svh;
  padding-top: var(--hero-content-top);
  background: var(--night);
}

.hero-video {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.58), rgba(4, 6, 5, 0.14) 50%, rgba(4, 6, 5, 0.34)),
    linear-gradient(180deg, rgba(4, 6, 5, 0.08), rgba(4, 6, 5, 0.16) 48%, rgba(4, 6, 5, 0.52)),
    radial-gradient(circle at 68% 42%, rgba(232, 111, 47, 0.08), transparent 30%);
}

.hero-home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(150px, 24svh, 260px);
  background: var(--hero-bottom-fade);
  pointer-events: none;
}

.hero-inner {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  align-items: start;
  width: 100%;
}

.hero-copy-block {
  padding-bottom: clamp(12px, 4vw, 42px);
}

.hero-scroll-cue {
  appearance: none;
  position: absolute;
  bottom: clamp(24px, 4svh, 46px);
  left: 50%;
  z-index: 2;
  width: clamp(38px, 4vw, 48px);
  padding: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(9, 12, 11, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 250, 240, 0.14);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-scroll-cue:hover {
  border-color: rgba(255, 250, 240, 0.44);
  background: rgba(9, 12, 11, 0.28);
  transform: translateX(-50%) translateY(-2px);
}

.hero-scroll-cue:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.32);
  outline-offset: 4px;
}

.hero-scroll-cue::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 250, 240, 0.74);
  border-bottom: 2px solid rgba(255, 250, 240, 0.74);
  transform: translate(-50%, -50%) rotate(45deg);
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 1020px;
  margin-bottom: 26px;
  font-size: clamp(3.18rem, 7vw, 7.1rem);
  line-height: 0.9;
}

h2 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(2.32rem, 5.2vw, 5.35rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.24rem, 2vw, 1.78rem);
}

.hero p {
  color: rgba(255, 250, 240, 0.82);
}

.button-row {
  gap: 14px;
  margin-top: 32px;
}

.section {
  padding: clamp(84px, 11vw, 152px) max(22px, calc((100vw - var(--max)) / 2));
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.52), rgba(255, 250, 240, 0)),
    var(--paper);
}

.section-dark {
  background:
    linear-gradient(145deg, rgba(232, 111, 47, 0.08), transparent 32%),
    linear-gradient(180deg, #0a0e0d, #16231f 58%, #0b0f0e);
}

.watch-section {
  padding-top: clamp(100px, 9vw, 120px);
  padding-bottom: clamp(100px, 9vw, 120px);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.45fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(38px, 5.5vw, 74px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.card-grid,
.feature-grid,
.colour-grid,
.proof-grid,
.option-grid,
.contact-routes {
  gap: 22px;
}

.product-card,
.simple-card,
.route-card,
.option-card,
.summary-panel,
.contact-form,
.contact-details article,
.hotspot-placeholder,
.legal-list a {
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow-soft);
}

.product-card {
  position: relative;
  min-height: 520px;
  background: var(--bone);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 111, 47, 0.36);
  box-shadow: 0 34px 90px rgba(9, 12, 11, 0.22);
}

.card-kicker {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background: rgba(9, 12, 11, 0.55);
  color: var(--bone);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card > img {
  height: 330px;
  filter: saturate(0.94) contrast(1.04);
}

.product-card div {
  position: relative;
  margin-top: -28px;
  border-top: 1px solid rgba(9, 12, 11, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), var(--bone));
}

.text-link {
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 7vw, 96px);
}

.proof-grid article,
.simple-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.04));
  box-shadow: none;
}

.proof-grid article {
  min-height: 250px;
}

.proof-grid span {
  display: block;
  margin-bottom: 44px;
  letter-spacing: 0.12em;
}

.teaser-panel {
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 78% 52%, rgba(232, 111, 47, 0.16), transparent 33%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.04)),
    var(--deep);
  box-shadow: var(--shadow-soft);
}

.section-dark .teaser-panel {
  border-color: var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.04)),
    var(--deep);
  color: var(--white);
}

.section-dark .teaser-action span {
  color: rgba(255, 250, 241, 0.62);
}

.teaser-action {
  display: grid;
  gap: 14px;
}

.teaser-action span {
  color: var(--stone);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .teaser-action span {
  color: rgba(255, 250, 241, 0.62);
}

.cta-band {
  position: relative;
  padding: clamp(86px, 11vw, 146px) 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(232, 111, 47, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(9, 12, 11, 0.96), rgba(20, 35, 31, 0.86));
  color: var(--bone);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
}

.cta-band > * {
  position: relative;
}

.cta-band p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.58;
}

.page-hero {
  gap: clamp(32px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(232, 111, 47, 0.09), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(255, 250, 240, 0.07), transparent 32%),
    var(--forest);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(150px, 24svh, 260px);
  background: var(--hero-bottom-fade);
  pointer-events: none;
}

.page-hero > div,
.page-hero > img {
  position: relative;
  z-index: 1;
}

.page-hero > img {
  filter: drop-shadow(0 42px 64px rgba(0, 0, 0, 0.44));
}

.page-hero.about-hero {
  grid-template-columns: minmax(0, 720px);
  align-content: start;
  min-height: clamp(690px, 84svh, 860px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.about-hero > div:first-of-type {
  max-width: 760px;
}

.about-hero .eyebrow {
  margin-bottom: 10px;
}

.about-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.18rem, 6.2vw, 6.3rem);
}

.about-hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.48;
}

.about-hero .button-row {
  margin-top: 24px;
}

.about-body-section {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  grid-template-areas: "copy media";
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.about-story-section.reverse {
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "media copy";
}

.about-story-copy {
  grid-area: copy;
  max-width: 640px;
}

.about-story-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: 0.98;
}

.about-story-copy .copy-stack {
  display: grid;
  gap: 12px;
}

.about-story-copy .copy-stack p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark .about-story-copy .copy-stack p,
.section-dark .about-visit-details div {
  color: rgba(255, 250, 241, 0.74);
}

.about-image-placeholder {
  grid-area: media;
  display: grid;
  min-height: 0;
  height: clamp(260px, 32vw, 430px);
  place-items: center;
  border: 1px dashed rgba(10, 13, 13, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 35, 31, 0.08), rgba(232, 111, 47, 0.08)),
    rgba(255, 250, 240, 0.72);
  color: rgba(10, 13, 13, 0.42);
  overflow: hidden;
}

.section-dark .about-image-placeholder {
  border-color: var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.1), rgba(232, 111, 47, 0.11)),
    rgba(255, 250, 241, 0.05);
  color: rgba(255, 250, 241, 0.4);
}

.about-image {
  box-sizing: border-box;
  border-style: solid;
  background: rgba(10, 13, 13, 0.05);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-image-original-hero {
  position: relative;
}

.about-image-original-hero img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 25%;
}

.about-image-tight {
  aspect-ratio: 1616 / 1080;
  height: auto;
}

.about-image-technical {
  height: clamp(220px, 24vw, 320px);
  padding: clamp(10px, 1.2vw, 14px);
  border-color: rgba(255, 250, 241, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.94)),
    #fffaf1;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(10, 13, 13, 0.06);
}

.about-image-technical img {
  object-position: center center;
}

.supplier-board {
  grid-area: media;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(10, 13, 13, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.94)),
    var(--paper);
  box-shadow: 0 22px 48px rgba(10, 13, 13, 0.12);
}

.supplier-board-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 13, 13, 0.1);
}

.supplier-board-header p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
}

.supplier-board-header span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.supplier-tile {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid rgba(10, 13, 13, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
}

.supplier-mark {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  font-weight: 950;
  line-height: 1;
}

.supplier-logo {
  display: block;
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.supplier-label {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-testimonial-section {
  display: block;
}

.about-visit-section {
  display: block;
}

.about-testimonial-section .about-story-copy {
  max-width: none;
}

.about-visit-section .about-story-copy {
  max-width: none;
}

.about-testimonial-section .copy-stack p {
  max-width: 720px;
}

.about-visit-section .copy-stack p {
  max-width: 760px;
}

.about-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: 26px;
}

.about-testimonial-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.94), rgba(244, 230, 206, 0.62)),
    rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

.about-testimonial-stars {
  margin-bottom: 16px;
  color: var(--ember);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.about-testimonials blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 750;
  line-height: 1.5;
}

.about-testimonials blockquote::before {
  content: open-quote;
}

.about-testimonials blockquote::after {
  content: close-quote;
}

.about-testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 13, 13, 0.1);
}

.about-testimonial-name {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-testimonial-source {
  margin: 0;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-testimonial-footer a {
  flex: 0 0 auto;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: rgba(20, 35, 31, 0.28);
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.about-testimonial-footer a:hover {
  color: var(--ember);
  text-decoration-color: rgba(232, 111, 47, 0.48);
}

.about-visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-visit-details div {
  min-height: 86px;
  padding: 18px;
  border: 1px dashed rgba(10, 13, 13, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--muted);
  font-weight: 850;
}

.about-visit-details div:last-child {
  grid-column: 1 / -1;
  min-height: 132px;
}

.section-dark .about-visit-details div {
  border-color: var(--line-dark);
  background: rgba(255, 250, 241, 0.06);
}

.about-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: 28px;
}

.about-location-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 18px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(244, 230, 206, 0.64)),
    rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

.about-location-copy {
  display: grid;
  gap: 12px;
}

.about-location-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  line-height: 1.05;
}

.about-location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-location-card address {
  display: grid;
  gap: 3px;
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
  line-height: 1.38;
}

.about-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.about-location-links a,
.about-directions-link {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: rgba(20, 35, 31, 0.28);
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.about-location-links a:hover,
.about-directions-link:hover {
  color: var(--ember);
  text-decoration-color: rgba(232, 111, 47, 0.48);
}

.about-location-map {
  height: clamp(190px, 18vw, 230px);
  overflow: hidden;
  border: 1px solid rgba(10, 13, 13, 0.1);
  border-radius: 8px;
  background: rgba(20, 35, 31, 0.08);
}

.about-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.external-media-placeholder { display: grid; width: 100%; height: 100%; place-content: center; gap: 12px; padding: 22px; text-align: center; }
.external-media-placeholder.is-loaded { display: block; padding: 0; }
.external-media-placeholder.is-loaded iframe { display: block; width: 100%; height: 100%; border: 0; }
.external-media-placeholder p { margin: 0; color: var(--muted); font-weight: 800; line-height: 1.45; }
.external-media-placeholder button, .cookie-actions button, .cookie-dialog-actions button { min-height: 44px; border: 1px solid currentColor; border-radius: 4px; background: transparent; color: inherit; font: inherit; font-size: .76rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.external-media-placeholder button { justify-self: center; padding: 10px 18px; color: var(--moss); }

.cookie-banner { position: fixed; z-index: 1000; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; max-width: 1160px; margin: auto; padding: 22px; border: 1px solid rgba(255,250,241,.22); border-radius: 8px; background: var(--ink); color: var(--white); box-shadow: 0 18px 60px rgba(0,0,0,.34); }
.cookie-banner[hidden], .cookie-dialog-backdrop[hidden] { display: none; }
.cookie-banner h2, .cookie-banner p { margin: 0; }
.cookie-banner h2 { font-size: 1.25rem; }
.cookie-banner p { margin-top: 7px; color: rgba(255,250,241,.78); line-height: 1.5; }
.cookie-banner a { display: inline-block; margin-top: 8px; color: var(--white); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: grid; grid-template-columns: repeat(3, minmax(145px, 1fr)); gap: 9px; }
.cookie-actions button { padding: 10px 13px; color: var(--white); }
.cookie-actions button:hover, .cookie-dialog-actions button:hover { background: rgba(255,250,241,.12); }
.cookie-dialog-backdrop { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 18px; background: rgba(8,12,11,.78); }
.cookie-dialog { position: relative; width: min(620px, 100%); max-height: calc(100svh - 36px); overflow: auto; padding: clamp(24px, 4vw, 38px); border: 2px solid var(--ink); border-radius: 8px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 80px rgba(0,0,0,.58); }
.cookie-dialog > h2 { margin: 4px 0 8px; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cookie-dialog > p:not(.eyebrow) { margin: 0 38px 20px 0; color: #4b4842; line-height: 1.55; }
.cookie-dialog-close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); font-size: 2rem; cursor: pointer; }
.cookie-category { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center; padding: 18px 0; border-top: 2px solid rgba(10,13,13,.28); }
.cookie-category h3, .cookie-category p { margin: 0; }
.cookie-category p { margin-top: 5px; color: #4b4842; line-height: 1.45; }
.cookie-category span { color: #263428; font-size: .75rem; font-weight: 950; text-transform: uppercase; }
.cookie-category input { width: 26px; height: 26px; outline: 1px solid var(--ink); outline-offset: 1px; accent-color: #263428; }
.cookie-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.cookie-dialog-actions button { padding: 10px 16px; border-color: var(--ink); background: var(--white); color: var(--ink); }
.cookie-dialog-actions [data-cookie-save] { border-color: #14231f; background: #14231f; color: var(--white); }
.cookie-dialog-open { overflow: hidden; }
.footer-cookie-settings { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.cookie-banner button:focus-visible, .cookie-banner a:focus-visible, .cookie-dialog button:focus-visible, .cookie-dialog input:focus-visible, .footer-cookie-settings:focus-visible, .external-media-placeholder button:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }
@media (max-width: 820px) { .cookie-banner { grid-template-columns: 1fr; } .cookie-actions { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .cookie-banner { right: 8px; bottom: 8px; left: 8px; max-height: calc(100svh - 16px); overflow: auto; padding: 17px; } .cookie-category { gap: 12px; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner *, .cookie-dialog * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }

.about-directions-link {
  justify-self: start;
}

.section-dark .button-secondary.dark-text {
  border-color: rgba(255, 250, 241, 0.28);
  color: var(--white);
}

.page-hero > .hero-scroll-cue {
  position: absolute;
  z-index: 2;
}

.page-hero.hero-background {
  grid-template-columns: minmax(0, 720px);
  align-content: start;
  background: var(--forest);
}

.page-hero.product-hero {
  min-height: clamp(760px, 94svh, 980px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.page-hero.tentbox-hero {
  grid-template-columns: minmax(0, 700px);
  align-content: start;
  min-height: clamp(760px, 92svh, 960px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.page-hero.buffalo-hero {
  grid-template-columns: minmax(0, 700px);
  align-content: start;
  min-height: clamp(690px, 84svh, 860px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.page-hero.build-hero {
  grid-template-columns: minmax(0, 760px);
  align-content: start;
  min-height: clamp(760px, 92svh, 960px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.page-hero.build-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.95vw, 6rem);
  line-height: 0.94;
}

.page-hero.tentbox-hero::after {
  background: var(--hero-bottom-fade);
}

.page-hero.buffalo-hero::after {
  background: var(--hero-bottom-fade);
}

.page-hero.build-hero::after {
  background: var(--hero-bottom-fade);
}

.page-hero.tentbox-hero > div {
  max-width: 680px;
}

.page-hero.buffalo-hero > div {
  max-width: 680px;
}

.buffalo-range-section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(50px, 5.5vw, 84px);
  background: var(--paper);
}

.buffalo-range-section .section-heading {
  max-width: 920px;
  margin-bottom: clamp(18px, 2.4vw, 32px);
}

.buffalo-editorial-intro {
  max-width: 980px;
}

.buffalo-editorial-intro .section-intro {
  max-width: 820px;
  margin-bottom: clamp(24px, 3vw, 42px);
  color: rgba(10, 13, 13, 0.68);
}

.buffalo-performance-group {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
}

.buffalo-performance-heading {
  display: grid;
  max-width: 760px;
  gap: 12px;
}

.buffalo-performance-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
}

.buffalo-carousel-stack {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

.buffalo-carousel-group {
  display: grid;
  gap: 12px;
}

.buffalo-carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(10, 13, 13, 0.1);
}

.buffalo-carousel-heading h3 {
  margin: 0;
  color: var(--moss);
  font-size: clamp(1.34rem, 2vw, 1.9rem);
}

.buffalo-product-carousel {
  gap: 10px;
}

.buffalo-product-carousel .product-carousel-controls {
  margin-top: -56px;
}

.buffalo-product-track {
  padding-top: 8px;
}

.buffalo-product-track .buffalo-product-card {
  flex-basis: clamp(284px, 26vw, 336px);
  min-height: 484px;
  border-color: rgba(20, 35, 31, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.86)),
    var(--paper);
}

.buffalo-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 111, 47, 0.38);
}

.buffalo-product-card .expandable-card-media {
  min-height: clamp(134px, 12.2vw, 166px);
  padding: clamp(10px, 1.4vw, 14px);
}

.buffalo-product-card .expandable-card-media img {
  height: clamp(108px, 9.6vw, 138px);
  object-fit: contain;
  object-position: center;
}

.product-placeholder {
  display: grid;
  min-height: clamp(134px, 12.2vw, 166px);
  padding: clamp(12px, 1.6vw, 16px);
  place-items: center;
  border-bottom: 1px solid rgba(20, 35, 31, 0.1);
  background:
    linear-gradient(135deg, rgba(20, 35, 31, 0.1), rgba(232, 111, 47, 0.08)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(230, 221, 202, 0.56));
}

.product-placeholder span {
  display: inline-flex;
  max-width: 170px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(20, 35, 31, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: rgba(20, 35, 31, 0.62);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.buffalo-product-card-body {
  gap: 9px;
  padding-top: clamp(16px, 2vw, 20px);
  padding-bottom: clamp(18px, 2.2vw, 22px);
}

.buffalo-product-card-body h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.08;
}

.buffalo-product-card-body > p {
  margin: 0;
}

.buffalo-product-category {
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.buffalo-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.buffalo-product-tags li {
  padding: 6px 9px;
  border: 1px solid rgba(20, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(20, 35, 31, 0.055);
  color: rgba(20, 35, 31, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

.buffalo-product-card .model-card-price {
  margin-top: auto;
}

.buffalo-product-card .button {
  margin-top: 4px;
}

.buffalo-advice-section .split-showcase {
  align-items: stretch;
}

.buffalo-advice-section .split-showcase-copy {
  align-self: center;
}

.section-dark.buffalo-advice-section {
  padding-top: clamp(52px, 6vw, 86px);
  background: #0a0e0d;
}

.section-dark.buffalo-advice-section::before {
  content: none;
  display: none;
  height: 0;
  background: none;
}

.section-dark.buffalo-advice-section .split-showcase-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.78);
}

.section-dark.buffalo-advice-section .placeholder-media {
  border-color: rgba(255, 250, 241, 0.18);
  background:
    linear-gradient(135deg, rgba(232, 111, 47, 0.14), rgba(255, 250, 241, 0.06)),
    rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.58);
}

.page-hero.build-hero > div {
  max-width: 740px;
}

.page-hero.tentbox-hero.hero-background::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.74) 0%, rgba(4, 6, 5, 0.44) 34%, rgba(4, 6, 5, 0.1) 58%, rgba(4, 6, 5, 0) 78%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.06), rgba(4, 6, 5, 0.14));
}

.page-hero.about-hero.hero-background::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.78) 0%, rgba(4, 6, 5, 0.58) 34%, rgba(4, 6, 5, 0.18) 62%, rgba(4, 6, 5, 0.04) 82%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.08), rgba(4, 6, 5, 0.3));
}

.page-hero.about-hero > img.page-hero-bg {
  object-position: 54% 50%;
  filter: saturate(0.98) contrast(1.04) brightness(0.94);
}

.page-hero.tentbox-hero > img.page-hero-bg {
  object-position: 66% 54%;
  filter: brightness(1.13) saturate(1.02);
}

.page-hero.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.58) 0%, rgba(4, 6, 5, 0.34) 36%, rgba(4, 6, 5, 0.04) 68%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.08), rgba(4, 6, 5, 0.3));
  pointer-events: none;
}

.page-hero.build-hero.hero-background::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.8) 0%, rgba(4, 6, 5, 0.66) 34%, rgba(4, 6, 5, 0.34) 60%, rgba(4, 6, 5, 0.12) 84%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.12), rgba(4, 6, 5, 0.36));
}

.page-hero.hero-background::after {
  z-index: 1;
}

.page-hero.product-hero::after {
  background: var(--hero-bottom-fade);
}

.page-hero > img.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 72% 50%;
  filter: none;
}

.page-hero > video.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.98) contrast(1.03);
  opacity: 0;
  transition: opacity 700ms ease;
}

.page-hero > video.page-hero-bg.is-loaded {
  opacity: 1;
}

.page-hero.build-hero > video.page-hero-bg {
  object-position: center center;
}

.page-hero.hero-background > div {
  max-width: 690px;
}

.page-hero.build-hero.hero-background > div {
  max-width: 740px;
}

.feature-grid article,
.colour-grid article {
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}

.feature-grid article::after,
.colour-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}

.feature-grid img,
.colour-grid img {
  min-height: 340px;
  transition: transform 500ms ease;
}

.feature-grid article:hover img,
.colour-grid article:hover img {
  transform: scale(1.045);
}

.feature-grid h3,
.colour-grid h3 {
  z-index: 1;
}

.hotspot-section {
  padding-top: clamp(52px, 5.8vw, 86px);
  padding-bottom: clamp(58px, 6.6vw, 96px);
}

.hotspot-explorer {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
}

.hotspot-copy {
  max-width: 880px;
}

.hotspot-copy .eyebrow {
  margin-bottom: 12px;
}

.hotspot-copy h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

.hotspot-copy p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.58;
}

.trailer-detail-section {
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.trailer-detail-section .section-heading {
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.trailer-detail-section .section-heading .eyebrow {
  margin-bottom: -2px;
}

.trailer-colour-section {
  padding-top: clamp(50px, 5.6vw, 76px);
  padding-bottom: clamp(52px, 5.8vw, 80px);
  background: #fff;
}

.trailer-colour-section .section-heading {
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  margin-bottom: clamp(14px, 2vw, 20px);
  text-align: center;
}

.trailer-colour-section .section-heading h2 {
  font-size: clamp(2.28rem, 4.2vw, 4.18rem);
}

.trailer-colour-section .section-heading .eyebrow {
  margin-bottom: -2px;
}

.trailer-colour-section .section-heading::after {
  display: none;
}

.trailer-colour-section .section-intro {
  max-width: 620px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}

.trailer-colour-section .colour-grid article,
.trailer-colour-section .colour-grid img {
  min-height: clamp(220px, 24vw, 300px);
}

.finish-selector {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
}

.finish-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.finish-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(10, 13, 13, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(9, 12, 11, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.finish-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 111, 47, 0.38);
  box-shadow: 0 12px 28px rgba(9, 12, 11, 0.08);
}

.finish-tab:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.28);
  outline-offset: 4px;
}

.finish-tab.is-active {
  border-color: rgba(232, 111, 47, 0.46);
  background: rgba(232, 111, 47, 0.16);
  color: #170d07;
  box-shadow: inset 0 0 0 1px rgba(232, 111, 47, 0.16), 0 10px 24px rgba(232, 111, 47, 0.08);
}

.finish-swatch {
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border: 1px solid rgba(10, 13, 13, 0.18);
  border-radius: 999px;
  background: var(--finish-swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.18);
}

.finish-tab.is-active .finish-swatch {
  border-color: rgba(23, 13, 7, 0.26);
}

.finish-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.64fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.finish-visual {
  position: relative;
  min-height: clamp(300px, 36vw, 470px);
  overflow: visible;
  border-radius: 8px;
  background: transparent;
}

.finish-visual::before {
  content: "";
  position: absolute;
  inset: auto 7% 5% 7%;
  height: 32%;
  border-radius: 999px;
  background: rgba(232, 111, 47, 0.035);
  filter: blur(34px);
  pointer-events: none;
}

.finish-image {
  position: absolute;
  top: -6%;
  left: -8%;
  width: 116%;
  height: 112%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: brightness(1.025) contrast(1.02) drop-shadow(0 28px 36px rgba(9, 12, 11, 0.12));
  -webkit-mask-image: radial-gradient(ellipse 70% 78% at 48% 56%, #000 62%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 78% at 48% 56%, #000 62%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.finish-image.is-active {
  opacity: 1;
  transform: translateY(0);
}

.finish-card-stack {
  position: relative;
  min-height: 338px;
}

.finish-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(10, 13, 13, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 24px 70px rgba(9, 12, 11, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 340ms ease, transform 340ms ease;
  pointer-events: none;
}

.finish-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.finish-card-kicker {
  margin-bottom: 12px;
  color: var(--ember);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.84;
}

.finish-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.66rem, 2.2vw, 2.28rem);
}

.finish-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.finish-card .finish-strapline {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.28vw, 1.14rem);
  font-weight: 900;
  line-height: 1.35;
}

.trailer-detail-section .feature-grid article,
.trailer-detail-section .feature-grid img {
  min-height: clamp(280px, 28vw, 320px);
}

.trailer-specifications-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.trailer-specifications-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.trailer-specifications-intro h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

.trailer-specifications-intro > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.64;
}

.trailer-specifications-data {
  display: grid;
  gap: clamp(28px, 3.5vw, 42px);
}

.trailer-specification-groups,
.trailer-specification-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
}

.trailer-specification-group h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
}

.trailer-specification-group dl {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.trailer-specification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.trailer-specification-row dt,
.trailer-specification-row dd {
  margin: 0;
}

.trailer-specification-row dt {
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.9rem;
  line-height: 1.4;
}

.trailer-specification-row dd {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.trailer-specification-highlight {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.6vw, 30px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(232, 111, 47, 0.12), rgba(255, 250, 241, 0.04));
}

.trailer-specification-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--ember);
}

.trailer-specification-highlight strong,
.trailer-specification-highlight span {
  position: relative;
}

.trailer-specification-highlight strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.trailer-specification-highlight span {
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:has(.product-hero) .cta-band {
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.hotspot-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.88fr);
  gap: clamp(16px, 2.4vw, 30px);
  align-items: center;
}

.hotspot-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  background: #111614;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
}

.hotspot-image-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.hotspot-marker {
  appearance: none;
  position: absolute;
  top: var(--hotspot-y);
  left: var(--hotspot-x);
  width: 44px;
  padding: 0;
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.hotspot-marker::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 250, 240, 0.86);
  border-radius: inherit;
  background: var(--ember);
  box-shadow: 0 0 0 7px rgba(232, 111, 47, 0.13), 0 14px 30px rgba(0, 0, 0, 0.34);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hotspot-marker::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(232, 111, 47, 0.46);
  border-radius: inherit;
  opacity: 0.34;
  transform: scale(0.86);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hotspot-marker:hover,
.hotspot-marker:focus-visible,
.hotspot-marker.is-active {
  transform: translate(-50%, -50%) scale(1.08);
}

.hotspot-marker:hover::before,
.hotspot-marker:focus-visible::before,
.hotspot-marker.is-active::before {
  background: var(--amber);
  box-shadow: 0 0 0 9px rgba(232, 111, 47, 0.2), 0 18px 38px rgba(0, 0, 0, 0.4);
}

.hotspot-marker:hover::after,
.hotspot-marker:focus-visible::after,
.hotspot-marker.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.hotspot-marker:focus-visible {
  outline: 3px solid rgba(255, 250, 240, 0.72);
  outline-offset: 6px;
}

.hotspot-card-area {
  align-self: center;
}

.hotspot-card {
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.105), rgba(255, 250, 240, 0.045)),
    rgba(9, 12, 11, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hotspot-card span,
.hotspot-selector {
  display: block;
  color: var(--amber);
}

.hotspot-card span {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hotspot-card h3 {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: clamp(1.38rem, 1.75vw, 1.85rem);
  overflow-wrap: break-word;
}

.hotspot-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.62;
}

.hotspot-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotspot-selector {
  appearance: none;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.055);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hotspot-selector:hover,
.hotspot-selector:focus-visible,
.hotspot-selector.is-active {
  border-color: rgba(232, 111, 47, 0.48);
  background: rgba(232, 111, 47, 0.14);
  color: var(--white);
}

.hotspot-selector:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.28);
  outline-offset: 3px;
}

.option-card {
  min-height: 202px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.option-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 111, 47, 0.34);
}

.option-card.is-selected {
  outline: 3px solid rgba(232, 111, 47, 0.34);
  border-color: var(--ember);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 24px 68px rgba(232, 111, 47, 0.16);
}

.section-dark .simple-card p,
.section-dark .small-copy,
.section-dark .product-card p,
.section-dark .proof-grid p {
  color: rgba(255, 250, 240, 0.72);
}

.summary-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.02)),
    var(--ink);
}

.comparison-table {
  box-shadow: var(--shadow-soft);
}

.placeholder-strip span {
  background: rgba(255, 250, 240, 0.04);
}

.route-card {
  min-height: 330px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(232, 111, 47, 0.24);
  border-color: var(--ember);
}

.legal-list a {
  transition: transform 180ms ease, border-color 180ms ease;
}

.legal-list a:hover {
  transform: translateX(4px);
  border-color: rgba(232, 111, 47, 0.36);
}

.page-hero.contact-hero {
  grid-template-columns: minmax(0, 720px);
  align-content: start;
  min-height: clamp(700px, 86svh, 920px);
  padding-top: var(--hero-content-top);
  padding-bottom: clamp(94px, 12svh, 148px);
}

.page-hero.contact-hero::after {
  background: var(--hero-bottom-fade);
}

.page-hero.contact-hero.hero-background::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.84) 0%, rgba(4, 6, 5, 0.62) 38%, rgba(4, 6, 5, 0.18) 72%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.18), rgba(4, 6, 5, 0.32));
}

.page-hero.contact-hero > img.page-hero-bg {
  object-position: 68% 43%;
  filter: saturate(0.96) contrast(1.04) brightness(0.94);
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding-top: clamp(88px, 10vw, 144px);
}

.booking-panel,
.contact-form {
  scroll-margin-top: 120px;
}

.booking-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.04));
  box-shadow: var(--shadow-soft);
}

.contact-rig-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(232, 111, 47, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 111, 47, 0.16), rgba(255, 250, 240, 0.05) 58%),
    rgba(255, 250, 240, 0.06);
  box-shadow: var(--shadow-soft);
}

.contact-rig-summary[hidden] {
  display: none;
}

.contact-rig-summary h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-rig-summary p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.6;
}

.contact-rig-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-rig-summary dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.contact-rig-summary dt {
  margin-bottom: 6px;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-rig-summary dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
}

.booking-panel h2,
.contact-form h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
}

.rig-handoff-panel,
.booking-option-card {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.07);
}

.rig-handoff-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  padding: clamp(20px, 3vw, 28px);
}

.rig-handoff-panel[hidden] {
  display: none;
}

.rig-handoff-panel h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.rig-handoff-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.rig-handoff-panel dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.rig-handoff-panel dt {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rig-handoff-panel dd {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.rig-handoff-panel p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.55;
}

.rig-remove-button {
  width: fit-content;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rig-remove-button:focus-visible {
  outline: 3px solid rgba(232, 111, 47, 0.42);
  outline-offset: 4px;
}

.booking-panel-intro {
  max-width: 640px;
  margin: -10px 0 24px;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.6;
}

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

.booking-option-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  min-height: 320px;
  padding: clamp(20px, 2.5vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.05)),
    rgba(12, 14, 12, 0.28);
}

.booking-option-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.booking-option-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.58;
}

.booking-option-card .button {
  width: 100%;
  justify-content: center;
  align-self: end;
  white-space: nowrap;
}

.anchor-target {
  position: relative;
  top: -120px;
  display: block;
  height: 0;
  overflow: hidden;
}

.contact-main .contact-form {
  min-height: 0;
  border-color: var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.04)),
    rgba(8, 11, 10, 0.64);
  box-shadow: var(--shadow-soft);
}

.contact-email-option {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: -8px 0 4px;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.contact-email-option a {
  color: rgba(255, 250, 241, 0.9);
  text-decoration-color: rgba(255, 250, 241, 0.34);
  text-underline-offset: 4px;
}

.contact-email-option a:hover {
  color: var(--white);
  text-decoration-color: rgba(232, 111, 47, 0.72);
}

.contact-main .contact-form label {
  color: rgba(255, 250, 241, 0.9);
}

.contact-main .contact-form input,
.contact-main .contact-form select,
.contact-main .contact-form textarea {
  border-color: rgba(255, 250, 241, 0.28);
  background-color: rgba(4, 6, 5, 0.38);
}

.contact-main .contact-form select:invalid {
  color: rgba(255, 250, 241, 0.7);
}

.contact-main .field-help {
  color: rgba(255, 250, 241, 0.76);
}

.form-status {
  margin: 2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.84);
  font-weight: 750;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  border-color: rgba(128, 191, 128, 0.38);
  background: rgba(128, 191, 128, 0.12);
}

.form-status.is-error {
  border-color: rgba(232, 111, 47, 0.48);
  background: rgba(232, 111, 47, 0.14);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-lower {
  padding-top: clamp(76px, 9vw, 124px);
}

.contact-lower .about-location-grid {
  margin-top: clamp(26px, 4vw, 42px);
}

.contact-lower .about-location-map {
  height: clamp(230px, 24vw, 320px);
}

.contact-support-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
  margin-top: clamp(18px, 3vw, 30px);
}

.contact-support-strip article {
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(10, 13, 13, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.54);
}

.contact-support-strip h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.contact-support-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.contact-support-strip a {
  display: inline-block;
  margin-top: 16px;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: rgba(20, 35, 31, 0.28);
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.contact-support-links {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.contact-support-links a {
  margin-top: 0;
}

.contact-support-strip a:hover {
  color: var(--ember);
  text-decoration-color: rgba(232, 111, 47, 0.48);
}

.contact-final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: clamp(44px, 6vw, 76px) auto 0;
  padding-top: clamp(38px, 5vw, 58px);
  text-align: center;
}

.contact-final-cta::before {
  content: "";
  width: min(520px, 100%);
  height: 1px;
  margin-bottom: clamp(34px, 4vw, 48px);
  background:
    linear-gradient(90deg, transparent, rgba(20, 35, 31, 0.28) 18%, rgba(232, 111, 47, 0.56) 50%, rgba(20, 35, 31, 0.28) 82%, transparent);
}

.contact-final-cta .eyebrow {
  margin-bottom: 14px;
}

.contact-final-cta h2 {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
}

.contact-final-cta p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.contact-final-cta .button-row {
  margin-top: 34px;
}

.contact-future-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-future-slots article {
  min-height: 150px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.48);
}

.contact-future-slots h3 {
  margin-bottom: 0;
  color: var(--stone);
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 12px;
    font-size: 0.68rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(720px, calc(100% - 24px));
  }

  .menu-toggle {
    justify-self: end;
  }

  .nav-links {
    right: 12px;
    left: 12px;
    background: rgba(9, 12, 11, 0.96);
    box-shadow: var(--shadow-deep);
  }

  .hero-inner,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading::after {
    width: 100%;
  }

  .page-hero.tentbox-hero {
    grid-template-columns: minmax(0, 680px);
    min-height: clamp(720px, 88svh, 920px);
    padding-top: 132px;
    padding-bottom: 118px;
  }

  .page-hero.tentbox-hero > div {
    max-width: 680px;
  }

  .page-hero.tentbox-hero > img.page-hero-bg {
    object-position: 67% 54%;
  }

  .page-hero.about-hero {
    grid-template-columns: 1fr;
    padding-top: clamp(166px, 18svh, 196px);
  }

  .about-story-section,
  .about-story-section.reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
  }

  .about-story-section.about-design-section {
    grid-template-areas:
      "media"
      "copy";
  }

  .about-story-copy {
    max-width: 760px;
  }

  .about-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-main,
  .contact-future-slots,
  .contact-support-strip {
    grid-template-columns: 1fr;
  }

  .contact-rig-summary,
  .booking-options {
    grid-template-columns: 1fr;
  }

  .showcase-grid.three,
  .showcase-grid.four,
  .comparison-card-grid,
  .expandable-card-grid,
  .category-grid,
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-showcase,
  .split-showcase.image-first {
    grid-template-columns: 1fr;
  }

  .teaser-action {
    justify-items: start;
  }

  .hotspot-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .finish-configurator {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trailer-specifications-layout,
  .trailer-specification-groups,
  .trailer-specification-highlights {
    grid-template-columns: 1fr;
  }

  .trailer-specifications-layout {
    gap: 48px;
  }

  .trailer-specifications-data {
    gap: 30px;
  }

  .finish-visual {
    min-height: clamp(300px, 62vw, 460px);
  }

  .finish-card-stack {
    min-height: 300px;
  }

  .finish-card {
    justify-content: flex-start;
  }

  .hotspot-card,
  .hotspot-card-area {
    min-height: 0;
  }

  .hotspot-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    min-height: 62px;
    padding: 8px 8px 8px 13px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    top: 78px;
  }

  .hero,
  .page-hero {
    min-height: 82svh;
    padding: 124px 18px 62px;
  }

  .hero-home {
    min-height: 100svh;
  }

  .hero-video {
    transform: scale(1.12);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.16), rgba(4, 6, 5, 0.62)),
      linear-gradient(90deg, rgba(4, 6, 5, 0.5), rgba(4, 6, 5, 0.18));
  }

  .page-hero.hero-background {
    align-content: start;
  }

  .page-hero.product-hero {
    min-height: 92svh;
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .page-hero.tentbox-hero {
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .page-hero.buffalo-hero {
    min-height: clamp(620px, 78svh, 760px);
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .page-hero.build-hero {
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .buffalo-range-section {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .buffalo-range-section .section-heading {
    margin-bottom: 18px;
  }

  .buffalo-editorial-intro .section-intro {
    margin-bottom: 24px;
  }

  .buffalo-performance-group {
    gap: 22px;
  }

  .buffalo-carousel-stack {
    gap: 34px;
  }

  .section-dark.buffalo-advice-section {
    padding-top: 48px;
  }

  .page-hero.build-hero > video.page-hero-bg {
    inset: 0;
    width: 100%;
    object-position: 88% center;
    transform: none;
  }

  .page-hero.about-hero {
    padding-top: var(--hero-content-top);
  }

  .about-story-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .about-image-placeholder {
    height: clamp(260px, 70vw, 420px);
    min-height: 0;
  }

  .about-image-tight {
    height: auto;
  }

  .about-image-technical {
    height: clamp(210px, 54vw, 300px);
  }

  .supplier-board {
    padding: 16px;
  }

  .supplier-board-header {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .supplier-grid {
    gap: 8px;
  }

  .supplier-tile {
    min-height: 68px;
    padding: 12px;
  }

  .supplier-mark {
    font-size: 0.98rem;
  }

  .about-visit-details {
    grid-template-columns: 1fr;
  }

  .about-location-card {
    padding: 18px;
  }

  .about-location-map {
    height: 198px;
  }

  .page-hero.contact-hero {
    min-height: 84svh;
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .page-hero.contact-hero.hero-background::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.2), rgba(4, 6, 5, 0.66) 34%, rgba(4, 6, 5, 0.72) 74%, rgba(4, 6, 5, 0.36)),
      linear-gradient(90deg, rgba(4, 6, 5, 0.62), rgba(4, 6, 5, 0.22));
  }

  .page-hero.tentbox-hero.hero-background::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.22), rgba(4, 6, 5, 0.5) 62%, rgba(4, 6, 5, 0.28)),
      linear-gradient(90deg, rgba(4, 6, 5, 0.48), rgba(4, 6, 5, 0.08) 78%);
  }

  .page-hero.tentbox-hero > img.page-hero-bg {
    object-position: 68% 54%;
  }

  .page-hero.tentbox-hero > .hero-scroll-cue {
    bottom: 24px;
  }

  .page-hero.hero-background::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.08), rgba(4, 6, 5, 0.6) 60%),
      linear-gradient(90deg, rgba(4, 6, 5, 0.42), rgba(4, 6, 5, 0.12));
  }

  .page-hero > img.page-hero-bg {
    object-position: 70% 50%;
  }

  .page-hero.contact-hero > img.page-hero-bg {
    object-position: 53% 42%;
    filter: saturate(0.96) contrast(1.04) brightness(0.9);
  }

  h1 {
    font-size: clamp(2.66rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.32rem, 12vw, 3.9rem);
  }

  .section {
    padding: 72px 18px;
  }

  .section.buffalo-range-section {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .section.buffalo-advice-section {
    padding-top: 48px;
  }

  .about-body-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .option-grid,
  .accessory-prompt-grid {
    grid-template-columns: 1fr;
  }

  .option-card-topline,
  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-actions .button {
    width: 100%;
  }

  .teaser-panel {
    grid-template-columns: 1fr;
  }

  .teaser-image-link {
    min-height: clamp(238px, 68vw, 320px);
  }

  .teaser-annotation {
    width: clamp(52px, 18vw, 78px);
    opacity: 0.46;
  }

  .teaser-annotation span {
    top: -24px;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .annotation-tentbox {
    top: 24%;
    left: 41%;
  }

  .annotation-colour {
    right: 12%;
  }

  .annotation-rack {
    left: 12%;
  }

  .teaser-action,
  .teaser-action .button {
    width: 100%;
  }

  .product-card {
    min-height: 0;
  }

  .showcase-grid.three,
  .showcase-grid.four,
  .comparison-card-grid,
  .expandable-card-grid,
  .category-grid,
  .masonry-gallery,
  .expanded-lists {
    grid-template-columns: 1fr;
  }

  .masonry-gallery .placeholder-media,
  .masonry-gallery .gallery-1,
  .masonry-gallery .gallery-2 {
    min-height: 240px;
    grid-row: auto;
  }

  .product-card > img {
    height: 260px;
  }

  .feature-grid article,
  .colour-grid article,
  .feature-grid img,
  .colour-grid img {
    min-height: 292px;
  }

  .trailer-colour-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .trailer-specifications-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .trailer-specifications-layout {
    gap: 38px;
  }

  .trailer-specification-groups {
    gap: 32px;
  }

  .trailer-specification-row {
    gap: 14px;
  }

  .trailer-specification-highlight {
    min-height: 132px;
  }

  .finish-selector {
    gap: 22px;
  }

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

  .finish-tab:last-child {
    grid-column: 1 / -1;
  }

  .finish-tab {
    width: 100%;
    min-height: 44px;
    padding-inline: 11px;
    font-size: 0.68rem;
    letter-spacing: 0.045em;
  }

  .finish-visual {
    min-height: clamp(230px, 68vw, 330px);
  }

  .finish-card-stack {
    min-height: 312px;
  }

  .finish-card {
    padding: 22px;
  }

  .finish-card h3 {
    font-size: 1.54rem;
  }

  .hotspot-stage {
    gap: 18px;
  }

  .hotspot-image-wrap {
    margin-inline: -8px;
  }

  .hotspot-marker {
    width: 44px;
  }

  .hotspot-marker::before {
    inset: 10px;
    box-shadow: 0 0 0 7px rgba(232, 111, 47, 0.16), 0 12px 26px rgba(0, 0, 0, 0.34);
  }

  .hotspot-card {
    padding: 22px;
  }

  .hotspot-card span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hotspot-card h3 {
    font-size: 1.32rem;
    line-height: 1.12;
  }

  .hotspot-feature-list {
    gap: 7px;
  }

  .hotspot-selector {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.64rem;
  }

  .cta-band::before {
    inset: 10px;
  }

  .booking-option-card {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .product-carousel-track .expandable-card {
    flex-basis: clamp(286px, 44vw, 336px);
  }

  .compatibility-card {
    grid-template-columns: 1fr;
  }

  .compatibility-card-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero-home {
    --hero-content-top: 124px;
    padding-top: var(--hero-content-top);
  }

  body:has(.tentbox-hero) .page-hero.tentbox-hero {
    min-height: 82svh;
    padding-top: var(--hero-content-top);
    padding-bottom: 88px;
  }

  .tentbox-intro-section,
  .tentbox-model-section,
  .tentbox-accessory-section,
  .tentbox-faq-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .tentbox-intro-section .section-heading,
  .tentbox-model-section .section-heading,
  .tentbox-accessory-section .section-heading,
  .tentbox-faq-section .section-heading {
    margin-bottom: 16px;
  }

  .tentbox-intro-section .section-heading h2 {
    font-size: clamp(1.58rem, 8vw, 2.22rem);
  }

  .tentbox-palette-section {
    height: clamp(220px, 56vw, 300px);
  }

  .tentbox-palette-section img {
    object-position: 58% 58%;
  }

  .product-carousel-controls {
    justify-content: flex-start;
  }

  .product-carousel-track .expandable-card {
    flex-basis: min(82vw, 320px);
  }

  .compatibility-card {
    gap: 14px;
    padding: 16px;
  }

  .compatibility-card-link {
    width: 100%;
  }
}

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

  .hotspot-marker::after {
    transition: none !important;
  }

  .finish-image,
  .finish-card {
    transform: none !important;
  }
}
