:root {
  --bbk-red: #99092c;
  --bbk-red-dark: #6f061f;
  --ink: #1a1c1c;
  --soft-ink: #3a444a;
  --muted: #5f5e5d;
  --paper: #faf9f9;
  --paper-deep: #f2f0ed;
  --white: #ffffff;
  --line: #d1d1d1;
  --charcoal: #1a1a19;
  --moss: #69735b;
  --blue-grey: #53676e;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.1);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 16px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 244, 239, 0.86);
  border-bottom: 1px solid rgba(222, 216, 207, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 520;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: var(--bbk-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--bbk-red);
}

.section-anchor {
  scroll-margin-top: 96px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.eyebrow,
.range-kind {
  margin: 0 0 13px;
  color: color-mix(in srgb, var(--bbk-red) 74%, var(--muted));
  font-family: Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.split-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 88px);
  margin-top: 88px;
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}

.split-hero-panel {
  position: relative;
  display: flex;
  flex: 1 1 50%;
  min-width: 0;
  min-height: inherit;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  transition: flex-basis 720ms cubic-bezier(0.2, 0, 0.2, 1), filter 720ms ease;
}

.split-hero-panel img,
.split-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-hero-panel img {
  z-index: -3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1200ms cubic-bezier(0.2, 0, 0.2, 1);
}

.split-hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05));
  transition: background 720ms ease;
}

.split-hero-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(-0.5px);
}

.split-hero-content {
  display: flex;
  width: min(100%, 620px);
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 64px);
  color: var(--white);
}

.split-hero-bedrooms .split-hero-content {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.split-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.split-hero-title {
  display: block;
  max-width: 11ch;
  color: var(--white);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.split-hero-reveal {
  display: grid;
  gap: 24px;
  max-width: 440px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-hero-copy {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

.split-hero-link {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding-bottom: 8px;
  text-transform: uppercase;
}

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

.split-hero-panel:hover .split-hero-link span,
.split-hero-panel:focus-visible .split-hero-link span {
  transform: translateX(4px);
}

.split-hero-caption {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.split-hero-caption span {
  min-width: 112px;
  padding: 13px 18px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 520;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.split-hero-statement {
  position: absolute;
  z-index: 4;
  top: clamp(88px, 17vh, 178px);
  left: 50%;
  width: min(740px, 56vw);
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
}

.split-hero-statement span {
  display: inline-block;
  margin: 0 0.08em;
  color: rgba(255, 255, 255, 0.92);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.9vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-hero-statement small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 420ms ease, transform 520ms ease;
}

.split-hero-panel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: -10px;
}

@media (min-width: 781px) {
  .split-hero:hover .split-hero-panel {
    flex-basis: 42%;
    filter: brightness(0.74);
  }

  .split-hero .split-hero-panel:hover,
  .split-hero .split-hero-panel:focus-visible {
    flex-basis: 58%;
    filter: brightness(1);
  }

  .split-hero-panel:hover img,
  .split-hero-panel:focus-visible img {
    transform: scale(1.06);
  }

  .split-hero-panel:hover .split-hero-reveal,
  .split-hero-panel:focus-visible .split-hero-reveal {
    opacity: 1;
    transform: translateY(0);
  }

  .split-hero:hover .split-hero-statement span:nth-child(1) {
    transform: translateX(-14px);
  }

  .split-hero:hover .split-hero-statement span:nth-child(2) {
    transform: translateY(-10px);
  }

  .split-hero:hover .split-hero-statement span:nth-child(3) {
    transform: translateX(14px);
  }

  .split-hero:hover .split-hero-statement small {
    opacity: 0.98;
    transform: translateY(5px);
  }
}

@media (hover: none), (max-width: 780px) {
  .split-hero-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 780px) {
  .split-hero {
    flex-direction: column;
    min-height: auto;
  }

  .split-hero-panel {
    flex-basis: auto;
    min-height: 48svh;
  }

  .split-hero-divider {
    top: 50%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-0.5px);
  }

  .split-hero-content {
    width: 100%;
    padding: 30px 20px;
  }

  .split-hero-bedrooms .split-hero-content {
    align-items: flex-start;
    margin-left: 0;
    text-align: left;
  }

  .split-hero-title {
    max-width: 10ch;
    font-size: clamp(2.72rem, 14vw, 4.1rem);
  }

  .split-hero-reveal {
    gap: 16px;
    max-width: 100%;
    margin-top: 18px;
  }

  .split-hero-copy {
    max-width: 32rem;
    font-size: 0.94rem;
  }

  .split-hero-caption {
    display: none;
  }

  .split-hero-statement {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 86px;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.06));
}

.hero-content {
  max-width: 860px;
  color: var(--white);
}

.hero-content h1,
.hero-content p {
  color: var(--white);
}

.hero .eyebrow {
  color: #f0c8d1;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-notes span {
  min-width: 112px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 560;
  text-align: center;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--charcoal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--bbk-red);
}

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

.button-ghost:hover {
  background: var(--white);
  color: var(--bbk-red);
}

.text-link,
.text-button {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 0 0 6px;
  border: 0;
  background: transparent;
  color: var(--bbk-red);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.text-link::after,
.text-button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-button:hover::after {
  transform: scaleX(1);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 122px;
  display: grid;
  align-content: center;
  padding: 24px 28px;
  background: var(--white);
  text-align: center;
}

.signal-strip strong {
  color: var(--bbk-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.signal-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 110px max(28px, calc((100vw - var(--max)) / 2));
}

.section-grid,
.preview-intro,
.catalogue-heading,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.section-body p,
.preview-intro p,
.catalogue-heading p,
.contact-copy p,
.immersive-band p,
.next-step p {
  color: var(--muted);
  font-size: 1.02rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list div {
  min-height: 210px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.74);
}

.process-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--moss);
  font-weight: 800;
}

.process-list p,
.brochure-panels p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-studio {
  background: var(--paper);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: stretch;
}

.studio-copy {
  max-width: 760px;
}

.studio-copy h2 {
  max-width: 780px;
  margin-bottom: 26px;
}

.studio-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.studio-panel {
  display: grid;
  min-height: 430px;
  border: 1px solid rgba(209, 209, 209, 0.92);
  background: var(--white);
}

.studio-panel div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid rgba(209, 209, 209, 0.86);
}

.studio-panel div:last-child {
  border-bottom: 0;
}

.studio-panel span {
  color: var(--bbk-red);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.9;
}

.studio-panel p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
}

.collection-preview {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  margin-top: 50px;
}

.curated-grid-kitchens {
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
}

.featured-primary,
.featured-stack {
  min-width: 0;
}

.featured-stack {
  display: grid;
  gap: 22px;
}

.curated-grid-kitchens .range-card-featured {
  grid-row: auto;
}

.curated-grid-kitchens .range-card:not(.range-card-featured) {
  display: grid;
  grid-template-columns: minmax(126px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 203, 192, 0.72);
}

.curated-grid-kitchens .range-card:not(.range-card-featured) .range-card-body {
  padding: 0;
}

.curated-grid-kitchens .range-card:not(.range-card-featured) .range-card-image,
.curated-grid-kitchens .range-card:not(.range-card-featured) img {
  height: 100%;
}

.curated-grid-kitchens .range-card:not(.range-card-featured) img {
  aspect-ratio: 4 / 3;
}

.curated-grid-kitchens .range-card:not(.range-card-featured) p {
  -webkit-line-clamp: 2;
}

.curated-grid-editorial {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 3.6vw, 44px);
  align-items: stretch;
}

.curated-grid-editorial .featured-primary,
.curated-grid-editorial .featured-stack {
  min-width: 0;
}

.curated-grid-editorial .featured-primary .range-card-home {
  height: 100%;
  min-height: 620px;
  background: var(--white);
  border: 1px solid rgba(209, 209, 209, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.curated-grid-editorial .featured-primary .range-card-image {
  border-radius: 0;
}

.curated-grid-editorial .featured-primary .range-card-image img {
  aspect-ratio: 5 / 4;
}

.curated-grid-editorial .featured-primary .range-card-body {
  position: relative;
  margin: -72px 28px 0;
  padding: 26px;
  background: rgba(250, 249, 249, 0.94);
  border: 1px solid rgba(209, 209, 209, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.curated-grid-editorial .featured-stack {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.curated-grid-editorial .featured-stack .range-card-home {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 0;
  min-height: 190px;
  background: #fbf8f3;
  border: 1px solid rgba(209, 209, 209, 0.9);
}

.curated-grid-editorial .featured-stack .range-card-image {
  height: 100%;
  border-radius: 0;
}

.curated-grid-editorial .featured-stack .range-card-image img {
  height: 100%;
  aspect-ratio: auto;
}

.curated-grid-editorial .featured-stack .range-card-body {
  justify-content: center;
  padding: 22px;
}

.curated-grid-editorial .featured-stack .range-card p {
  -webkit-line-clamp: 2;
}

.curated-grid-editorial .featured-stack .range-card-meta,
.curated-grid-editorial .featured-stack .tag-list {
  display: none;
}

.range-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.range-card:hover {
  transform: translateY(-3px);
}

.range-card:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.6);
  outline-offset: 8px;
}

.range-card:hover h3,
.range-card:focus-visible h3 {
  color: var(--bbk-red);
}

.range-card-image {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: #ede7e0;
}

.range-card-image::after {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(29, 27, 23, 0.82);
  color: var(--white);
  content: "View details";
  font-size: 0.68rem;
  font-weight: 520;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.range-card:hover .range-card-image::after,
.range-card:focus-visible .range-card-image::after {
  opacity: 1;
  transform: translateY(0);
}

.range-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.range-card:hover img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.035);
}

.range-card:hover .range-card-palette img {
  filter: none;
  transform: none;
}

.range-card-featured img {
  aspect-ratio: 4 / 5;
}

.range-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0 0;
}

.range-card-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.range-card-palette span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(209, 209, 209, 0.92);
  border-radius: 999px;
}

.range-card-palette img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.range-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  transition: color 180ms ease;
}

.range-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.range-kind {
  margin-bottom: 8px;
  color: var(--blue-grey);
}

.range-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.range-card-meta span {
  position: relative;
}

.range-card-meta span + span::before {
  position: absolute;
  left: -8px;
  color: rgba(111, 106, 98, 0.54);
  content: "/";
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-start;
  align-content: flex-start;
}

.tag-list span,
.colour-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 28px;
  max-width: 100%;
  padding: 5px 10px;
  background: rgba(105, 115, 91, 0.12);
  color: #47513d;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 560;
  line-height: 1.1;
  white-space: nowrap;
}

.tag-list span {
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.range-card-gallery {
  background: #fbf8f3;
  border: 1px solid rgba(209, 209, 209, 0.9);
  border-radius: 6px;
}

.range-card-gallery:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.range-card-gallery .range-card-image {
  border-radius: 6px 6px 0 0;
}

.range-card-gallery .range-card-body {
  padding: 22px;
}

.range-card .text-button {
  margin-top: 2px;
}

.immersive-band {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: 110px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.immersive-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.immersive-band h2,
.immersive-band p {
  color: var(--white);
}

.immersive-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.brochures {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.brochure-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.brochure-panels article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brochure-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  background: var(--bbk-red);
  color: var(--white);
  border-radius: 6px;
  font-weight: 800;
}

.contact-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.contact-details p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.contact-details strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 0.74rem;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.search-field input {
  min-height: 50px;
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.search-field input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(0, 0, 0, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
}

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

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

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  background: var(--charcoal);
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
  content: "";
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  max-width: 880px;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero .eyebrow {
  color: #f0c8d1;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-modern {
  min-height: 72vh;
  align-items: end;
  padding-bottom: 86px;
}

.page-hero-modern::before {
  position: absolute;
  z-index: -1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
}

.page-hero-modern::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.02));
}

.page-hero-modern .page-hero-media {
  transform: scale(1.02);
}

.page-hero-modern .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  width: 100%;
  max-width: var(--max);
}

.page-hero-panel {
  padding: 24px;
  background: rgba(250, 249, 249, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.page-hero-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 0.94;
}

.page-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  min-height: calc(88vh - 88px);
  margin-top: 88px;
  padding: 110px max(28px, calc((100vw - var(--max)) / 2)) 78px;
  overflow: hidden;
  background: var(--paper);
}

.editorial-hero::before {
  position: absolute;
  top: 120px;
  left: max(28px, calc((100vw - var(--max)) / 2));
  width: calc(100% - max(56px, calc((100vw - var(--max)) + 56px)));
  height: 1px;
  background: rgba(209, 209, 209, 0.88);
  content: "";
}

.editorial-hero-copy {
  max-width: 780px;
}

.editorial-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-hero-media {
  position: relative;
  min-height: 540px;
  align-self: stretch;
}

.editorial-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

.editorial-hero-media div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.editorial-hero-media span {
  padding: 14px 12px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.about-story {
  background: var(--white);
}

.process-list-premium {
  margin-top: 72px;
}

.promise-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.promise-copy {
  position: sticky;
  top: 124px;
}

.promise-copy h2,
.promise-copy p {
  color: var(--white);
}

.promise-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.promise-copy .button-primary {
  background: var(--white);
  color: var(--bbk-red);
}

.promise-copy .button-primary:hover {
  background: #f3dedf;
  color: var(--bbk-red-dark);
}

.promise-grid {
  display: grid;
  gap: 18px;
}

.promise-grid article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.promise-grid span {
  color: #f0c8d1;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 0.9;
}

.promise-grid h3,
.promise-grid p {
  color: var(--white);
}

.promise-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero {
  min-height: calc(78vh - 88px);
  align-items: center;
}

.contact-hero-card {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    url("../images/brand/hero-bedroom.jpg") center / cover;
  color: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

.contact-hero-card .eyebrow,
.contact-hero-card .contact-details strong,
.contact-hero-card .contact-details a,
.contact-hero-card .contact-details span {
  color: var(--white);
}

.contact-hero-card .contact-details a,
.contact-hero-card .contact-details span {
  opacity: 0.82;
}

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

.contact-copy a {
  color: var(--bbk-red);
}

.contact-route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.contact-route-list span {
  padding: 9px 12px;
  background: rgba(105, 115, 91, 0.12);
  color: #47513d;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
}

.catalogue {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.catalogue-page {
  padding-top: 86px;
}

.catalogue-tools {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 6px 0 38px;
}

.search-field {
  flex: 1 1 280px;
}

.segment-control {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.segment-control button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.segment-control button.is-active,
.segment-control button:hover {
  border-color: var(--bbk-red);
  background: var(--bbk-red);
  color: var(--white);
  transform: translateY(-1px);
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.range-card-gallery .range-card-image img {
  aspect-ratio: 4 / 3;
}

.range-card-gallery .range-card-body {
  padding-top: 16px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

.next-step {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.next-step-inner {
  max-width: 780px;
}

.next-step-inner p {
  max-width: 620px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 38px;
  align-items: center;
  padding: 40px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: #e9e3dc;
}

.site-footer img {
  width: 166px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: #d4ccc5;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 540;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.dialog-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: auto;
  background: rgba(21, 19, 19, 0.72);
}

.dialog-backdrop[hidden] {
  display: none;
}

.range-dialog {
  position: relative;
  width: min(1180px, calc(100vw - 36px));
  height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--bbk-red);
  border-radius: 999px;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(360px, 0.96fr);
  height: 100%;
  min-height: 0;
}

.dialog-media-panel {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  min-height: 0;
  overflow: auto;
  background: #f2ede5;
}

.dialog-image-frame {
  width: 100%;
  background: #ede7e0;
}

.dialog-image-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  opacity: 0.86;
  transition: opacity 220ms ease;
}

.dialog-image-frame img.is-loaded {
  opacity: 1;
}

.dialog-content {
  min-height: 0;
  max-height: 100%;
  overflow: auto;
  padding: 48px;
}

.dialog-content h2,
.dialog-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.dialog-content p {
  color: var(--muted);
}

.dialog-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 18px;
}

.dialog-meta span {
  min-width: 0;
  padding: 12px 13px;
  background: #fbf8f3;
  border: 1px solid rgba(212, 203, 192, 0.92);
  color: var(--soft-ink);
  font-size: 0.76rem;
  line-height: 1.3;
}

.dialog-meta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--bbk-red);
  font-size: 0.62rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-spec {
  padding: 18px;
  background: var(--paper);
  border-left: 4px solid var(--bbk-red);
  border-radius: 6px;
}

.variant-panel {
  margin: 0;
  padding: 24px;
  border-top: 1px solid rgba(212, 203, 192, 0.9);
}

.variant-panel:empty,
.dialog-active-finish:empty {
  display: none;
}

.variant-panel h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

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

.variant-list button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 9px;
  border: 1px solid var(--line);
  background: #fdfbf8;
  color: var(--soft-ink);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 620;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.variant-list button > span:last-child,
.colour-chip > span:last-child,
.tag-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.variant-list button:hover,
.variant-list button.is-active {
  border-color: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.variant-list img,
.variant-dot {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  object-fit: cover;
}

.variant-dot {
  display: inline-block;
  background: var(--paper-deep);
}

.dialog-active-finish {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.colour-group {
  margin: 18px 0;
  padding: 16px;
  background: #fbf8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.colour-group h3 {
  margin-bottom: 13px;
  font-size: 1.1rem;
}

.colour-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-height: 224px;
  overflow: auto;
  padding-right: 4px;
}

.colour-chip {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  height: auto;
  min-height: 48px;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: 8px;
  color: var(--soft-ink);
  line-height: 1.15;
  white-space: normal;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.colour-chip:hover {
  border-color: rgba(0, 0, 0, 0.26);
  box-shadow: 0 10px 28px rgba(32, 31, 29, 0.08);
  transform: translateY(-1px);
}

.colour-chip img {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

@media (max-width: 1080px) {
  .site-header {
    min-height: 76px;
  }

  .split-hero {
    min-height: calc(100svh - 76px);
    margin-top: 76px;
  }

  .brand img {
    width: 160px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .hero-notes {
    display: none;
  }

  .section-grid,
  .preview-intro,
  .catalogue-heading,
  .contact-layout,
  .studio-layout,
  .editorial-hero,
  .page-hero-modern .page-hero-content,
  .promise-band,
  .immersive-band,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .process-list,
  .curated-grid,
  .range-grid,
  .brochure-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .curated-grid-editorial {
    grid-template-columns: 1fr;
  }

  .curated-grid-editorial .featured-primary .range-card-home {
    min-height: 0;
  }

  .curated-grid-editorial .featured-primary .range-card-image img {
    aspect-ratio: 16 / 10;
  }

  .curated-grid-editorial .featured-primary .range-card-body {
    margin: 0;
    padding: 24px;
    border: 0;
    box-shadow: none;
  }

  .editorial-hero,
  .contact-hero {
    min-height: auto;
  }

  .editorial-hero-media,
  .contact-hero-card {
    min-height: 420px;
  }

  .promise-copy {
    position: static;
  }

  .curated-grid-kitchens .range-card-featured {
    grid-row: auto;
  }

  .curated-grid-kitchens .range-card:not(.range-card-featured) {
    display: flex;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .curated-grid-kitchens .range-card:not(.range-card-featured) .range-card-body {
    padding-top: 16px;
  }

  .range-card-featured img {
    aspect-ratio: 16 / 11;
  }

  .range-dialog {
    height: min(780px, calc(100vh - 36px));
    overflow: auto;
  }

  .dialog-layout {
    height: auto;
    max-height: none;
  }

  .dialog-media-panel,
  .dialog-content {
    max-height: none;
    overflow: visible;
  }

  .dialog-image-frame img {
    width: 100%;
  }

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

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

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

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

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero,
  .page-hero,
  .section,
  .editorial-hero,
  .immersive-band {
    padding-inline: 20px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 126px;
    padding-bottom: 58px;
  }

  .split-hero {
    flex-direction: column;
    min-height: auto;
  }

  .split-hero-panel {
    flex-basis: auto;
    min-height: 48svh;
  }

  .split-hero-divider {
    top: 50%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-0.5px);
  }

  .split-hero-content {
    width: 100%;
    padding: 30px 20px;
  }

  .split-hero-bedrooms .split-hero-content {
    align-items: flex-start;
    margin-left: 0;
    text-align: left;
  }

  .split-hero-title {
    max-width: 10ch;
    font-size: clamp(2.72rem, 14vw, 4.1rem);
  }

  .split-hero-reveal {
    gap: 16px;
    max-width: 100%;
    margin-top: 18px;
    opacity: 1;
    transform: none;
  }

  .split-hero-copy {
    max-width: 32rem;
    font-size: 0.94rem;
  }

  .split-hero-caption {
    display: none;
  }

  .page-hero {
    min-height: 54vh;
    padding-top: 128px;
  }

  .page-hero-modern {
    min-height: 68vh;
    padding-bottom: 42px;
  }

  .page-hero-modern::before {
    inset: 10px;
  }

  .page-hero-panel {
    padding: 18px;
  }

  .editorial-hero {
    margin-top: 76px;
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .editorial-hero::before {
    top: 90px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .editorial-hero-media,
  .contact-hero-card {
    min-height: 340px;
  }

  .editorial-hero-media div {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4.1rem);
  }

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

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

  .button {
    width: 100%;
  }

  .signal-strip,
  .process-list,
  .curated-grid,
  .range-grid,
  .brochure-panels,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .curated-grid-editorial .featured-stack .range-card-home {
    grid-template-columns: 1fr;
  }

  .curated-grid-editorial .featured-stack .range-card-image img {
    aspect-ratio: 16 / 10;
  }

  .curated-grid-editorial .featured-primary .range-card-body,
  .curated-grid-editorial .featured-stack .range-card-body,
  .range-card-gallery .range-card-body {
    padding: 20px;
  }

  .studio-panel div,
  .promise-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .signal-strip div {
    min-height: 94px;
  }

  .catalogue-tools {
    display: grid;
  }

  .segment-control {
    justify-content: flex-start;
  }

  .contact-form {
    padding: 20px;
  }

  .dialog-content {
    padding: 30px 22px;
  }

  .variant-panel {
    padding: 20px;
  }

  .dialog-active-finish {
    padding: 0 20px 20px;
  }

  .variant-list,
  .colour-list,
  .dialog-meta {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

/* Premium refinement layer */
:root {
  --bbk-red: #8d0928;
  --bbk-red-dark: #65051c;
  --bbk-blue: #263f51;
  --ink: #1b2226;
  --soft-ink: #3a444a;
  --muted: #62696a;
  --paper: #f7f2eb;
  --paper-deep: #ebe2d8;
  --white: #fffdf9;
  --line: #d8cec2;
  --charcoal: #172630;
  --moss: #6b725f;
  --blue-grey: #40596a;
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.08);
  --max: 1360px;
  --radius-xs: 3px;
  --radius: 5px;
  --space-section: clamp(92px, 10vw, 156px);
  --space-section-tight: clamp(72px, 7vw, 116px);
  --gutter: clamp(20px, 4vw, 64px);
  --ease-premium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --image-grade: saturate(0.92) contrast(0.96) brightness(0.99);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 7.4vw, 7.8rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(3rem, 5.3vw, 5.5rem);
}

h3 {
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
}

p {
  text-wrap: pretty;
}

.eyebrow,
.range-kind {
  color: color-mix(in srgb, var(--bbk-red) 72%, var(--soft-ink));
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.site-header {
  min-height: 84px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 242, 235, 0.9);
  border-bottom-color: rgba(216, 206, 194, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48) inset;
}

.brand img {
  width: 176px;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 12px 10px;
  color: color-mix(in srgb, var(--soft-ink) 88%, var(--bbk-blue));
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: color var(--ease-premium);
}

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

.site-nav a::after {
  left: 10px;
  right: 10px;
  bottom: 8px;
  transform-origin: left;
  transition: opacity var(--ease-premium), transform var(--ease-premium);
}

.nav-toggle,
.button,
.contact-form input,
.contact-form textarea,
.search-field input,
.segment-control button,
.brochure-panels article,
.colour-group,
.colour-chip,
.variant-list button,
.dialog-spec,
.empty-state,
.page-hero-panel,
.contact-form,
.contact-hero-card,
.studio-panel,
.range-card,
.range-card-image {
  border-radius: var(--radius);
}

.button {
  min-height: 50px;
  padding: 14px 24px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  transition:
    background var(--ease-premium),
    color var(--ease-premium),
    border-color var(--ease-premium),
    transform var(--ease-premium);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--bbk-red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--bbk-red-dark);
}

.text-link,
.text-button {
  color: var(--bbk-red);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.text-link::after,
.text-button::after {
  transform: scaleX(0.22);
  transition: transform var(--ease-premium);
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
}

.section-body p,
.preview-intro p,
.catalogue-heading p,
.contact-copy p,
.immersive-band p,
.next-step p,
.studio-copy p:not(.eyebrow),
.editorial-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.78;
}

.section-grid,
.preview-intro,
.catalogue-heading,
.contact-layout,
.studio-layout {
  gap: clamp(44px, 7vw, 108px);
}

.split-hero {
  min-height: calc(100svh - 84px);
  margin-top: 84px;
  background: var(--charcoal);
}

.split-hero-panel img,
.page-hero-media,
.hero-media,
.immersive-band img,
.editorial-hero-media img,
.contact-hero-card {
  filter: var(--image-grade);
}

.split-hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.32) 56%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
}

.split-hero-content {
  padding: clamp(34px, 5vw, 70px);
}

.split-hero-title {
  max-width: 10.5ch;
  font-size: clamp(4rem, 6vw, 6.8rem);
}

.split-hero-copy {
  max-width: 34rem;
  font-size: 1rem;
}

.split-hero-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.split-hero-statement {
  top: clamp(104px, 16vh, 172px);
  width: min(820px, 62vw);
}

.split-hero-statement span {
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
}

.split-hero-statement small {
  color: rgba(255, 253, 249, 0.72);
  letter-spacing: 0.14em;
}

.split-hero-caption {
  border-radius: var(--radius);
}

.signal-strip {
  background: transparent;
  border-block: 1px solid var(--line);
}

.signal-strip div {
  min-height: 132px;
  background: color-mix(in srgb, var(--paper) 72%, var(--white));
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  text-transform: none;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-studio,
.collection-preview,
.brochures,
.contact-section,
.catalogue,
.contact-page-section,
.about-story {
  background: var(--paper);
}

.studio-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.studio-copy h2 {
  max-width: 760px;
}

.studio-panel {
  min-height: 380px;
  background: transparent;
  border-color: var(--line);
}

.studio-panel div {
  padding: clamp(24px, 3vw, 38px);
  border-bottom-color: var(--line);
}

.studio-panel span {
  color: var(--bbk-blue);
}

.collection-preview {
  border-top: 1px solid var(--line);
}

.curated-grid-editorial {
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(48px, 7vw, 86px);
}

.curated-grid-editorial .featured-primary .range-card-home,
.curated-grid-editorial .featured-stack .range-card-home,
.range-card-gallery {
  background: color-mix(in srgb, var(--white) 84%, var(--paper));
  border-color: var(--line);
  box-shadow: none;
}

.curated-grid-editorial .featured-primary .range-card-home {
  min-height: 680px;
}

.curated-grid-editorial .featured-primary .range-card-image img {
  aspect-ratio: 1.18 / 1;
}

.curated-grid-editorial .featured-primary .range-card-body {
  margin: -84px 36px 0;
  padding: 30px;
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(216, 206, 194, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.curated-grid-editorial .featured-stack {
  gap: 22px;
}

.curated-grid-editorial .featured-stack .range-card-home {
  min-height: 204px;
}

.range-card {
  transition:
    border-color var(--ease-premium),
    box-shadow var(--ease-premium),
    transform var(--ease-premium);
}

.range-card:hover {
  transform: translateY(-2px);
}

.range-card:hover h3,
.range-card:focus-visible h3 {
  color: var(--bbk-red);
}

.range-card-image {
  background: #e8ded2;
}

.range-card img {
  filter: var(--image-grade);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--ease-premium);
}

.range-card:hover img {
  filter: saturate(0.95) contrast(0.98) brightness(1);
  transform: scale(1.025);
}

.range-card-image::after {
  background: rgba(0, 0, 0, 0.74);
  border-radius: var(--radius-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: opacity var(--ease-premium), transform var(--ease-premium);
}

.range-kind {
  color: var(--bbk-blue);
}

.range-card h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.range-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.range-card-meta {
  color: color-mix(in srgb, var(--muted) 88%, var(--bbk-blue));
  font-size: 0.74rem;
}

.tag-list span,
.colour-chip,
.contact-route-list span {
  background: color-mix(in srgb, var(--moss) 12%, var(--paper));
  color: color-mix(in srgb, var(--moss) 72%, var(--ink));
  font-weight: 500;
}

.range-card-palette span {
  background: var(--paper);
  border-color: rgba(216, 206, 194, 0.92);
}

.range-card-palette img,
.range-card:hover .range-card-palette img {
  filter: none;
  transform: none;
  transition: none;
}

.catalogue-page {
  padding-top: var(--space-section-tight);
}

.catalogue-tools {
  margin: 20px 0 52px;
}

.range-grid {
  gap: clamp(24px, 2.6vw, 34px);
}

.range-card-gallery:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.page-hero-modern {
  min-height: 76vh;
  padding-bottom: clamp(70px, 8vw, 116px);
}

.page-hero-modern::before {
  inset: 22px;
  border-color: rgba(255, 253, 249, 0.18);
}

.page-hero-modern::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.02));
}

.page-hero-modern .page-hero-content {
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
}

.page-hero-modern h1 {
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  max-width: 560px;
}

.page-hero-panel {
  background: rgba(255, 253, 249, 0.11);
}

.page-hero-panel span {
  font-size: clamp(2rem, 2.7vw, 3.1rem);
}

.editorial-hero {
  min-height: calc(86vh - 84px);
  margin-top: 84px;
  padding: clamp(112px, 12vw, 176px) max(24px, calc((100vw - var(--max)) / 2)) clamp(70px, 8vw, 112px);
  background: var(--paper);
}

.editorial-hero::before {
  top: clamp(94px, 10vw, 136px);
  background: var(--line);
}

.editorial-hero-copy p:not(.eyebrow) {
  max-width: 560px;
}

.editorial-hero-media {
  min-height: 520px;
}

.editorial-hero-media img,
.contact-hero-card {
  box-shadow: none;
}

.promise-band {
  background: var(--charcoal);
}

.promise-grid article {
  background: rgba(255, 253, 249, 0.07);
  border-color: rgba(255, 253, 249, 0.16);
  border-radius: var(--radius);
}

.promise-grid span {
  color: #dcc7ba;
}

.contact-hero-card {
  border-radius: var(--radius);
}

.contact-form {
  background: color-mix(in srgb, var(--white) 76%, var(--paper));
  border-color: var(--line);
  box-shadow: none;
}

.contact-form label {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form textarea,
.search-field input {
  background: var(--white);
  border-color: var(--line);
}

.segment-control button {
  background: color-mix(in srgb, var(--white) 78%, var(--paper));
  border-color: var(--line);
  font-weight: 500;
}

.segment-control button.is-active,
.segment-control button:hover {
  background: var(--bbk-blue);
  border-color: var(--bbk-blue);
}

.immersive-band {
  background: var(--charcoal);
}

.immersive-band img {
  border-radius: var(--radius);
}

.site-footer {
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  background: #172630;
}

.footer-social {
  display: grid;
  gap: 6px;
}

.footer-social span {
  color: rgba(255, 253, 249, 0.54);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social a {
  color: var(--white);
  display: inline-grid;
  line-height: 1;
  opacity: 0.82;
  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  opacity: 1;
}

.reveal {
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(3.4rem, 10vw, 6.2rem);
  }

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

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

  .split-hero,
  .editorial-hero {
    margin-top: 76px;
  }

  .site-nav {
    display: grid;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity var(--ease-premium),
      transform var(--ease-premium),
      visibility var(--ease-premium);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .studio-layout,
  .page-hero-modern .page-hero-content,
  .editorial-hero,
  .promise-band,
  .contact-layout,
  .section-grid,
  .preview-intro,
  .catalogue-heading {
    grid-template-columns: 1fr;
  }

  .curated-grid-editorial .featured-primary .range-card-home {
    min-height: 0;
  }

  .curated-grid-editorial .featured-primary .range-card-body {
    margin: 0;
    border: 0;
    box-shadow: none;
  }

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

@media (max-width: 720px) {
  :root {
    --space-section: clamp(74px, 16vw, 102px);
    --space-section-tight: clamp(62px, 13vw, 88px);
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
  }

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

  .section,
  .editorial-hero,
  .immersive-band,
  .page-hero {
    padding-inline: 20px;
  }

  .split-hero-panel {
    min-height: 38svh;
  }

  .split-hero-title {
    font-size: clamp(2.9rem, 13vw, 4.05rem);
  }

  .split-hero-copy {
    font-size: 0.94rem;
  }

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

  .signal-strip div:nth-child(2n) {
    border-right: 0;
  }

  .curated-grid-editorial .featured-stack .range-card-home {
    grid-template-columns: 1fr;
  }

  .curated-grid-editorial .featured-primary .range-card-image img,
  .curated-grid-editorial .featured-stack .range-card-image img,
  .range-card-gallery .range-card-image img {
    aspect-ratio: 4 / 3;
  }

  .range-grid {
    gap: 26px;
  }

  .page-hero-modern {
    min-height: 72vh;
  }

  .page-hero-modern::before {
    inset: 12px;
  }

  .page-hero-panel {
    display: none;
  }

  .editorial-hero-media,
  .contact-hero-card {
    min-height: 340px;
  }

  .process-list,
  .promise-grid article,
  .studio-panel div {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* Content and brochure refinement */
.split-hero .split-hero-statement {
  display: block;
  max-width: min(900px, 62vw);
  margin: 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(3rem, 4.8vw, 5.9rem);
  line-height: 0.94;
  text-shadow: 0 24px 78px rgba(0, 0, 0, 0.42);
}

.split-hero:hover .split-hero-statement {
  transform: translateX(-50%) translateY(-6px);
}

.button-ghost-dark {
  border-color: color-mix(in srgb, var(--bbk-blue) 28%, var(--line));
  background: transparent;
  color: var(--bbk-blue);
}

.button-ghost-dark:hover {
  border-color: var(--bbk-blue);
  background: var(--bbk-blue);
  color: var(--white);
}

.about-story-elevated {
  padding-bottom: var(--space-section-tight);
}

.about-story-elevated .section-grid {
  align-items: end;
}

.about-trust {
  padding-top: var(--space-section-tight);
  background: color-mix(in srgb, var(--paper) 84%, var(--paper-deep));
}

.about-trust-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
}

.about-trust-image {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8ded2;
}

.about-trust-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: var(--image-grade);
}

.about-trust-copy {
  max-width: 680px;
}

.about-trust-copy h2 {
  max-width: 680px;
}

.about-trust-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.trust-notes span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft-ink);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.range-depth {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.range-depth-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}

.range-depth-intro p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.range-direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
}

.range-direction-grid article {
  min-height: 290px;
  padding: clamp(24px, 3vw, 38px);
  background: color-mix(in srgb, var(--white) 74%, var(--paper));
}

.range-direction-grid span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 0.9;
}

.range-direction-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.planning-panel {
  background: color-mix(in srgb, var(--white) 54%, var(--paper));
}

.planning-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 92px);
}

.planning-steps {
  display: grid;
  gap: 18px;
}

.planning-steps article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.planning-steps h3 {
  margin-bottom: 12px;
}

.planning-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.next-step-inner .text-link {
  margin-left: 18px;
}

.brochure-panels-editorial {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brochure-panels-editorial article {
  min-height: 320px;
  border: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--white) 78%, var(--paper));
}

.brochure-panels-editorial .brochure-mark {
  display: inline-block;
  width: auto;
  height: auto;
  margin-bottom: 54px;
  background: transparent;
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.9;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.brochure-actions .text-link {
  margin-top: 0;
}

.brochure-hero {
  display: grid;
  align-items: end;
  min-height: 72vh;
  margin-top: 84px;
  padding: clamp(120px, 13vw, 180px) max(24px, calc((100vw - var(--max)) / 2)) clamp(72px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)),
    url("../images/brand/hero-kitchen.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.brochure-hero-bedroom {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)),
    url("../images/brand/hero-bedroom.jpg") center / cover;
}

.brochure-hero-copy {
  max-width: 780px;
}

.brochure-hero-copy p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

.brochure-builder {
  background: var(--paper);
}

.brochure-document-cover {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.brochure-document-cover p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.brochure-summary-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brochure-summary-grid span {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: color-mix(in srgb, var(--white) 76%, var(--paper));
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brochure-summary-grid strong {
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

.brochure-range-list {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  margin-top: clamp(48px, 7vw, 88px);
}

.brochure-range {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}

.brochure-range-media {
  position: sticky;
  top: 110px;
}

.brochure-range-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: var(--image-grade);
}

.brochure-range-media span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 10px 12px;
  background: rgba(255, 253, 249, 0.88);
  border-radius: var(--radius-xs);
  color: var(--bbk-blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brochure-range-content h3 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.brochure-range-content p {
  max-width: 720px;
  color: var(--muted);
}

.brochure-spec {
  padding: 18px;
  border-left: 3px solid var(--bbk-red);
  background: color-mix(in srgb, var(--white) 70%, var(--paper));
  border-radius: var(--radius);
}

.brochure-range-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.brochure-range-meta span {
  padding: 8px 11px;
  background: color-mix(in srgb, var(--bbk-blue) 9%, var(--paper));
  border-radius: var(--radius);
  color: var(--soft-ink);
  font-size: 0.72rem;
}

.brochure-subsection {
  margin-top: 26px;
}

.brochure-subsection h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brochure-variant-list,
.brochure-colour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brochure-variant-list > span,
.brochure-colour-list > span {
  display: inline-grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  max-width: 260px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--white) 78%, var(--paper));
  color: var(--soft-ink);
  font-size: 0.73rem;
  line-height: 1.2;
}

.brochure-variant-list img,
.brochure-colour-list img {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-xs);
  object-fit: cover;
}

@media (max-width: 1080px) {
  .about-trust-layout,
  .range-depth-intro,
  .planning-layout,
  .brochure-document-cover,
  .brochure-range {
    grid-template-columns: 1fr;
  }

  .about-trust-image,
  .about-trust-image img {
    min-height: 440px;
  }

  .range-direction-grid {
    grid-template-columns: 1fr;
  }

  .brochure-range-media {
    position: relative;
    top: auto;
  }
}

@media (max-width: 780px) {
  .split-hero .split-hero-statement {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 34px 20px 30px;
    background: var(--paper);
    color: var(--ink);
    font-size: clamp(2.35rem, 10vw, 3.65rem);
    line-height: 0.96;
    text-align: left;
    text-shadow: none;
    transform: none;
  }

  .split-hero:hover .split-hero-statement {
    transform: none;
  }

  .split-hero-kitchens .split-hero-content {
    padding-top: 30px;
  }
}

@media (max-width: 720px) {
  .range-direction-grid article {
    min-height: 0;
  }

  .range-direction-grid span,
  .brochure-panels-editorial .brochure-mark {
    margin-bottom: 34px;
  }

  .next-step-inner .text-link {
    margin-left: 0;
  }

  .brochure-actions {
    display: grid;
  }

  .brochure-hero {
    min-height: 66vh;
    margin-top: 76px;
    padding-inline: 20px;
  }

  .brochure-range-content h3 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

@media print {
  .site-header,
  .site-footer,
  .brochure-hero,
  .dialog-backdrop,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #222;
    font-size: 10pt;
  }

  .section,
  .brochure-builder {
    padding: 0 !important;
  }

  .brochure-document-cover,
  .brochure-range {
    page-break-after: always;
    break-after: page;
    padding: 28pt 0;
  }

  .brochure-range {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24pt;
  }

  .brochure-range-media {
    position: relative;
    top: auto;
  }

  .brochure-range-media img {
    max-height: 220pt;
  }

  .brochure-range-content h3 {
    font-size: 26pt;
  }

  .brochure-subsection {
    break-inside: avoid;
  }
}

/* About page redesign */
body[data-page="about"] {
  background: var(--paper);
}

.about-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  min-height: clamp(660px, 82svh, 860px);
  margin-top: 88px;
  padding: clamp(76px, 8vw, 126px) max(28px, calc((100vw - var(--max)) / 2)) clamp(70px, 8vw, 118px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about-hero-copy {
  max-width: 680px;
}

.about-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 4.35vw, 5.25rem);
  line-height: 0.98;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1rem, 1.14vw, 1.16rem);
  line-height: 1.78;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.about-hero-gallery {
  position: relative;
  min-height: clamp(520px, 58vw, 690px);
}

.about-hero-gallery figure {
  margin: 0;
}

.about-hero-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 78%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8ded2;
}

.about-hero-inset {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: var(--radius);
  background: #e8ded2;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.about-hero-main img,
.about-hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-grade);
}

.about-hero-inset img {
  aspect-ratio: 4 / 5;
}

.about-hero-note {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(18px, 3vw, 42px);
  display: flex;
  flex-wrap: wrap;
  max-width: 360px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.18);
  backdrop-filter: blur(16px);
}

.about-hero-note span {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-principles {
  background: color-mix(in srgb, var(--white) 56%, var(--paper));
}

.about-principles-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.68fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
}

.about-principles-heading h2 {
  max-width: 760px;
}

.about-principles-heading p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(46px, 6vw, 84px);
  background: var(--line);
  border: 1px solid var(--line);
}

.about-principles-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
  background: color-mix(in srgb, var(--white) 70%, var(--paper));
}

.about-principles-grid span {
  margin-bottom: clamp(42px, 6vw, 84px);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.about-principles-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.about-principles-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.about-studio-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  padding: var(--space-section) max(28px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.about-studio-media {
  min-height: clamp(420px, 48vw, 640px);
  overflow: hidden;
  border-radius: var(--radius);
}

.about-studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.94) brightness(0.86);
}

.about-studio-copy {
  max-width: 620px;
}

.about-studio-copy h2,
.about-studio-copy p {
  color: var(--white);
}

.about-studio-copy h2 {
  margin-bottom: 24px;
}

.about-studio-copy p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.74);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.8;
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
  background: var(--paper);
}

.about-proof-copy {
  position: sticky;
  top: 122px;
  max-width: 680px;
}

.about-proof-copy p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
}

.about-proof-grid {
  display: grid;
  gap: 18px;
}

.about-proof-grid article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 172px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--white) 72%, var(--paper));
}

.about-proof-grid strong {
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.about-proof-grid span {
  max-width: 360px;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.5;
}

.about-cta {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
    url("../images/ac/images/kitchens-24/large/Mornington-Shaker-Hartforth-Blue.jpg") center / cover;
  color: var(--white);
}

.about-cta-inner {
  max-width: 760px;
}

.about-cta h2,
.about-cta p,
.about-cta .eyebrow {
  color: var(--white);
}

.about-cta p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 253, 249, 0.76);
}

.about-cta .button-primary {
  background: var(--white);
  color: var(--bbk-red);
}

.about-cta .button-primary:hover {
  background: color-mix(in srgb, var(--white) 88%, var(--paper-deep));
  color: var(--bbk-red-dark);
}

@media (max-width: 1180px) {
  .about-page-hero,
  .about-principles-heading,
  .about-studio-band,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    min-height: 0;
  }

  .about-hero-gallery {
    min-height: 620px;
  }

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

  .about-proof-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .about-page-hero {
    margin-top: 76px;
    padding: 64px 20px 72px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.95rem, 12.5vw, 4.15rem);
  }

  .about-hero-actions {
    display: grid;
    gap: 10px;
  }

  .about-hero-gallery {
    min-height: 430px;
  }

  .about-hero-main {
    width: 100%;
    height: 72%;
  }

  .about-hero-inset {
    width: 50%;
    border-width: 8px;
  }

  .about-hero-note {
    right: 12px;
    bottom: 18px;
    max-width: 220px;
  }

  .about-hero-note span {
    padding: 9px 10px;
    font-size: 0.62rem;
  }

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

  .about-principles-grid article {
    min-height: 0;
  }

  .about-principles-grid span {
    margin-bottom: 28px;
  }

  .about-studio-band {
    padding: 74px 20px;
  }

  .about-studio-media {
    min-height: 320px;
  }

  .about-proof-grid article {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* Final live-site corrections */
body[data-page="home"] .split-hero {
  min-height: clamp(560px, 78svh, 780px);
}

body[data-page="home"] .split-hero-panel {
  min-height: inherit;
}

@media (max-width: 780px) {
  body[data-page="home"] .split-hero {
    min-height: auto;
  }

  body[data-page="home"] .split-hero-panel {
    min-height: clamp(300px, 38svh, 420px);
  }
}

/* About restraint pass */
body[data-page="about"] .button {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition:
    background var(--ease-premium),
    border-color var(--ease-premium),
    color var(--ease-premium),
    transform var(--ease-premium);
}

body[data-page="about"] .button:hover {
  transform: translateY(-1px);
}

.about-page-hero {
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(56px, 8vw, 136px);
  min-height: clamp(720px, 86svh, 940px);
  padding-top: clamp(96px, 9vw, 152px);
  padding-bottom: clamp(96px, 9vw, 150px);
  background: var(--paper);
}

.about-hero-copy h1 {
  max-width: 700px;
}

.about-hero-actions {
  gap: 24px;
  margin-top: 42px;
}

.about-hero-actions .button-primary {
  background: transparent;
  border-color: color-mix(in srgb, var(--bbk-red) 78%, var(--line));
  color: var(--bbk-red);
}

.about-hero-actions .button-primary:hover {
  background: var(--bbk-red);
  border-color: var(--bbk-red);
  color: var(--white);
}

.about-hero-gallery {
  min-height: clamp(520px, 52vw, 660px);
}

.about-hero-main {
  right: 0;
  width: 84%;
  height: 76%;
  border-radius: var(--radius);
}

.about-hero-inset {
  left: 3%;
  bottom: 2%;
  width: 34%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.about-hero-main img,
.about-hero-inset img {
  filter: saturate(0.9) contrast(0.95) brightness(0.98);
}

.about-hero-note {
  left: 0;
  right: auto;
  bottom: -2px;
  gap: 18px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.about-hero-note span {
  padding: 0;
  background: transparent;
  color: color-mix(in srgb, var(--muted) 82%, var(--bbk-blue));
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.about-principles,
.about-proof,
.about-cta {
  padding-top: clamp(118px, 11vw, 184px);
  padding-bottom: clamp(118px, 11vw, 184px);
}

.about-principles {
  background: color-mix(in srgb, var(--paper) 86%, var(--white));
}

.about-principles-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(52px, 8vw, 132px);
}

.about-principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4.2vw, 70px);
  margin-top: clamp(68px, 8vw, 116px);
  background: transparent;
  border: 0;
}

.about-principles-grid article {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px) 0 0;
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--line) 84%, var(--paper));
}

.about-principles-grid article:nth-child(even) {
  margin-top: clamp(36px, 5vw, 72px);
}

.about-principles-grid span {
  margin-bottom: clamp(34px, 4vw, 58px);
  color: color-mix(in srgb, var(--moss) 68%, var(--muted));
  font-weight: 500;
}

.about-principles-grid h3 {
  font-size: clamp(1.55rem, 1.8vw, 2rem);
}

.about-studio-band {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: clamp(56px, 8vw, 132px);
  padding-top: clamp(126px, 12vw, 196px);
  padding-bottom: clamp(126px, 12vw, 196px);
  background: #263f51;
}

.about-studio-media {
  position: relative;
  min-height: clamp(460px, 48vw, 660px);
}

.about-studio-media::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  content: "";
  pointer-events: none;
}

.about-studio-media img {
  filter: saturate(0.82) contrast(0.92) brightness(0.88);
}

.about-studio-copy {
  max-width: 590px;
}

.about-studio-copy p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.7);
}

.about-proof {
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.1fr);
  gap: clamp(56px, 8vw, 132px);
}

.about-proof-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-proof-grid article {
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 158px;
  padding: clamp(28px, 3vw, 42px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.about-proof-grid strong {
  color: color-mix(in srgb, var(--bbk-blue) 86%, var(--muted));
  font-size: clamp(2.8rem, 4.3vw, 4.8rem);
}

.about-proof-grid span {
  color: var(--soft-ink);
}

.about-cta {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 58svh, 720px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56) 52%, rgba(0, 0, 0, 0.72)),
    url("../images/ac/images/kitchens-24/large/Mornington-Shaker-Hartforth-Blue.jpg") center / cover;
}

.about-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.12);
  content: "";
}

.about-cta-inner {
  max-width: 720px;
}

.about-cta p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.72);
}

.about-cta .button-primary {
  background: rgba(255, 253, 249, 0.9);
  border-color: rgba(255, 253, 249, 0.9);
  color: #263f51;
}

.about-cta .button-primary:hover {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.72);
  color: var(--white);
}

@media (max-width: 1180px) {
  .about-page-hero,
  .about-principles-heading,
  .about-studio-band,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-principles-grid article:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .about-page-hero {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  .about-hero-gallery {
    min-height: 390px;
  }

  .about-hero-main {
    width: 100%;
    height: 78%;
  }

  .about-hero-inset {
    left: 0;
    width: 40%;
  }

  .about-hero-note {
    display: none;
  }

  .about-principles,
  .about-proof,
  .about-cta {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .about-principles-grid {
    gap: 34px;
    margin-top: 56px;
  }

  .about-principles-grid article {
    padding-top: 24px;
  }

  .about-studio-band {
    padding: 96px 20px;
  }

  .about-proof-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-cta {
    min-height: 560px;
  }
}

/* PDF brochure fallback */
.brochure-panels-pdf {
  gap: 24px;
}

.brochure-panels-pdf article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  background: color-mix(in srgb, var(--white) 80%, var(--paper));
}

.brochure-cover {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(0.98);
}

.pdf-brochure-page {
  min-height: calc(100vh - 84px);
  margin-top: 84px;
  background: var(--paper);
}

.pdf-brochure-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.pdf-brochure-layout > img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.96) contrast(0.98);
}

.pdf-brochure-layout p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .pdf-brochure-layout {
    grid-template-columns: 1fr;
  }
}

/* PDF-style live brochures */
.button-ghost-light {
  border-color: rgba(255, 253, 249, 0.56);
  background: transparent;
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--bbk-red);
}

.brochure-cover-page {
  display: grid;
  min-height: calc(82svh - 84px);
  margin-top: 84px;
  padding: clamp(72px, 8vw, 128px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 42%),
    var(--bbk-red);
  color: var(--white);
  overflow: hidden;
}

.brochure-cover-page-bedroom {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.32), transparent 48%),
    var(--bbk-red);
}

.brochure-cover-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: end;
  width: 100%;
}

.brochure-cover-copy {
  max-width: 820px;
}

.brochure-cover-copy .eyebrow,
.brochure-cover-copy h1 {
  color: var(--white);
}

.brochure-cover-copy h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 10.5rem);
}

.brochure-cover-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}

.brochure-cover-page .button-primary {
  background: var(--white);
  color: var(--bbk-red);
}

.brochure-cover-page .button-primary:hover {
  background: color-mix(in srgb, var(--white) 88%, var(--paper-deep));
  color: var(--bbk-red-dark);
}

.brochure-cover-art {
  justify-self: end;
  width: min(100%, 440px);
  padding: 12px;
  background: rgba(255, 253, 249, 0.1);
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: var(--radius);
}

.brochure-cover-art img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: var(--radius-xs);
  filter: saturate(0.94) contrast(0.98);
}

.brochure-intro {
  background: color-mix(in srgb, var(--white) 50%, var(--paper));
  border-bottom: 1px solid var(--line);
}

.brochure-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
}

.brochure-intro-grid h2 {
  max-width: 760px;
}

.brochure-intro-grid p {
  max-width: 620px;
  color: var(--muted);
}

.brochure-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 76px);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.brochure-summary-strip span {
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: center;
  padding: 24px;
  background: color-mix(in srgb, var(--white) 68%, var(--paper));
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brochure-summary-strip strong {
  color: var(--bbk-blue);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

.brochure-builder .brochure-range-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 0;
}

.brochure-sheet {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(52px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.brochure-sheet:first-child {
  padding-top: 0;
}

.brochure-sheet-media {
  position: sticky;
  top: 112px;
}

.brochure-sheet-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: color-mix(in srgb, var(--paper-deep) 82%, var(--white));
  border-radius: var(--radius);
  filter: var(--image-grade);
}

.brochure-sheet-content {
  min-width: 0;
}

.brochure-sheet-content h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
}

.brochure-lead {
  max-width: 720px;
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.76;
}

.brochure-sheet .brochure-spec {
  max-width: 720px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--white) 70%, var(--paper));
  border-left: 3px solid var(--bbk-red);
  border-radius: var(--radius);
  color: var(--muted);
}

.brochure-sheet .brochure-range-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 4px;
}

.brochure-sheet .brochure-range-meta span {
  padding: 7px 10px;
  background: color-mix(in srgb, var(--moss) 12%, var(--paper));
  border-radius: var(--radius-xs);
  color: color-mix(in srgb, var(--moss) 72%, var(--ink));
  font-size: 0.7rem;
  font-weight: 500;
}

.brochure-sheet .brochure-subsection {
  margin-top: 28px;
}

.brochure-sheet .brochure-subsection h3 {
  margin-bottom: 14px;
  color: var(--bbk-blue);
  font-family: Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.brochure-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.brochure-chip {
  display: inline-grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  max-width: 260px;
  min-height: 38px;
  padding: 6px 9px;
  background: color-mix(in srgb, var(--white) 78%, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft-ink);
  font-size: 0.73rem;
  line-height: 1.22;
}

.brochure-chip img,
.brochure-chip-dot {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.brochure-chip-dot {
  display: block;
  background: color-mix(in srgb, var(--moss) 18%, var(--paper));
}

@media (max-width: 1080px) {
  .brochure-cover-inner,
  .brochure-intro-grid,
  .brochure-sheet {
    grid-template-columns: 1fr;
  }

  .brochure-cover-art {
    justify-self: start;
    width: min(100%, 520px);
  }

  .brochure-sheet-media {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .brochure-cover-page {
    min-height: auto;
    margin-top: 76px;
    padding: 72px 20px 58px;
  }

  .brochure-cover-copy h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

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

  .brochure-summary-strip span {
    min-height: 104px;
    padding: 18px 14px;
  }

  .brochure-sheet {
    padding: 46px 0;
  }

  .brochure-sheet-content h2 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .brochure-chip {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .brochure-summary-strip {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    margin: 14mm;
    size: A4;
  }

  .site-header,
  .brochure-cover-page .hero-actions,
  .brochure-cover-art {
    display: none !important;
  }

  .brochure-cover-page {
    display: grid !important;
    min-height: 258mm;
    margin: 0;
    padding: 24mm;
    background: var(--bbk-red) !important;
    color: #fff !important;
    break-after: page;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .brochure-cover-copy h1,
  .brochure-cover-copy .eyebrow,
  .brochure-cover-copy p {
    color: #fff !important;
  }

  .brochure-intro {
    break-after: page;
  }

  .brochure-intro,
  .brochure-builder {
    padding: 0 !important;
  }

  .brochure-summary-strip {
    margin-top: 18mm;
  }

  .brochure-sheet {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8mm;
    min-height: 260mm;
    padding: 0;
    border: 0;
    break-after: page;
  }

  .brochure-sheet-media {
    position: relative;
    top: auto;
  }

  .brochure-sheet-media img {
    max-height: 86mm;
  }

  .brochure-sheet-content h2 {
    font-size: 30pt;
  }

  .brochure-lead,
  .brochure-sheet .brochure-spec {
    font-size: 9.5pt;
    line-height: 1.45;
  }

  .brochure-chip {
    min-height: 22pt;
    padding: 4pt 5pt;
    font-size: 7pt;
  }

  .brochure-chip img,
  .brochure-chip-dot {
    width: 14pt;
    height: 14pt;
  }
}

/* Current correction pass */
.brand {
  padding: 8px 10px;
  margin: -8px -10px;
  border-radius: var(--radius);
  transition: background var(--ease-premium), box-shadow var(--ease-premium), transform var(--ease-premium);
}

.brand:hover,
.brand:focus-visible {
  background: var(--bbk-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  outline: 0;
}

.brand:hover img,
.brand:focus-visible img {
  filter: brightness(0) invert(1);
}

.brand:focus-visible {
  box-shadow:
    0 0 0 2px var(--paper),
    0 0 0 4px rgba(0, 0, 0, 0.62);
}

body[data-page="catalogue"] .range-card-gallery .range-card-image,
body[data-page="catalogue"] .range-card-gallery .range-card-image img {
  aspect-ratio: 1.42 / 1;
}

body[data-page="catalogue"] .range-card-gallery .range-card-image img {
  height: auto;
  object-fit: cover;
}

.site-footer img {
  width: 172px;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.studio-panel div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    border-color var(--ease-premium),
    color var(--ease-premium),
    transform var(--ease-premium);
}

.studio-panel div::before,
.studio-panel div::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--ease-premium),
    transform var(--ease-premium);
}

.studio-panel div::before {
  z-index: -2;
  background-image: var(--panel-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) contrast(0.96) brightness(0.88);
  transform: translateX(28px) scale(1.04);
}

.studio-panel div::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36));
}

.studio-panel div:nth-child(1) {
  --panel-image: url("../images/ac/images/kitchens-24/large/Porter-Matt-True-Handleless-Cashmere.jpg");
}

.studio-panel div:nth-child(2) {
  --panel-image: url("../images/ac/images/kitchens-24/large/Wakefield-Parisian-Blue-Mussel.jpg");
}

.studio-panel div:nth-child(3) {
  --panel-image: url("../images/ac/images/bedrooms-24/large/Kensington.jpg");
}

.studio-panel div:hover,
.studio-panel div:focus-within {
  transform: translateY(-1px);
}

.studio-panel div:hover::before,
.studio-panel div:hover::after,
.studio-panel div:focus-within::before,
.studio-panel div:focus-within::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.studio-panel div:hover span,
.studio-panel div:focus-within span {
  color: var(--white);
}

.studio-panel div:hover p,
.studio-panel div:focus-within p {
  color: rgba(255, 253, 249, 0.78);
  transform: translateY(4px);
}

.studio-panel p {
  transition: color var(--ease-premium), transform var(--ease-premium);
}

body[data-page="about"] .about-page-hero {
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(96px, 9vw, 142px);
  padding-bottom: clamp(88px, 8vw, 132px);
}

body[data-page="about"] .about-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.6rem, 5.2vw, 6.15rem);
}

body[data-page="about"] .about-hero-copy p:not(.eyebrow) {
  max-width: 560px;
}

body[data-page="about"] .about-hero-gallery {
  min-height: 0;
  aspect-ratio: 1.22 / 1;
}

body[data-page="about"] .about-hero-main {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
}

body[data-page="about"] .about-hero-inset,
body[data-page="about"] .about-hero-note {
  display: none;
}

body[data-page="about"] .about-principles,
body[data-page="about"] .about-proof,
body[data-page="about"] .about-cta {
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(96px, 9vw, 150px);
}

body[data-page="about"] .about-principles-heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 7vw, 106px);
  align-items: end;
}

body[data-page="about"] .about-principles-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

body[data-page="about"] .about-principles-heading h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 720px;
  font-size: clamp(3.15rem, 4.8vw, 5.6rem);
}

body[data-page="about"] .about-principles-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 560px;
  align-self: end;
}

body[data-page="about"] .about-principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.6vw, 56px);
  margin-top: clamp(58px, 6vw, 86px);
}

body[data-page="about"] .about-principles-grid article {
  padding-top: 24px;
}

body[data-page="about"] .about-principles-grid article:nth-child(even) {
  margin-top: 0;
}

body[data-page="about"] .about-principles-grid span {
  margin-bottom: clamp(28px, 3vw, 42px);
}

body[data-page="about"] .about-studio-band {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
  gap: clamp(48px, 7vw, 104px);
  padding-top: clamp(100px, 9vw, 152px);
  padding-bottom: clamp(100px, 9vw, 152px);
  background: #263f51;
}

body[data-page="about"] .about-studio-media {
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  background: transparent;
}

body[data-page="about"] .about-studio-media img {
  height: 100%;
  object-fit: cover;
}

body[data-page="about"] .about-proof {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(46px, 7vw, 104px);
}

body[data-page="about"] .about-proof-copy {
  position: static;
}

body[data-page="about"] .about-proof-copy h2 {
  max-width: 640px;
  font-size: clamp(3rem, 4.45vw, 5.15rem);
}

body[data-page="about"] .about-proof-grid article {
  min-height: 132px;
}

body[data-page="about"] .about-proof-grid strong {
  font-size: clamp(2.45rem, 3.8vw, 4.2rem);
}

@media (max-width: 1180px) {
  body[data-page="about"] .about-page-hero,
  body[data-page="about"] .about-principles-heading,
  body[data-page="about"] .about-studio-band,
  body[data-page="about"] .about-proof {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-principles-heading .eyebrow,
  body[data-page="about"] .about-principles-heading h2,
  body[data-page="about"] .about-principles-heading p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  body[data-page="about"] .about-hero-gallery,
  body[data-page="about"] .about-studio-media {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .brand {
    padding: 6px 8px;
    margin: -6px -8px;
  }

  body[data-page="about"] .about-page-hero {
    padding-top: 72px;
  }

  body[data-page="about"] .about-hero-gallery,
  body[data-page="about"] .about-studio-media {
    aspect-ratio: 4 / 3;
  }

  body[data-page="about"] .about-principles-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-proof-grid article {
    grid-template-columns: 1fr;
  }
}

/* Refinement pass */
.brand {
  position: relative;
  padding: 0;
  margin: 0;
  border-radius: 0;
  transition: opacity var(--ease-premium);
}

.brand::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--bbk-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: opacity var(--ease-premium), transform var(--ease-premium);
}

.brand:hover,
.brand:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.brand:hover::after,
.brand:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand:hover img,
.brand:focus-visible img {
  filter: none;
  opacity: 0.76;
}

.brand:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--bbk-red) 62%, transparent);
  outline-offset: 10px;
}

.range-card-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.32) 56%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-premium);
}

.range-card:hover .range-card-image::before,
.range-card:focus-visible .range-card-image::before {
  opacity: 1;
}

.range-card-image::after {
  z-index: 2;
}

.studio-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr);
  align-items: center;
}

.studio-copy h2 {
  max-width: 660px;
  font-size: clamp(3rem, 4.6vw, 5.05rem);
}

.studio-image-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.studio-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-grade);
  transition: transform var(--ease-premium), filter var(--ease-premium);
}

.studio-image-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
  content: "";
  opacity: 0.88;
  pointer-events: none;
}

.studio-image-card:hover img {
  filter: saturate(0.96) contrast(0.98) brightness(0.98);
  transform: scale(1.025);
}

.studio-image-card figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 3vw, 34px);
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  margin: 0;
  max-width: 420px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

body[data-page="about"] h1 {
  font-size: clamp(3.35rem, 4.65vw, 5.55rem);
}

body[data-page="about"] .about-principles-heading h2,
body[data-page="about"] .about-proof-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

body[data-page="about"] .about-studio-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 0.78fr);
  align-items: center;
  column-gap: clamp(56px, 7vw, 104px);
  padding-inline: max(28px, calc((100vw - 1360px) / 2));
}

body[data-page="about"] .about-studio-media {
  width: 100%;
  max-width: 680px;
  justify-self: start;
  aspect-ratio: 1.42 / 1;
}

body[data-page="about"] .about-studio-copy {
  width: 100%;
  max-width: 540px;
  justify-self: start;
}

body[data-page="about"] .about-studio-copy h2 {
  max-width: 480px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.2vw, 5rem);
}

body[data-page="about"] .about-studio-copy p:not(.eyebrow) {
  max-width: 520px;
}

.brochure-panels-pdf {
  grid-template-columns: 1fr;
  gap: 18px;
}

.brochure-panels-pdf article {
  display: grid;
  grid-template-columns: minmax(148px, 190px) minmax(0, 1fr);
  gap: 12px 24px;
  align-items: start;
  min-height: 0;
  padding: 22px;
}

.brochure-panels-pdf .brochure-cover {
  grid-row: 1 / span 3;
  width: 100%;
  height: 134px;
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  background: color-mix(in srgb, var(--paper) 70%, var(--white));
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.brochure-panels-pdf h3,
.brochure-panels-pdf p {
  margin-bottom: 0;
}

.brochure-panels-pdf .brochure-actions {
  margin-top: 4px;
}

.brochure-reader-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  min-height: calc(100svh - 84px);
  margin-top: 84px;
  padding: clamp(72px, 7vw, 116px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.brochure-reader-copy h1 {
  max-width: 7ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 7vw, 7rem);
}

.brochure-reader-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.brochure-reader-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  min-height: 0;
  padding: clamp(14px, 2vw, 24px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.07), transparent 38%),
    color-mix(in srgb, var(--white) 76%, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.brochure-reader-cover,
.brochure-reader-frame {
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--white);
  aspect-ratio: 1.42 / 1;
}

.brochure-reader-cover {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
}

.brochure-reader-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) contrast(0.98);
}

.brochure-reader-frame {
  width: 100%;
  border: 1px solid var(--line);
}

.brochure-reader-page-preview {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.brochure-reader-page-preview img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: var(--image-grade);
}

.brochure-reader-page-preview div {
  padding: clamp(18px, 2.4vw, 30px);
}

.brochure-reader-page-preview h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 2.7vw, 3.1rem);
}

.brochure-reader-page-preview p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .studio-layout,
  body[data-page="about"] .about-studio-band,
  .brochure-reader-page {
    grid-template-columns: 1fr;
  }

  .studio-image-card,
  body[data-page="about"] .about-studio-media,
  body[data-page="about"] .about-studio-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .brochure-panels-pdf article {
    grid-template-columns: 1fr;
  }

  .brochure-panels-pdf .brochure-cover {
    grid-row: auto;
    max-width: 320px;
  }

  .brochure-reader-page {
    margin-top: 76px;
    padding: 64px 20px;
  }

  .brochure-reader-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* Mobile interaction refinement */
.brand::after {
  content: none;
  display: none;
}

.brand:hover img,
.brand:focus-visible img {
  opacity: 0.84;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: color-mix(in srgb, var(--white) 72%, var(--paper));
    border: 1px solid color-mix(in srgb, var(--line) 88%, var(--soft-ink));
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
    transition:
      background var(--ease-premium),
      border-color var(--ease-premium),
      box-shadow var(--ease-premium);
  }

  .nav-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    margin: 0;
    background: var(--bbk-red);
    transition:
      width var(--ease-premium),
      background var(--ease-premium),
      transform var(--ease-premium),
      opacity var(--ease-premium);
  }

  .nav-toggle span:nth-child(2) {
    width: 17px;
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    border-color: color-mix(in srgb, var(--bbk-red) 34%, var(--line));
    background: color-mix(in srgb, var(--white) 86%, var(--paper));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .split-hero-panel {
    min-height: clamp(260px, 32svh, 340px);
  }

  body[data-page="home"] .curated-grid-editorial {
    gap: 18px;
    margin-top: 34px;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-home,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-home {
    min-height: 0;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image {
    max-height: 340px;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image img,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image img {
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-body,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-body {
    padding: 18px;
  }

  body[data-page="home"] .range-card h3 {
    font-size: 1.38rem;
  }

  body[data-page="home"] .range-card p {
    -webkit-line-clamp: 2;
  }

  .dialog-backdrop {
    align-items: start;
    padding: 14px;
  }

  .range-dialog {
    width: min(100%, calc(100vw - 28px));
    height: auto;
    max-height: calc(100svh - 28px);
    overflow: auto;
    border-radius: var(--radius);
  }

  .dialog-layout,
  .dialog-media-panel {
    display: block;
  }

  .dialog-media-panel {
    overflow: visible;
    background: var(--paper);
  }

  .dialog-image-frame {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #172630;
  }

  .dialog-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .variant-panel {
    padding: 16px 16px 8px;
    background: color-mix(in srgb, var(--paper) 72%, var(--white));
    border-top: 1px solid var(--line);
  }

  .variant-panel h3 {
    margin-bottom: 12px;
    font-size: 1.04rem;
  }

  .variant-list {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 1px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .variant-list button {
    display: grid;
    flex: 0 0 48px;
    grid-template-columns: 1fr;
    width: 48px;
    min-height: 48px;
    place-items: center;
    padding: 4px;
    border-radius: var(--radius-xs);
    scroll-snap-align: center;
  }

  .variant-list button > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .variant-list img,
  .variant-dot {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
  }

  .dialog-active-finish {
    margin: 0;
    padding: 0 16px 14px;
    background: color-mix(in srgb, var(--paper) 72%, var(--white));
    color: var(--muted);
    font-size: 0.78rem;
  }

  .dialog-content {
    padding: 24px 18px 30px;
  }

  .dialog-content h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .colour-group {
    padding: 14px;
  }

  .colour-list {
    display: flex;
    grid-template-columns: none;
    max-height: none;
    overflow-x: auto;
    padding: 1px 1px 8px;
    -webkit-overflow-scrolling: touch;
  }

  .colour-chip {
    flex: 0 0 auto;
    grid-template-columns: 22px minmax(0, auto);
    min-height: 36px;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .colour-chip img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
  }
}

/* Extended fitted interiors */
.site-nav a {
  padding-inline: 9px;
}

.interior-preview {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.interior-link-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(240px, 0.64fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
  margin-top: 48px;
}

.interior-link-card {
  position: relative;
  min-height: clamp(320px, 34vw, 470px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
}

.interior-link-card:nth-child(3) {
  min-height: clamp(260px, 28vw, 390px);
}

.interior-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-grade);
  transition: transform var(--ease-premium), filter var(--ease-premium);
}

.interior-link-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06));
  content: "";
  opacity: 0.9;
  transition: opacity var(--ease-premium);
}

.interior-link-card > span {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 34px);
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  display: grid;
  gap: 12px;
}

.interior-link-card .eyebrow,
.interior-link-card strong {
  color: var(--white);
}

.interior-link-card strong {
  max-width: 14ch;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.interior-link-card:hover img,
.interior-link-card:focus-visible img {
  filter: saturate(0.98) contrast(0.98) brightness(0.94);
  transform: scale(1.035);
}

.interior-link-card:hover::after,
.interior-link-card:focus-visible::after {
  opacity: 1;
}

.social-proof-section {
  background: color-mix(in srgb, var(--white) 76%, var(--paper));
  border-top: 1px solid var(--line);
}

.live-feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: 48px;
}

.live-feed-card {
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.live-feed-host,
.live-feed-host iframe {
  width: 100%;
  min-height: 280px;
}

.live-feed-host iframe {
  display: block;
  border: 0;
}

.live-feed-note {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: clamp(24px, 4vw, 42px);
}

.live-feed-note h3 {
  max-width: 420px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.live-feed-note p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.page-hero-office .page-hero-media {
  object-position: center 54%;
}

.page-hero-living .page-hero-media {
  object-position: center 48%;
}

.page-hero-cabinets .page-hero-media {
  object-position: center 58%;
}

.cabinet-intro {
  background: var(--paper);
}

.cabinet-colours-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.cabinet-swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.cabinet-swatch-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f3;
  transition: border-color var(--ease-premium), transform var(--ease-premium);
}

.cabinet-swatch-card:hover {
  border-color: color-mix(in srgb, var(--bbk-red) 35%, var(--line));
  transform: translateY(-3px);
}

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

.cabinet-swatch-card h3 {
  margin: 0;
  padding: 14px;
  color: var(--soft-ink);
  font-family: Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.cabinet-features-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.cabinet-feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.cabinet-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.cabinet-feature-list li {
  min-height: 92px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft-ink);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .interior-link-grid,
  .live-feed-layout,
  .cabinet-feature-layout {
    grid-template-columns: 1fr;
  }

  .cabinet-swatch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .interior-link-grid {
    gap: 14px;
    margin-top: 34px;
  }

  .interior-link-card,
  .interior-link-card:nth-child(3) {
    min-height: 280px;
  }

  .interior-link-card strong {
    max-width: 16ch;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .live-feed-layout {
    margin-top: 34px;
  }

  .cabinet-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cabinet-feature-list {
    grid-template-columns: 1fr;
  }
}

/* Brand language and layout tightening */
h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 6vw, 6.35rem);
}

h2 {
  max-width: 740px;
  font-size: clamp(2.55rem, 4.25vw, 4.75rem);
}

.split-hero-title {
  font-size: clamp(3.35rem, 5.2vw, 5.85rem);
}

.page-hero-modern h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 5.4vw, 5.9rem);
}

.catalogue-heading h2,
.preview-intro h2,
.section-grid h2,
.cabinet-feature-layout h2 {
  max-width: 620px;
}

.range-grid {
  align-items: stretch;
}

.range-card-gallery {
  height: 100%;
}

.range-card-gallery .range-card-body {
  flex: 1;
  height: clamp(300px, 23vw, 350px);
  overflow: hidden;
}

.range-card-body > div:first-child {
  width: 100%;
}

.range-card .text-button {
  margin-top: auto;
}

.range-card h3 {
  font-size: clamp(1.45rem, 1.75vw, 1.82rem);
}

.range-card p {
  -webkit-line-clamp: 3;
}

.range-card-gallery .range-card-meta {
  min-height: 18px;
}

.range-card-gallery .tag-list {
  max-height: 28px;
  overflow: hidden;
}

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

.interior-link-card,
.interior-link-card:nth-child(3) {
  height: clamp(330px, 30vw, 430px);
  min-height: 0;
  background: #172630;
  border: 1px solid color-mix(in srgb, var(--line) 42%, transparent);
}

.interior-link-card::after {
  background: rgba(0, 0, 0, 0.48);
  opacity: 1;
}

.interior-link-card::before {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 34px);
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(16px, 2.4vw, 28px);
  height: 1px;
  background: rgba(255, 253, 249, 0.7);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform var(--ease-premium), background var(--ease-premium);
}

.interior-link-card > span {
  transform: translateY(8px);
  transition: transform var(--ease-premium);
}

.interior-link-card strong {
  max-width: 13ch;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.interior-link-card:hover img,
.interior-link-card:focus-visible img {
  filter: saturate(0.94) contrast(0.97) brightness(0.98);
  transform: scale(1.028);
}

.interior-link-card:hover::before,
.interior-link-card:focus-visible::before {
  background: rgba(255, 253, 249, 0.92);
  transform: scaleX(1);
}

.interior-link-card:hover > span,
.interior-link-card:focus-visible > span {
  transform: translateY(0);
}

@media (max-width: 1180px) {
  h1 {
    font-size: clamp(3.1rem, 7vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 5vw, 4rem);
  }

  .interior-link-grid {
    grid-template-columns: 1fr;
  }

  .interior-link-card,
  .interior-link-card:nth-child(3) {
    height: 320px;
  }
}

@media (max-width: 760px) {
  h1,
  .page-hero-modern h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .split-hero-title {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .interior-link-card,
  .interior-link-card:nth-child(3) {
    height: 280px;
  }

  .range-card-gallery .range-card-body {
    height: 288px;
    min-height: 0;
    overflow: hidden;
  }
}

/* Final tightening pass */
h1 {
  font-size: clamp(3.05rem, 5.45vw, 5.9rem);
}

h2 {
  font-size: clamp(2.35rem, 3.95vw, 4.35rem);
}

.split-hero-title {
  font-size: clamp(3.05rem, 4.85vw, 5.45rem);
}

.page-hero-modern h1 {
  font-size: clamp(2.95rem, 4.9vw, 5.45rem);
}

.range-card-gallery .range-card-body {
  flex: 0 0 clamp(300px, 22vw, 336px);
  height: clamp(300px, 22vw, 336px);
  box-sizing: border-box;
}

.range-card-gallery .range-card-body > div:first-child {
  max-height: 132px;
  overflow: hidden;
}

@media (max-width: 1180px) {
  h1 {
    font-size: clamp(2.9rem, 6.5vw, 5.05rem);
  }

  h2 {
    font-size: clamp(2.22rem, 4.5vw, 3.75rem);
  }
}

@media (max-width: 760px) {
  h1,
  .page-hero-modern h1 {
    font-size: clamp(2.62rem, 13.2vw, 3.85rem);
  }

  h2 {
    font-size: clamp(2.08rem, 10.2vw, 3.05rem);
  }

  .split-hero-title {
    font-size: clamp(2.72rem, 12.8vw, 3.88rem);
  }

  .range-card-gallery .range-card-body {
    flex-basis: 288px;
    height: 288px;
  }
}

/* Underlay navigation and palette correction */
:root {
  --ink: #1b2226;
  --soft-ink: #3a444a;
  --muted: #62696a;
  --charcoal: #172630;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  z-index: 60;
  background: rgba(250, 249, 249, 0.92);
  border-bottom-color: rgba(209, 209, 209, 0.74);
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 112px;
  height: 46px;
  padding: 0 48px 0 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--bbk-red));
  border-radius: var(--radius);
  color: var(--bbk-red);
  cursor: pointer;
  box-shadow: none;
  transition:
    background var(--ease-premium),
    border-color var(--ease-premium),
    color var(--ease-premium),
    transform var(--ease-premium);
}

.nav-toggle::before {
  content: "Menu";
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle[aria-expanded="true"]::before {
  content: "Close";
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  right: 15px;
  display: block;
  width: 22px;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition:
    width var(--ease-premium),
    transform var(--ease-premium),
    opacity var(--ease-premium);
}

.nav-toggle span:nth-child(1) {
  top: calc(50% - 7px);
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  width: 16px;
}

.nav-toggle span:nth-child(3) {
  top: calc(50% + 7px);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--bbk-red);
  border-color: var(--bbk-red);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 84px;
  left: max(16px, calc((100vw - var(--max)) / 2));
  right: max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(18px, 3vw, 34px);
  background: color-mix(in srgb, var(--white) 90%, var(--paper));
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.11);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-118%);
  transition:
    opacity var(--ease-premium),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  display: grid;
  min-height: 84px;
  align-content: end;
  padding: 16px 18px 18px;
  overflow: hidden;
  isolation: isolate;
  color: var(--soft-ink);
  border-left: 1px solid rgba(209, 209, 209, 0.72);
  font-size: clamp(0.72rem, 0.72vw, 0.82rem);
  letter-spacing: 0.15em;
}

.site-nav a:nth-child(4n + 1) {
  border-left: 0;
}

.site-nav a::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  background: color-mix(in srgb, var(--bbk-red) 8%, transparent);
  content: "";
  opacity: 0;
  transform: scaleY(0.68);
  transform-origin: bottom;
  transition:
    opacity var(--ease-premium),
    transform var(--ease-premium);
}

.site-nav a::after {
  left: 18px;
  right: auto;
  bottom: 13px;
  width: 34px;
  background: var(--bbk-red);
  transform-origin: left;
}

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

.site-nav a:hover::before,
.site-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.page-hero .eyebrow,
.page-hero-modern .eyebrow {
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
}

.page-hero-modern::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.02));
}

.page-hero-panel {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.38);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.16);
}

.split-hero,
.immersive-band,
.interior-link-card,
.interior-link-card:nth-child(3),
.dialog-image-frame {
  background: var(--charcoal);
}

.about-studio-band,
body[data-page="about"] .about-studio-band {
  background: var(--bbk-blue);
}

.range-card-image::before,
.studio-image-card::after,
.interior-link-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.32) 56%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

.studio-panel div::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.36));
}

.dialog-backdrop {
  z-index: 120;
  background: rgba(0, 0, 0, 0.74);
  opacity: 0;
  transition: opacity 260ms ease;
}

.dialog-backdrop.is-open,
.dialog-backdrop.is-closing {
  opacity: 1;
}

.range-dialog {
  opacity: 0;
  transform: translateY(18px) scale(0.986);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dialog-backdrop.is-open .range-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dialog-backdrop.is-closing .range-dialog {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
}

.dialog-close {
  display: grid;
  place-items: center;
  border-color: color-mix(in srgb, var(--bbk-red) 42%, var(--line));
  color: var(--bbk-red);
  transition:
    background var(--ease-premium),
    border-color var(--ease-premium),
    color var(--ease-premium),
    transform var(--ease-premium),
    box-shadow var(--ease-premium);
}

.dialog-close span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.dialog-close span::before,
.dialog-close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.dialog-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dialog-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dialog-close:hover {
  background: var(--bbk-red);
  border-color: var(--bbk-red);
  color: var(--white);
  transform: rotate(90deg) scale(0.94);
}

.dialog-close:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 6px var(--bbk-red);
}

.range-card-gallery {
  transition:
    border-color var(--ease-premium),
    box-shadow var(--ease-premium),
    transform var(--ease-premium);
}

.range-card-gallery:hover,
.range-card-gallery:focus-visible {
  border-color: color-mix(in srgb, var(--bbk-red) 34%, var(--line));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.1);
}

.range-card-gallery .text-button {
  position: relative;
  color: var(--bbk-red);
}

.range-card-gallery .text-button::after {
  width: 20px;
  transition: width var(--ease-premium);
}

.range-card-gallery:hover .text-button::after,
.range-card-gallery:focus-visible .text-button::after {
  width: 100%;
}

@media (max-width: 1080px) {
  .site-nav {
    top: 76px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .site-nav a,
  .site-nav a:nth-child(4n + 1) {
    min-height: 54px;
    padding: 15px 14px;
    border-left: 0;
    border-top: 1px solid rgba(209, 209, 209, 0.72);
  }

  .site-nav a:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .range-dialog,
  .dialog-backdrop {
    transition-duration: 0.01ms !important;
  }
}

/* Fixed underlay navigation and black-only image overlays */
:root {
  --underlay-nav-width: min(31.5rem, 84vw);
}

body {
  overflow-x: clip;
}

body::before {
  position: fixed;
  z-index: 58;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.nav-open::before {
  opacity: 1;
  pointer-events: auto;
}

main,
.site-footer {
  transition:
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

body.nav-open main,
body.nav-open .site-footer {
  filter: saturate(0.94) contrast(0.98);
  transform: translateX(calc(var(--underlay-nav-width) * -0.16));
}

.site-header {
  z-index: 90;
  min-height: 84px;
  background: rgba(247, 244, 239, 0.9);
  border-bottom-color: rgba(222, 216, 207, 0.72);
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition:
    min-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  min-height: 72px;
  background: rgba(247, 244, 239, 0.98);
  border-bottom-color: rgba(222, 216, 207, 0.86);
}

.brand img {
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand,
.nav-toggle {
  z-index: 95;
}

.site-header.is-scrolled .brand img,
body.nav-open .brand img {
  width: 154px;
}

.nav-toggle {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  width: auto;
  height: 44px;
  padding: 0 0 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--soft-ink);
  box-shadow: none;
  cursor: pointer;
  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle::before {
  content: "Menu";
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle[aria-expanded="true"]::before {
  content: "Close";
}

.nav-toggle::after {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.34;
  transform-origin: right;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  right: 0;
  display: block;
  width: 22px;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle span:nth-child(1) {
  top: calc(50% - 5px);
}

.nav-toggle span:nth-child(2) {
  top: calc(50% + 5px);
  width: 22px;
}

.nav-toggle span:nth-child(3) {
  display: none;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  background: transparent;
  border-color: transparent;
  color: var(--bbk-red);
  transform: none;
}

.nav-toggle:hover::after,
.nav-toggle:focus-visible::after,
.nav-toggle[aria-expanded="true"]::after {
  opacity: 0.72;
  transform: scaleX(0.62);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 1;
  transform: translateY(-5px) rotate(-42deg);
}

.site-nav {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: flex;
  width: var(--underlay-nav-width);
  height: 100svh;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(92px, 9vw, 132px) clamp(30px, 5vw, 70px) clamp(34px, 5vw, 70px);
  background: rgba(255, 253, 249, 0.96);
  border: 0;
  border-left: 1px solid rgba(209, 209, 209, 0.78);
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    visibility 0s linear 0.58s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.is-open {
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
  transition:
    visibility 0s linear 0s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav::before {
  margin-bottom: clamp(28px, 5vh, 56px);
  color: var(--bbk-red);
  content: "Navigation";
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav::after {
  width: 100%;
  height: 1px;
  margin-top: clamp(28px, 5vh, 56px);
  background: rgba(209, 209, 209, 0.82);
  content: "";
}

.site-nav a,
.site-nav a:nth-child(4n + 1) {
  position: relative;
  display: block;
  min-height: 0;
  padding: clamp(8px, 1.35vh, 15px) 0;
  overflow: visible;
  color: var(--ink);
  border: 0;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
  opacity: 0;
  transform: translateX(18px);
  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.is-open a {
  opacity: 1;
  transform: translateX(0);
}

.site-nav.is-open a:nth-child(1) {
  transition-delay: 0.04s;
}

.site-nav.is-open a:nth-child(2) {
  transition-delay: 0.07s;
}

.site-nav.is-open a:nth-child(3) {
  transition-delay: 0.1s;
}

.site-nav.is-open a:nth-child(4) {
  transition-delay: 0.13s;
}

.site-nav.is-open a:nth-child(5) {
  transition-delay: 0.16s;
}

.site-nav.is-open a:nth-child(6) {
  transition-delay: 0.19s;
}

.site-nav.is-open a:nth-child(7) {
  transition-delay: 0.22s;
}

.site-nav.is-open a:nth-child(8) {
  transition-delay: 0.25s;
}

.site-nav a::before {
  content: none;
}

.site-nav a::after {
  left: 0;
  right: auto;
  bottom: 0.2em;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: left;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--bbk-red);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.split-hero-shade,
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05));
}

.page-hero::after,
.page-hero-modern::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.02));
}

.contact-hero-card {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    url("../images/brand/hero-bedroom.jpg") center / cover;
}

.brochure-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)),
    url("../images/brand/hero-kitchen.jpg") center / cover;
  color: var(--white);
}

.brochure-hero-bedroom {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)),
    url("../images/brand/hero-bedroom.jpg") center / cover;
}

.brochure-hero h1,
.brochure-hero h2,
.brochure-hero p,
.brochure-hero .eyebrow {
  color: var(--white);
}

.about-cta {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.68)),
    url("../images/ac/images/kitchens-24/large/Mornington-Shaker-Hartforth-Blue.jpg") center / cover;
}

.about-studio-media::after,
.about-cta::after {
  background: rgba(0, 0, 0, 0.14);
}

.range-card-image::before,
.studio-image-card::after,
.interior-link-card::after,
.studio-panel div::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.32) 56%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

@media (max-width: 1080px) {
  .site-header,
  .site-header.is-scrolled,
  body.nav-open .site-header {
    min-height: 76px;
  }

  .site-header.is-scrolled .brand img,
  body.nav-open .brand img {
    width: 148px;
  }
}

@media (max-width: 760px) {
  :root {
    --underlay-nav-width: 100vw;
  }

  body.nav-open main,
  body.nav-open .site-footer {
    filter: none;
    transform: none;
  }

  .site-header {
    padding-inline: 20px;
  }

  .site-nav {
    width: 100vw;
    padding: 112px 28px 42px;
  }

  .site-nav a,
  .site-nav a:nth-child(4n + 1) {
    padding-block: 10px;
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .nav-toggle {
    height: 42px;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  main,
  .site-footer,
  .site-header,
  .brand img,
  .nav-toggle,
  .nav-toggle::after,
  .nav-toggle span:not(.sr-only),
  .site-nav,
  .site-nav a,
  .site-nav a::after {
    transition-duration: 0.01ms !important;
  }
}

/* Navigation scale correction */
.site-nav {
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(34px, 5vw, 72px);
  padding-left: clamp(34px, 5vw, 72px);
}

.site-nav.is-open {
  display: flex;
}

.site-nav::before {
  margin-bottom: clamp(22px, 3.6vh, 42px);
}

.site-nav::after {
  margin-top: clamp(22px, 3.6vh, 42px);
}

.site-nav a,
.site-nav a:nth-child(4n + 1) {
  width: fit-content;
  max-width: 100%;
  padding-block: clamp(6px, 0.9vh, 10px);
  font-size: clamp(1.5rem, 1.9vw, 2.15rem);
  line-height: 1.04;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-nav a,
  .site-nav a:nth-child(4n + 1) {
    font-size: clamp(1.7rem, 3.65vw, 2.2rem);
  }
}

@media (max-width: 760px) {
  .site-nav {
    padding: 104px 34px 38px;
  }

  .site-nav::before {
    margin-bottom: 24px;
  }

  .site-nav::after {
    margin-top: 24px;
  }

  .site-nav a,
  .site-nav a:nth-child(4n + 1) {
    padding-block: 8px;
    font-size: clamp(1.62rem, 5.95vw, 2.05rem);
  }
}

@media (max-width: 430px) {
  .site-nav a,
  .site-nav a:nth-child(4n + 1) {
    font-size: clamp(1.48rem, 7.6vw, 1.92rem);
  }
}

/* Launch accessibility and interaction polish */
.button:focus-visible,
.text-link:focus-visible,
.text-button:focus-visible,
.range-card:focus-visible,
.segment-control button:focus-visible,
.variant-list button:focus-visible,
.colour-chip:focus-visible,
.contact-details a:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.search-field input:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px var(--paper),
    0 0 0 5px color-mix(in srgb, var(--bbk-red) 76%, var(--white));
}

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

.button-primary:focus-visible {
  background: var(--bbk-red-dark);
  color: var(--white);
}

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

.form-note {
  min-height: 1.4em;
}

.form-note.is-success {
  color: var(--moss);
}

.form-note.is-error {
  color: var(--bbk-red);
}

.contact-form .button[disabled] {
  cursor: progress;
  opacity: 0.66;
  transform: none;
}

.social-section,
.reviews-section {
  background: color-mix(in srgb, var(--paper) 88%, var(--white));
  border-top: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
}

.social-section-heading,
.reviews-layout {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.social-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

.social-section-heading h2,
.reviews-copy h2 {
  max-width: 720px;
  margin: 0;
}

.social-section-heading p:not(.eyebrow),
.reviews-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.social-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 24px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.reviews-copy {
  position: sticky;
  top: 128px;
}

.reviews-widget-shell {
  display: grid;
  min-height: clamp(620px, 56vw, 820px);
  overflow: hidden;
}

.reviews-widget-shell > * {
  grid-area: 1 / 1;
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-rating {
  color: var(--bbk-red);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.75;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-attribution {
  display: inline-flex;
  margin-top: 28px;
  color: var(--bbk-red);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.reviews-attribution:hover,
.reviews-attribution:focus-visible {
  color: var(--bbk-red-dark);
}

.review-provider-host,
.review-provider-host iframe {
  width: 100%;
}

.review-provider-host {
  position: relative;
  z-index: 0;
  min-height: inherit;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.reviews-widget-shell.is-loaded .reviews-fallback {
  display: none;
}

.reviews-fallback {
  position: relative;
  z-index: 1;
}

.feed-state {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.feed-state p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.thank-you-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-top: 160px;
}

.thank-you-card {
  width: min(760px, calc(100% - 48px));
}

.thank-you-card h1 {
  margin: 0 0 20px;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .social-section-heading,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-copy {
    position: static;
  }

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

  .review-card:nth-child(n + 2) {
    display: none;
  }
}

@media (max-width: 620px) {
  .social-section-heading,
  .reviews-layout {
    width: min(100% - 32px, var(--max));
  }
}

.contact-details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color var(--ease-premium);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--bbk-red);
}

.dialog-title {
  margin: 0 0 0.28em;
  color: var(--ink);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
}

[inert] {
  pointer-events: none;
}

/* Final drawer/contact and mobile card polish */
.site-nav {
  justify-content: flex-start;
  background: #f7f4ef;
}

.site-nav::after {
  content: none;
}

.site-nav-footer {
  display: grid;
  width: 100%;
  gap: 16px;
  margin-top: auto;
  padding-top: clamp(22px, 4vh, 38px);
  border-top: 1px solid rgba(209, 209, 209, 0.82);
}

.site-nav .site-nav-footer a,
.site-nav .site-nav-footer a:nth-child(4n + 1) {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: visible;
  color: var(--soft-ink);
  border: 0;
  font-family: Montserrat, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  opacity: 1;
  text-decoration: none;
  text-transform: none;
  transform: none;
  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: normal;
}

.site-nav .site-nav-footer a::before,
.site-nav .site-nav-footer a::after {
  content: none;
}

.site-nav .site-nav-footer a:hover,
.site-nav .site-nav-footer a:focus-visible {
  color: var(--bbk-red);
}

.site-nav-email {
  word-break: break-word;
}

.site-nav-social {
  display: flex;
  gap: 10px;
}

.site-nav .site-nav-social a,
.site-nav .site-nav-social a:nth-child(4n + 1) {
  display: inline-grid;
  width: 34px;
  height: 34px;
  align-content: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(209, 209, 209, 0.9);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.site-nav .site-nav-social svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.site-nav .site-nav-social a:hover,
.site-nav .site-nav-social a:focus-visible {
  background: color-mix(in srgb, var(--bbk-red) 5%, transparent);
  border-color: color-mix(in srgb, var(--bbk-red) 42%, var(--line));
}

body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image,
body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image {
  overflow: hidden;
}

@media (max-width: 1080px) {
  body[data-page="home"] .immersive-band img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 48%;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-home,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-home {
    min-height: 0;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image img,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-body,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-body {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .site-nav-footer {
    gap: 14px;
    padding-top: 24px;
  }

  body[data-page="home"] .curated-grid-editorial .featured-primary .range-card-image,
  body[data-page="home"] .curated-grid-editorial .featured-stack .range-card-image {
    aspect-ratio: 5 / 4;
  }
}

body[data-page="home"] .immersive-band img {
  object-position: center;
}

.site-footer {
  grid-template-columns: minmax(260px, 1.08fr) minmax(330px, 0.9fr) minmax(128px, 0.25fr) minmax(260px, 0.72fr);
  align-items: start;
}

.footer-social {
  align-self: start;
  justify-self: start;
  gap: 8px;
  min-width: 128px;
}

.footer-meta {
  display: grid;
  align-self: start;
  justify-self: start;
  gap: 8px;
  max-width: 300px;
}

.footer-meta a {
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: none;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.9fr);
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .immersive-band {
    gap: 24px;
  }

  body[data-page="home"] .immersive-band img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center 48%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .footer-social,
  .footer-meta {
    justify-self: stretch;
    max-width: none;
  }
}
