@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("assets/fonts/libre-baskerville-700-latin.woff2") format("woff2");
}

:root {
  --navy: #062f63;
  --navy-deep: #021d43;
  --navy-mid: #0d467f;
  --gold: #b17a2b;
  --gold-dark: #85591f;
  --gold-soft: #e4cfad;
  --ink: #17263a;
  --muted: #5d6877;
  --blue-soft: #eef4f8;
  --blue-mid: #dce8f1;
  --warm: #f5f3ef;
  --paper: #ffffff;
  --line: #cfd9e2;
  --line-strong: #9eafbd;
  --success: #176b4d;
  --danger: #a3293f;
  --shadow-sm: 0 8px 24px rgba(2, 29, 67, 0.08);
  --shadow-md: 0 18px 44px rgba(2, 29, 67, 0.13);
  --container: 1240px;
  --page-pad: clamp(20px, 4.5vw, 64px);
  --section-y: clamp(64px, 7vw, 96px);
  --section-y-tight: clamp(44px, 5vw, 68px);
  --radius: 8px;
  --radius-sm: 6px;
  --motion-fast: 160ms;
  --motion-standard: 240ms;
  --motion-slow: 420ms;
  --motion-reveal: 480ms;
  --motion-stagger: 50ms;
  --motion-entrance: 18px;
  --motion-lift: -3px;
  --motion-image-scale: 1.022;
  --motion-ease: cubic-bezier(0.2, 0.65, 0.3, 1);
  --motion-ease-emphasised: cubic-bezier(0.22, 1, 0.36, 1);
  --ease: var(--motion-ease-emphasised);
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-tap-highlight-color: rgba(177, 122, 43, 0.18);
}

body.has-cookie-notice {
  padding-bottom: 118px;
}

main {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

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

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

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

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

p {
  max-width: 68ch;
  margin: 0 0 20px;
  color: var(--muted);
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 5.2vw, 5.6rem);
  line-height: 0.99;
}

h2 {
  font-size: clamp(2.25rem, 3.7vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.6rem);
  line-height: 1.2;
}

svg {
  flex: 0 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--navy-deep);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

[data-lucide] {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.reveal.motion-enabled {
  opacity: 0;
  transform: translate3d(0, var(--motion-entrance), 0);
  transition:
    opacity var(--motion-reveal) var(--motion-ease),
    transform var(--motion-reveal) var(--motion-ease-emphasised);
}

.reveal.motion-enabled.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.motion-enabled .motion-item,
.motion-observe.motion-enabled .motion-item {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.reveal.motion-enabled.is-visible .motion-item,
.motion-observe.motion-enabled.is-visible .motion-item {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-standard) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease-emphasised);
  transition-delay: var(--motion-delay, 0ms);
}

@keyframes surface-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.99);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(2, 29, 67, 0.06);
  transition: box-shadow var(--motion-standard) var(--motion-ease), background-color var(--motion-standard) var(--motion-ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.995);
  box-shadow: 0 10px 30px rgba(2, 29, 67, 0.11);
}

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.top-strip {
  position: relative;
  display: flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  contain: paint;
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: top-strip-scroll 24s linear infinite;
  will-change: transform;
}

.top-strip-group {
  display: flex;
  min-width: 100vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: clamp(40px, 7vw, 108px);
  padding: 7px clamp(28px, 5vw, 76px);
}

@keyframes top-strip-scroll {
  to {
    transform: translateX(-50%);
  }
}

.top-strip span,
.phone-link,
.mobile-quick-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-strip svg,
.phone-link svg,
.mobile-quick-actions svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
}

.nav-shell {
  display: grid;
  grid-template-columns: 138px minmax(420px, 1fr) auto;
  width: min(100%, var(--container));
  min-height: 84px;
  margin-inline: auto;
  padding: 8px 24px;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.brand {
  width: fit-content;
}

.brand img {
  width: 112px;
  height: 66px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-self: stretch;
  justify-content: center;
  gap: 4px;
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 15px;
  color: #273851;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header nav a::after {
  position: absolute;
  right: 15px;
  bottom: 10px;
  left: 15px;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--motion-ease-emphasised);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a.is-active::after {
  transform: scaleX(1);
}

.site-header nav a.is-active {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  min-height: 44px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease-emphasised);
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--navy-mid);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-quick-actions {
  display: none;
}

/* Buttons and common controls */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 19px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-standard) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease-emphasised);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform var(--motion-fast) var(--motion-ease-emphasised);
}

.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.button.primary:hover {
  background: var(--navy-deep);
  transform: translateY(var(--motion-lift));
}

.button.secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--navy);
}

.button.secondary:hover {
  border-color: var(--navy);
  background: var(--blue-soft);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

/* Homepage hero */
.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(540px, 1.14fr);
  min-height: min(720px, calc(100svh - 118px));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 4.5vw, 64px) clamp(34px, 5.4vw, 88px) clamp(48px, 4.5vw, 64px) max(30px, calc((100vw - var(--container)) / 2 + 24px));
}

.hero-copy::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: max(18px, calc((100vw - var(--container)) / 2 + 8px));
  width: 3px;
  content: "";
  background: var(--gold);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 4.6vw, 4.3rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 24px;
  font-size: 1.09rem;
  line-height: 1.7;
}

.hero-actions,
.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-ledger {
  display: flex;
  width: 100%;
  max-width: 560px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-ledger a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

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

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: grid;
  max-width: 315px;
  gap: 5px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero-badge span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.hero-badge small {
  color: #dce7f2;
  line-height: 1.45;
}

/* Trust register */
.promise-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin-inline: auto;
  border-inline: 1px solid var(--line);
  background: #fff;
}

.promise-bar article {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 112px;
  align-content: center;
  gap: 2px 12px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.promise-bar article:last-child {
  border-right: 0;
}

.promise-bar svg {
  grid-row: 1 / span 3;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  color: var(--gold);
}

.promise-bar small {
  display: none;
}

.promise-bar strong {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.promise-bar span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.35;
}

/* Shared content zones */
.section {
  padding: var(--section-y) var(--page-pad);
}

.section--soft {
  background: var(--blue-soft);
}

.section--trust {
  background: #fff;
}

.section--feature {
  background: var(--warm);
}

.section--navy {
  background: var(--navy-deep);
  color: #fff;
}

.section > *,
.showroom > *,
.service-hub > *,
.reviews > * {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.section-heading {
  position: relative;
  max-width: 840px;
  margin-bottom: clamp(36px, 5vw, 58px);
  padding-left: 24px;
}

.section-heading::before {
  position: absolute;
  top: 2px;
  bottom: 4px;
  left: 0;
  width: 3px;
  content: "";
  background: var(--gold);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}

/* Material browse */
.service-hub {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(2, 29, 67, 0.05);
  transition:
    border-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-standard) var(--motion-ease),
    transform var(--motion-standard) var(--motion-ease-emphasised);
}

.service-card:nth-child(1) {
  grid-column: span 5;
}

.service-card:nth-child(2) {
  grid-column: span 7;
}

.service-card:nth-child(n + 3) {
  grid-column: span 4;
  min-height: 330px;
}

.service-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--motion-ease-emphasised);
}

.service-card:nth-child(n + 3) img {
  height: 185px;
}

.service-card > span,
.service-card > strong {
  position: relative;
  z-index: 1;
  margin-inline: 22px;
}

.service-card > span:not(.service-link) {
  align-self: end;
  margin-top: 20px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card > strong {
  align-self: start;
  margin-top: 6px;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.service-link {
  align-self: end;
  width: fit-content;
  margin-block: 18px 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(var(--motion-lift));
}

.reveal.motion-enabled.is-visible .service-card.motion-item:hover,
.reveal.motion-enabled.is-visible .service-card.motion-item:focus-visible {
  transform: translateY(var(--motion-lift));
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(var(--motion-image-scale));
}

.service-note {
  width: min(100%, var(--container));
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Measure journey */
.showroom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.showroom-cta h2,
.showroom-cta p {
  color: #fff;
}

.showroom-cta h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.showroom-cta p:not(.eyebrow) {
  color: #d5e0ec;
}

.showroom-cta .eyebrow {
  color: var(--gold-soft);
}

.showroom-cta-actions {
  display: grid;
  gap: 12px;
}

.showroom-cta .button.primary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.showroom-cta .button.secondary {
  border-color: #7993ad;
  background: transparent;
  color: #fff;
}

.process-register {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-register article {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-width: 0;
  gap: 10px;
  padding: 20px 18px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.process-register article + article {
  padding-left: 18px;
}

.process-register article:last-child {
  border-right: 0;
}

.process-register article > span {
  color: var(--gold-soft);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.process-register article div {
  display: grid;
  gap: 5px;
}

.process-register strong {
  color: #fff;
  line-height: 1.2;
}

.process-register small {
  color: #c9d8e6;
  font-size: 0.79rem;
  line-height: 1.4;
}

/* Local story */
.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.van-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.van-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-copy {
  position: relative;
  padding-left: 30px;
}

.story-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: var(--gold);
}

.story-copy h2 {
  margin-bottom: 20px;
}

.story-points {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.story-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.story-points svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(34px, 5vw, 64px);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.review-score {
  align-self: start;
}

.review-heading h2 {
  margin-bottom: 26px;
}

.review-summary {
  padding-top: 22px;
  border-top: 3px solid var(--gold);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--gold);
}

.stars svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.google-reviews-widget {
  position: relative;
  min-height: 330px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.embed-consent-card {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

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

.embed-consent-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
}

.embed-consent-card strong {
  color: var(--navy);
}

.embed-settings-button {
  min-height: 42px;
  margin-top: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease-emphasised);
}

.embed-settings-button:hover {
  border-color: var(--navy);
  background: var(--blue-soft);
}

.embed-settings-button:focus-visible {
  outline: 3px solid rgba(177, 122, 43, 0.42);
  outline-offset: 3px;
}

/* Showroom close */
.showroom {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 7vw, 90px);
  padding: var(--section-y) var(--page-pad);
  background: var(--navy);
  color: #fff;
}

.showroom-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.showroom-copy h2,
.showroom-copy p {
  color: #fff;
}

.showroom-copy h2 {
  margin-bottom: 20px;
}

.showroom-copy p:not(.eyebrow) {
  color: #d5e0ec;
}

.showroom-copy .eyebrow {
  color: var(--gold-soft);
}

.showroom-actions {
  margin-top: 18px;
}

.showroom .button.primary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.showroom .button.secondary {
  border-color: #91a9c1;
  background: transparent;
  color: #fff;
}

.showroom-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 16px;
}

.showroom-photo,
.map-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.showroom-photo {
  position: relative;
}

.showroom-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.showroom-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.map-card,
.map-embed {
  min-height: 430px;
}

.map-card {
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-card .embed-consent-card {
  position: absolute;
  inset: 12px;
  min-height: 0;
}

/* Subpage heroes */
.subpage main {
  background: #fff;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  width: 100%;
  padding: clamp(58px, 7vw, 92px) max(var(--page-pad), calc((100vw - var(--container)) / 2 + 24px));
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  min-width: 0;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.08rem;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.showroom-hero {
  background: var(--blue-soft);
}

.showroom-hero-media {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.showroom-hero-media::before {
  content: none;
}

.showroom-hero-media::after {
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(177, 122, 43, 0.35);
  border-radius: var(--radius);
  background: rgba(2, 29, 67, 0.11);
  content: "";
}

.showroom-hero-media img {
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
  box-shadow: 0 22px 46px rgba(2, 29, 67, 0.17);
}

.page-hero .hero-ledger {
  margin-top: 22px;
}

/* Information cards */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section > .detail-grid {
  width: min(100%, var(--container));
}

.detail-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
}

.detail-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 22px;
  color: var(--gold-dark);
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.detail-card p {
  margin: 0;
}

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

.carpet-use-cases .detail-card:first-child,
.carpet-use-cases .detail-card:nth-child(n + 2) {
  grid-column: auto;
  padding-right: 30px;
}

.carpet-use-cases .detail-card {
  min-height: 270px;
  background: var(--blue-soft);
}

.carpet-use-cases .detail-card:nth-child(2) {
  background: var(--warm);
}

.floor-comparison-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  width: min(100%, var(--container));
  margin-inline: auto;
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.floor-comparison-layout .section-heading {
  width: auto;
  margin: 0;
}

.floor-compare {
  grid-template-columns: 1fr;
  width: 100%;
  gap: 14px;
}

.floor-compare .detail-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 0;
  align-items: start;
  column-gap: 22px;
  row-gap: 7px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(2, 29, 67, 0.06);
}

.floor-compare .detail-card svg {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  margin: 3px 0 0;
}

.floor-compare .detail-card h3,
.floor-compare .detail-card p {
  grid-column: 2;
  margin: 0;
}

.floor-compare .detail-card p {
  max-width: 72ch;
}

/* Showroom contact register */
.visit-register {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.visit-register article {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-width: 0;
  align-content: start;
  gap: 16px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.visit-register article:first-child {
  padding-left: 0;
}

.visit-register article:last-child {
  padding-right: 0;
  border-right: 0;
}

.visit-register svg {
  width: 25px;
  height: 25px;
  color: var(--navy);
}

.visit-register h3 {
  margin-bottom: 10px;
}

.visit-register p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-enquiry {
  background: var(--blue-soft);
}

.contact-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  width: min(100%, var(--container));
  margin-inline: auto;
  align-items: start;
  gap: clamp(48px, 7vw, 88px);
}

.contact-enquiry-intro {
  position: relative;
  padding: 10px 0 10px 24px;
}

.contact-enquiry-intro::before {
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  background: var(--gold);
  content: "";
}

.contact-enquiry-intro h2 {
  max-width: 660px;
  margin-bottom: 20px;
}

.contact-enquiry-intro > p:not(.eyebrow, .contact-response-note) {
  max-width: 57ch;
  margin-bottom: 0;
}

.contact-methods {
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.contact-method {
  display: grid;
  gap: 3px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: color var(--motion-fast) var(--motion-ease), padding-left var(--motion-fast) var(--motion-ease);
}

.contact-method small {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.18rem;
}

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

.contact-method:hover,
.contact-method:focus-visible {
  padding-left: 8px;
  color: var(--navy);
}

.contact-response-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-enquiry-form {
  width: 100%;
  margin: 0;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 300px;
  align-items: center;
  gap: 48px;
}

.page-cta h2,
.page-cta p {
  color: #fff;
}

.page-cta h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.page-cta p:not(.eyebrow) {
  max-width: 760px;
  color: #d6e1eb;
}

.page-cta .eyebrow {
  color: var(--gold-soft);
}

.page-cta .button.primary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

/* Material sample showcase */
.sample-showcase {
  padding: var(--section-y-tight) var(--page-pad) var(--section-y);
  background: var(--warm);
}

.sample-showcase-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  width: min(100%, var(--container));
  margin-inline: auto;
  gap: 16px;
}

.sample-showcase-heading {
  width: min(100%, var(--container));
  margin-right: auto;
  margin-left: auto;
}

.sample-tile {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.sample-tile:first-child {
  min-height: 430px;
}

.sample-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-tile--room img {
  object-position: center 72%;
}

.sample-tile figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(2, 29, 67, 0.92);
  color: #fff;
  font-weight: 700;
}

/* Hard-floor room gallery */
.room-gallery {
  position: relative;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.room-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
}

.room-card:first-child {
  grid-row: span 2;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--motion-ease-emphasised);
}

.room-card::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(2, 29, 67, 0.88));
}

.room-card div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
}

.room-card span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.room-card strong {
  max-width: 24ch;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.room-card:hover img {
  transform: scale(var(--motion-image-scale));
}

/* Pricing and calculator */
.prices {
  background: var(--blue-soft);
}

.price-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  max-width: none;
  align-items: end;
  gap: 64px;
}

.price-heading > p {
  align-self: end;
  padding-bottom: 8px;
}

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

.price-row {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.price-swatch {
  display: block;
  height: 150px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background-position: center;
  background-size: cover;
}

.price-row.carpet .price-swatch {
  background-image: url("assets/optimized/carpet-neutral-texture-900.webp");
}

.price-row.vinyl .price-swatch {
  background-image: url("assets/optimized/vinyl-kitchen-floor-1200.webp");
  background-position: center 72%;
}

.price-row.laminate .price-swatch {
  background-image: url("assets/optimized/herringbone-900.webp");
}

.price-row.lvt .price-swatch {
  background-image: url("assets/optimized/wood-floor-rug-900.webp");
}

.price-row > span:not(.price-swatch) {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row strong {
  margin: 4px 0 12px;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
}

.price-row p {
  margin: 0;
  font-size: 0.94rem;
}

.measure {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.65fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.measure-copy h2 {
  margin-bottom: 20px;
}

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

.steps article {
  min-height: 210px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.steps p {
  margin: 0;
  font-size: 0.94rem;
}

.estimate-card,
.inquiry-form,
.booking-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.estimate-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.estimate-card h3 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.estimate-card label,
.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  transition: border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(177, 122, 43, 0.28);
}

textarea {
  resize: vertical;
}

#estimateResult {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  transition: transform var(--motion-fast) var(--motion-ease-emphasised);
}

#estimateResult.is-updated {
  transform: scale(1.02);
}

.estimate-card > small {
  color: var(--muted);
  line-height: 1.45;
}

.booking-lab {
  background: var(--blue-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-width: 0;
  align-items: start;
  gap: 22px;
}

.inquiry-form,
.booking-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
}

.inquiry-form {
  display: grid;
  gap: 15px;
}

.inquiry-form h3,
.booking-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.inquiry-form > div > p:last-child,
.booking-card > div > p:last-child {
  margin-bottom: 0;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: none !important;
  gap: 9px !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.newsletter-check {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
}

.privacy-check a,
.form-note a,
.form-privacy-summary a,
.policy-card p a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-privacy-summary {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.turnstile-slot {
  width: 100%;
  min-width: 0;
  min-height: 65px;
  overflow: hidden;
}

.turnstile-slot > div,
.turnstile-slot iframe {
  max-width: 100%;
}

.turnstile-slot > div {
  margin-inline: auto;
}

.inquiry-form button[type="submit"]:disabled,
.mini-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note.is-success {
  color: var(--success);
  font-weight: 700;
}

.form-note.is-error {
  color: var(--danger);
  font-weight: 700;
}

.booking-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: start;
  gap: 20px;
}

.booking-launch {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 420px;
  gap: 14px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
}

.booking-launch > svg {
  width: 42px;
  height: 42px;
  color: var(--navy);
}

.booking-launch strong {
  color: var(--navy);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.booking-launch span {
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.65;
}

.booking-launch .button {
  margin-top: 6px;
}

.booking-launch small {
  color: var(--muted);
}

.booking-launch small a,
.booking-fallback a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-embed {
  width: 100%;
  min-width: 0;
  min-height: 1180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.booking-launch[hidden],
.booking-embed[hidden],
.booking-fallback[hidden] {
  display: none;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 1180px;
  border: 0;
}

.booking-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1.15fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  padding: 64px max(var(--page-pad), calc((100vw - var(--container)) / 2 + 24px));
  background: var(--navy-deep);
  color: #fff;
}

.footer-brand {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand img {
  width: 108px;
  height: 108px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  object-fit: contain;
}

.footer-brand p {
  max-width: 240px;
  margin: 18px 0 0;
  color: #c7d4e2;
  font-size: 0.93rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.footer-links > div,
.footer-contact,
.footer-contact-list {
  display: grid;
  align-content: start;
}

.footer-links strong,
.footer-contact > strong {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  min-height: 38px;
  align-items: center;
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: #c7d4e2;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease-emphasised);
}

.footer-links a:hover,
.footer-links button:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible,
.footer-contact a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact-list {
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.footer-contact-list > * {
  display: grid;
  min-width: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease-emphasised);
}

.footer-contact-list > *:first-child {
  grid-column: 1 / -1;
}

.footer-contact-list small {
  margin-bottom: 4px;
  color: #8fa4ba;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px 36px;
  margin-top: -18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-legal {
  max-width: 850px;
  margin: 0;
  color: #9fb1c4;
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  color: #8fa4ba;
  font-size: 0.76rem;
  line-height: 1.5;
  white-space: nowrap;
  text-align: right;
}

.site-credit::before {
  width: 22px;
  height: 1px;
  background: rgba(228, 207, 173, 0.72);
  content: "";
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #dbe5ef;
  font-weight: 700;
  transition: color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease-emphasised);
}

.site-credit a::after {
  color: var(--gold-soft);
  content: "\2197";
  font-size: 0.9em;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

/* Help widget */
.help-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
}

body.has-cookie-notice .help-widget {
  bottom: 132px;
}

.help-toggle,
.help-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.help-toggle {
  min-height: 48px;
  gap: 9px;
  border-radius: var(--radius-sm);
  padding: 0 17px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-weight: 800;
  transition:
    background-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-standard) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease-emphasised);
}

.help-toggle:hover,
.help-toggle:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.help-toggle svg {
  width: 21px;
  height: 21px;
}

.help-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(690px, calc(100vh - 120px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.help-widget.is-open .help-panel {
  animation: surface-enter var(--motion-standard) var(--motion-ease-emphasised) both;
}

.help-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.help-panel-header h2 {
  font-size: 1.55rem;
}

.help-panel-header .eyebrow {
  margin-bottom: 7px;
}

.help-close {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy);
  transition: background-color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease-emphasised);
}

.help-close:hover,
.help-close:focus-visible {
  background: var(--blue-mid);
  transform: rotate(3deg);
}

.help-options {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.help-options a {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--navy);
  font-weight: 700;
  transition:
    background-color var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease-emphasised);
}

.help-options a:hover,
.help-options a:focus-visible {
  border-color: var(--navy);
  background: var(--blue-soft);
  transform: translateX(2px);
}

.help-options svg {
  width: 19px;
  height: 19px;
}

.mini-form {
  display: grid;
  gap: 11px;
  padding: 0 16px 18px;
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100% - 36px, 980px);
  margin-inline: auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  animation: surface-enter var(--motion-standard) var(--motion-ease-emphasised) both;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong {
  color: var(--navy);
}

.cookie-notice p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-actions a,
.cookie-actions button {
  min-height: 42px;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease-emphasised);
}

.cookie-actions a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions button {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .secondary-choice {
  background: #fff;
  color: var(--navy);
}

.cookie-preferences {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
  border: 0;
  padding: 0;
}

.cookie-preferences legend {
  grid-column: 1 / -1;
  margin-bottom: 9px;
  color: var(--navy);
  font-weight: 800;
}

.cookie-preferences label {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
}

.cookie-preferences input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.cookie-preferences label span,
.cookie-preferences label strong,
.cookie-preferences label small {
  display: block;
}

.cookie-preferences label small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.cookie-save {
  min-height: 42px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible,
.embed-settings-button:hover,
.embed-settings-button:focus-visible {
  transform: translateY(-1px);
}

/* Legal pages */
.policy-page {
  background: var(--blue-soft);
}

.policy-shell {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 48px 24px 28px;
}

.policy-site-credit {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 24px 34px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.policy-site-credit p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.policy-site-credit p::before {
  width: 22px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.policy-site-credit a {
  color: var(--navy);
  font-weight: 700;
}

.policy-site-credit a::after {
  margin-left: 4px;
  color: var(--gold-dark);
  content: "\2197";
  font-size: 0.9em;
}

.policy-site-credit a:hover,
.policy-site-credit a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-logo {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
}

.policy-logo img {
  width: 120px;
  height: 76px;
  object-fit: contain;
}

.policy-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.policy-card h1 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.policy-card h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-notice {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--blue-soft);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.policy-links a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-card .button {
  margin-top: 20px;
}

/* Tablet */
@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 108px minmax(340px, 1fr) auto;
    gap: 14px;
  }

  .site-header nav a {
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .nav-actions .phone-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.8fr) minmax(440px, 1.2fr);
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

  .carpet-use-cases .detail-card:first-child,
  .carpet-use-cases .detail-card:nth-child(n + 2) {
    grid-column: auto;
    padding-right: 30px;
  }

  .split-story,
  .page-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 42px;
  }

  .showroom {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 38px;
  }

  .showroom-media {
    grid-template-columns: 1fr;
  }

  .contact-enquiry-layout {
    grid-template-columns: minmax(270px, 0.72fr) minmax(470px, 1.28fr);
    gap: 34px;
  }

  .map-card,
  .map-embed,
  .map-embed iframe {
    min-height: 300px;
  }

  .site-footer {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* Mobile navigation and stacked layouts */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 16px;
  }

  :root {
    --motion-entrance: 11px;
    --motion-stagger: 35ms;
    --motion-lift: -1px;
  }

  body {
    font-size: 16px;
  }

  body.has-cookie-notice {
    padding-bottom: 0;
  }

  .site-header {
    position: relative;
  }

  .top-strip {
    font-size: 0.7rem;
  }

  .top-strip-group {
    gap: 42px;
    padding-inline: 28px;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: minmax(72px, 1fr) auto auto;
    min-height: 78px;
    gap: 8px;
    padding: 6px 16px;
  }

  .brand img {
    width: 78px;
    height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    transition:
      background-color var(--motion-fast) var(--motion-ease),
      border-color var(--motion-fast) var(--motion-ease),
      transform var(--motion-fast) var(--motion-ease-emphasised);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: var(--navy);
    background: var(--blue-soft);
  }

  .site-header.nav-open .menu-toggle {
    background: var(--blue-mid);
    transform: scale(0.97);
  }

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

  .menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .mobile-quick-actions {
    display: flex;
    gap: 8px;
  }

  .mobile-quick-actions a {
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    color: var(--navy);
    font-weight: 800;
    transition:
      background-color var(--motion-fast) var(--motion-ease),
      border-color var(--motion-fast) var(--motion-ease),
      transform var(--motion-fast) var(--motion-ease-emphasised);
  }

  .mobile-quick-actions a:hover,
  .mobile-quick-actions a:focus-visible {
    transform: translateY(-1px);
  }

  .mobile-quick-actions a:first-child {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .mobile-quick-actions a:first-child span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .mobile-quick-actions a:last-child {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: auto;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0) scale(0.99);
    visibility: hidden;
    transition:
      opacity var(--motion-fast) var(--motion-ease),
      transform var(--motion-standard) var(--motion-ease-emphasised),
      visibility 0s linear var(--motion-standard);
  }

  .site-header.nav-open nav {
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-header nav a {
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 13px;
    border-bottom: 1px solid var(--line);
  }

  .site-header nav a::after {
    right: auto;
    bottom: 8px;
    left: 13px;
    width: 34px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 38px 24px 32px;
  }

  .hero-copy::before {
    top: 38px;
    bottom: 32px;
    left: 12px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12.8vw, 3.7rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-image {
    min-height: 400px;
  }

  .hero-image img {
    min-height: 400px;
  }

  .hero-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .promise-bar {
    grid-template-columns: 1fr 1fr;
    border-inline: 0;
  }

  .promise-bar article {
    min-height: 104px;
    border-bottom: 1px solid var(--line);
  }

  .promise-bar article:nth-child(2) {
    border-right: 0;
  }

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

  .service-card:nth-child(n) {
    grid-column: auto;
    min-height: 350px;
  }

  .service-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .service-card img,
  .service-card:nth-child(n + 3) img {
    height: 200px;
  }

  .showroom-cta,
  .split-story,
  .reviews,
  .showroom,
  .page-hero,
  .measure,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-embed,
  .booking-embed iframe {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 1300px;
  }

  .showroom-cta {
    gap: 30px;
  }

  .showroom-cta-actions {
    grid-template-columns: 1fr 1fr;
  }

  .split-story {
    gap: 36px;
  }

  .reviews {
    gap: 30px;
  }

  .google-reviews-widget {
    min-height: 290px;
  }

  .showroom {
    gap: 34px;
  }

  .showroom-media {
    grid-template-columns: 1fr 1fr;
  }

  .showroom-photo img {
    min-height: 330px;
  }

  .map-card,
  .map-embed,
  .map-embed iframe {
    min-height: 330px;
  }

  .page-hero {
    gap: 36px;
  }

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

  .page-hero img {
    max-height: 470px;
  }

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

  .floor-comparison-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .floor-comparison-layout .section-heading {
    max-width: 680px;
  }

  .carpet-use-cases .detail-card:first-child,
  .carpet-use-cases .detail-card:nth-child(n + 2) {
    grid-column: auto;
  }

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

  .visit-register article,
  .visit-register article:first-child,
  .visit-register article:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit-register article:last-child {
    border-bottom: 0;
  }

  .contact-enquiry-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-enquiry-intro {
    max-width: 680px;
  }

  .detail-card {
    min-height: 0;
  }

  .page-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .sample-tile:first-child {
    grid-column: 1 / -1;
  }

  .room-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .room-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .price-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

  .steps article {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .steps span {
    grid-row: 1 / span 2;
    margin: 0;
  }

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

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

  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .cookie-preferences fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --section-y: 58px;
    --section-y-tight: 44px;
  }

  body {
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .nav-shell {
    grid-template-columns: minmax(64px, 1fr) auto auto;
  }

  .mobile-quick-actions a {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .mobile-quick-actions a:last-child span {
    font-size: 0.86rem;
  }

  .site-header.nav-open nav {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-inline: 28px 20px;
  }

  .hero-copy::before {
    left: 12px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 3.55rem);
  }

  .hero-actions,
  .page-hero .hero-actions,
  .showroom-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-ledger {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-image,
  .hero-image img {
    min-height: 335px;
  }

  .hero-badge {
    padding: 14px 16px;
  }

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

  .promise-bar article {
    min-height: 88px;
    border-right: 0;
  }

  .section-heading {
    padding-left: 16px;
  }

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

  .service-card:nth-child(n) {
    grid-column: auto;
    min-height: 335px;
  }

  .service-card img,
  .service-card:nth-child(n + 3) img {
    height: 190px;
  }

  .showroom-cta-actions {
    grid-template-columns: 1fr;
  }

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

  .process-register article,
  .process-register article + article {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .process-register article:last-child {
    border-bottom: 0;
  }

  .floor-compare .detail-card {
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    row-gap: 10px;
    padding-block: 22px;
  }

  .floor-compare .detail-card p {
    grid-column: 2;
  }

  .showroom-hero-media {
    padding: 0;
  }

  .showroom-hero-media::after {
    inset: 10px -10px -10px 10px;
  }

  .story-copy {
    padding-left: 18px;
  }

  .showroom-media {
    grid-template-columns: 1fr;
  }

  .showroom-photo img {
    min-height: 300px;
  }

  .page-hero {
    padding: 50px 20px 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .sample-showcase-inner,
  .room-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .sample-tile:first-child {
    grid-column: auto;
  }

  .sample-tile,
  .sample-tile:first-child {
    min-height: 300px;
  }

  .room-card:first-child {
    grid-column: auto;
  }

  .room-card {
    min-height: 300px;
  }

  .price-row {
    min-height: 0;
  }

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

  .estimate-card,
  .inquiry-form,
  .booking-card {
    padding: 22px 18px;
  }

  .booking-card {
    padding-inline: 0;
    overflow: hidden;
  }

  .booking-card-intro,
  .booking-fallback {
    padding-inline: 18px;
  }

  .booking-launch {
    margin-inline: 18px;
  }

  .booking-embed {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .contact-enquiry-intro {
    padding-left: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 20px;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 16px;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-brand img {
    width: 82px;
    height: 82px;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-links {
    gap: 24px;
  }

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

  .site-credit {
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
    padding-top: 22px;
  }

  .help-widget {
    right: 14px;
    bottom: 14px;
  }

  body.has-cookie-notice .help-widget {
    bottom: 14px;
  }

  .help-toggle {
    width: 48px;
    padding: 0;
  }

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

  .help-panel {
    position: fixed;
    right: 16px;
    bottom: 74px;
    left: 16px;
    width: auto;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions a {
    grid-column: 1 / -1;
  }

  .cookie-actions button,
  .cookie-save {
    white-space: normal;
  }

  .policy-shell {
    padding: 24px 16px 50px;
  }

  .policy-site-credit {
    padding: 0 16px 28px;
  }

  .policy-site-credit p {
    display: grid;
    grid-template-columns: 22px auto;
    justify-content: center;
    column-gap: 8px;
    row-gap: 1px;
    text-align: left;
  }

  .policy-site-credit p::before {
    grid-row: 1 / 3;
    align-self: center;
  }

  .policy-site-credit span,
  .policy-site-credit a {
    grid-column: 2;
  }

  .policy-card {
    padding: 26px 20px;
  }
}

@media (max-width: 360px) {
  .nav-shell {
    padding-inline: 10px;
  }

  .brand img {
    width: 68px;
  }

  .mobile-quick-actions {
    gap: 6px;
  }

  .mobile-quick-actions a {
    min-width: 44px;
  }

  .mobile-quick-actions a:last-child span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .mobile-quick-actions a:last-child span::after {
    content: none;
  }

  .footer-links,
  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .site-credit {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    justify-content: start;
    column-gap: 8px;
    row-gap: 1px;
  }

  .site-credit::before {
    grid-row: 1 / 3;
    align-self: center;
  }

  .site-credit span,
  .site-credit a {
    grid-column: 2;
  }

  .footer-contact-list > *:first-child {
    grid-column: auto;
  }
}

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

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

  .reveal.motion-enabled,
  .reveal.motion-enabled .motion-item,
  .motion-observe.motion-enabled .motion-item {
    opacity: 1;
    transform: none;
  }

  .cookie-notice,
  .help-widget.is-open .help-panel {
    animation: none;
  }

  .top-strip-track {
    transform: none !important;
    animation: none !important;
  }

  .top-strip-group {
    justify-content: center;
  }

  .top-strip-group[aria-hidden="true"],
  .top-strip-group > span:not(:first-child) {
    display: none;
  }
}
