:root {
  --ink: #0e1a1f;
  --ink-soft: #1c2a31;
  --stone: #f4f3ef;
  --stone-deep: #e8e6df;
  --paper: #fbfaf7;
  --brass: #a68655;
  --brass-dark: #8a6d42;
  --slate: #5c6b73;
  --line: rgba(14, 26, 31, 0.1);
  --color-primary: var(--brass);
  --color-primary-darker: var(--brass-dark);
  --color-secondary: var(--ink);
  --color-accent: var(--brass);
  --color-text: var(--ink);
  --color-muted: var(--slate);
  --color-bg: var(--stone);
  --color-bg-soft: var(--stone-deep);
  --color-white: #fff;
  --color-border: var(--line);
  --color-header: var(--paper);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --content-wide: 1180px;
  --space: clamp(1.1rem, 3vw, 2.4rem);
  --section: clamp(3.5rem, 8vw, 7rem);
  --radius: 0;
  --shadow: 0 24px 60px rgba(14, 26, 31, 0.12);
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(166, 134, 85, 0.08), transparent 55%),
    radial-gradient(700px 380px at 0% 20%, rgba(14, 26, 31, 0.04), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--stone) 55%, var(--paper) 100%);
  line-height: 1.65;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; color: var(--brass); font-weight: 500; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { margin: 0 0 1rem; }
.container {
  width: min(calc(100% - 2 * var(--space)), var(--content-wide));
  margin-inline: auto;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: #000; color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brass);
  margin-bottom: 1rem;
}
.text-link {
  font-weight: 600;
  letter-spacing: .04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: .15rem;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { color: var(--brass); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .9rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary, .btn--brass { background: var(--brass); color: #fff; }
.btn--primary:hover, .btn--brass:hover { background: var(--brass-dark); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--small { min-height: 42px; padding: .55rem 1.1rem; font-size: .72rem; }

/* Header */
/* Header — frosted ink glass site-wide */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 26, 31, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14, 26, 31, 0.88);
  box-shadow: 0 14px 40px rgba(8, 16, 20, 0.28);
}
body.home .site-header {
  position: fixed;
  left: 0; right: 0;
  background: rgba(14, 26, 31, 0.22);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom-color: transparent;
  box-shadow: none;
}
body.home .site-header.is-scrolled {
  background: rgba(14, 26, 31, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(8, 16, 20, 0.28);
}
.site-header .primary-nav__link,
.site-header .header-link {
  color: rgba(255, 255, 255, 0.88);
}
.site-header .primary-nav__link:hover,
.site-header .header-link:hover,
.site-header .primary-nav__list > li.is-active > .primary-nav__link {
  color: #fff;
}
.site-header .nav-toggle span { background: #fff; }
.site-header .btn--primary,
.site-header .btn--brass {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.site-header .btn--primary:hover,
.site-header .btn--brass:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.site-header__bar { position: relative; }
.site-header__inner {
  min-height: var(--header-h);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.primary-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.has-mega {
  position: static;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.has-mega > .primary-nav__link { height: 100%; }
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.brand img {
  width: 220px;
  height: auto;
  max-height: 48px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.primary-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; justify-content: center; gap: .2rem;
}
.primary-nav__link {
  display: inline-flex; align-items: center;
  padding: .55rem .65rem;
  background: none; border: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s ease;
}
.primary-nav__list > li.is-active > .primary-nav__link,
.primary-nav__link:hover { color: #fff; }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}
.header-link { font-weight: 500; font-size: .92rem; color: rgba(255, 255, 255, 0.85); }
.header-link:hover { color: #fff; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; padding: 10px;
  position: relative; z-index: 60;
}
.nav-toggle span {
  display: block; height: 1.5px; margin: 7px 0; background: #fff; transition: .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.primary-nav__mobile-head { display: none; }
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,26,31,.5);
  z-index: 45;
}
.nav-backdrop.is-open { display: block; }
body.nav-open { overflow: hidden; }

.mega-menu {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  padding: 1.75rem 0 1.5rem;
  max-height: min(78vh, 720px);
  overflow: auto;
  pointer-events: none;
  z-index: 3;
}
.mega-menu::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 100%; height: 20px;
}
@media (hover: hover) and (pointer: fine) and (min-width: 861px) {
  .has-mega:hover > .mega-menu,
  .has-mega:focus-within > .mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
}
.has-mega.is-open > .mega-menu,
.mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mega-menu__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 2rem; }
.mega-menu__grid--3 { grid-template-columns: 1fr 1fr 1.1fr; }
.mega-menu__grid--4 { grid-template-columns: repeat(4, 1fr); }
.mega-menu h3 {
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .85rem;
}
.mega-menu a { display: block; padding: .32rem 0; color: var(--slate); font-size: .95rem; }
.mega-menu a:hover { color: var(--brass); }
.mega-menu__all { margin-top: .75rem; font-weight: 600; color: var(--brass) !important; }
.mega-menu__note { color: var(--slate); font-size: .95rem; margin: 0 0 1rem; }
.mega-menu__cta { background: var(--stone); padding: 1.5rem; }
.mega-menu__cta p { color: var(--slate); }
.mega-menu__head {
  display: flex; justify-content: space-between; gap: 1rem; align-items: end;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.mega-menu__head h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 .35rem;
}
.mega-menu__head p { margin: 0; color: var(--slate); }
.mega-menu__brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
}
.mega-menu__brand-col a {
  display: grid; gap: .1rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(14,26,31,.06);
}
.mega-menu__brand-col a span { color: var(--ink); font-weight: 500; }
.mega-menu__brand-col a small { color: var(--slate); font-size: .78rem; }
.mega-menu__brand-col a:hover span { color: var(--brass); }
.mega-menu__foot {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.mega-menu__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.mega-menu__chips a {
  padding: .35rem .7rem !important;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .82rem !important;
  color: var(--ink) !important;
}
.mega-menu__chips a:hover { border-color: var(--brass); color: var(--brass) !important; }

/* —— Home: full-bleed atelier hero —— */
.hero-atelier {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}
.hero-atelier__media,
.hero-atelier__veil {
  position: absolute; inset: 0;
}
.hero-atelier__media {
  background: var(--ink) center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}
.hero-atelier__veil {
  background:
    linear-gradient(180deg, rgba(14,26,31,.45) 0%, rgba(14,26,31,.25) 40%, rgba(14,26,31,.72) 100%),
    linear-gradient(90deg, rgba(14,26,31,.55) 0%, transparent 55%);
}
.hero-atelier__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2 * var(--space)), 720px);
  margin: 0 0 clamp(4rem, 10vh, 7rem) max(var(--space), calc((100% - var(--content-wide)) / 2));
  animation: heroRise 1.1s var(--ease) both;
}
.hero-atelier__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin: 0 0 1.1rem;
}
.hero-atelier h1 {
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: 12ch;
}
.hero-atelier h1 em { color: #e4d2b0; }
.hero-atelier__lede {
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 36rem;
  margin-bottom: 0;
}
.hero-atelier__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.85rem;
}
.hero-atelier__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-atelier__scroll span {
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollPulse 1.6s ease infinite;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* Intro band */
.intro-band {
  padding: var(--section) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.intro-band__grid {
  display: grid;
  grid-template-columns: 140px 1.4fr .9fr;
  gap: 2.5rem;
  align-items: start;
}
.intro-band__index {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
  font-weight: 600;
}
.intro-band__copy h2 { max-width: 14ch; }
.intro-band__copy p { color: var(--slate); font-size: 1.05rem; margin: 0; }
.intro-band__meta {
  display: grid;
  gap: 1.25rem;
  padding-top: .35rem;
}
.intro-band__meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.intro-band__meta span {
  color: var(--slate);
  font-size: .9rem;
}

/* Range rail */
.range-rail-section { padding-bottom: calc(var(--section) * .65); overflow: hidden; }
.range-rail__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.range-rail__head h2 { margin: 0; }
.range-rail {
  margin-left: max(0px, calc((100vw - var(--content-wide)) / 2 - var(--space)));
  padding-left: var(--space);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.range-rail__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-right: var(--space);
  padding-bottom: .5rem;
}
.range-tile {
  position: relative;
  width: min(78vw, 340px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.range-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.range-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14,26,31,.78));
}
.range-tile:hover img { transform: scale(1.06); }
.range-tile__caption {
  position: absolute; z-index: 1;
  left: 0; right: 0; bottom: 0;
  padding: 1.35rem;
}
.range-tile__caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: .2rem;
}
.range-tile__caption span {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

/* Offer split */
.offer-split { background: var(--stone); }
.offer-split__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.offer-split__figure {
  margin: 0;
  overflow: hidden;
  min-height: 480px;
}
.offer-split__figure img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.offer-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.offer-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--slate);
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: .55rem; height: 1px;
  background: var(--brass);
}

/* Colour atelier */
.colour-atelier { background: var(--paper); }
.colour-atelier .section-head { max-width: 560px; }
.colour-atelier .section-head p { color: var(--slate); }
.colour-atelier__row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.swatch {
  display: grid;
  gap: .65rem;
  text-align: center;
}
.swatch__chip {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease);
}
.swatch:hover .swatch__chip { transform: translateY(-4px); }
.swatch__name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--slate);
}

/* Quotes */
.quote-wall { background: var(--ink); color: #fff; }
.quote-wall .eyebrow { color: #e4d2b0; }
.quote-wall h2 { color: #fff; }
.quote-wall em { color: #e4d2b0; }
.quote-wall .text-link { color: #e4d2b0; }
.quote-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quote-card {
  margin: 0;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .4s var(--ease), background .4s var(--ease);
  transition-delay: var(--d, 0s);
}
.quote-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
}
.quote-card p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.quote-card footer {
  margin-top: 1.5rem;
  display: grid;
  gap: .15rem;
}
.quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: .92rem;
}
.quote-card span {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}

/* Path */
.path-section {
  padding: var(--section) 0;
  background: var(--paper);
}
.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.path-steps li {
  padding: 2rem 1.5rem 0 0;
  border-right: 1px solid var(--line);
}
.path-steps li:last-child { border-right: 0; padding-right: 0; }
.path-steps__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 1rem;
}
.path-steps h3 { margin-bottom: .5rem; }
.path-steps p { color: var(--slate); margin: 0; max-width: 28ch; }

/* CTA bleed */
.cta-bleed {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.cta-bleed__media,
.cta-bleed__veil { position: absolute; inset: 0; }
.cta-bleed__media {
  background: var(--ink) center/cover no-repeat;
  transform: scale(1.02);
}
.cta-bleed__veil {
  background: linear-gradient(90deg, rgba(14,26,31,.82) 0%, rgba(14,26,31,.45) 55%, rgba(14,26,31,.3) 100%);
}
.cta-bleed__inner { position: relative; z-index: 1; max-width: 640px; }
.cta-bleed h2 { color: #fff; }
.cta-bleed .eyebrow { color: #e4d2b0; }
.cta-bleed p { color: rgba(255,255,255,.85); font-size: 1.1rem; }
.cta-bleed__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.5rem;
}

/* Shared sections (inner pages) */
.section { padding: var(--section) 0; }
.section--soft { background: rgba(255,255,255,.45); }
.section--dark {
  background: var(--ink);
  color: #fff;
}
.section--dark em { color: #e4d2b0; }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section--tight { padding-top: calc(var(--section) * .65); padding-bottom: calc(var(--section) * .65); }
.center-link { text-align: center; margin-top: 1.75rem; }
.center-link a { font-weight: 600; color: var(--brass); }

.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.promo-card {
  position: relative; display: grid; min-height: 280px; overflow: hidden; color: #fff; isolation: isolate;
}
.promo-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease; z-index: -2;
}
.promo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)); z-index: -1;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-card__body { align-self: end; padding: 1.5rem; }
.promo-card span { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; margin-bottom: .4rem; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.category-grid--3 { grid-template-columns: repeat(3, 1fr); }
.category-tile {
  position: relative; min-height: 360px; overflow: hidden; color: #fff;
  display: flex; align-items: flex-end;
}
.category-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.category-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,26,31,.75)); z-index: 1;
}
.category-tile:hover img { transform: scale(1.04); }
.category-tile__body { position: relative; z-index: 2; padding: 1.5rem; }
.category-tile strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; margin: .25rem 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-grid--home { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__media {
  aspect-ratio: 1024 / 717;
  overflow: hidden;
  background: var(--stone-deep);
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 { margin-bottom: .35rem; font-size: 1.45rem; }
.product-card__meta { color: var(--slate); font-size: .95rem; margin-bottom: 1rem; }
.product-card__body .btn { margin-top: auto; align-self: flex-start; }

.brand-strip {
  margin-top: 3rem; padding: 1.5rem;
  background: var(--paper); border: 1px solid var(--line);
}
.brand-strip__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin-bottom: 1rem;
}
.brand-strip__head h3 { margin: 0; font-size: 1.35rem; }
.brand-strip__head a { font-weight: 600; color: var(--brass); }
.brand-strip__list { display: flex; flex-wrap: wrap; gap: .45rem .55rem; }
.brand-strip__list a {
  padding: .45rem .8rem;
  border: 1px solid var(--line);
  background: var(--stone);
  font-size: .9rem; font-weight: 500;
  transition: .2s ease;
}
.brand-strip__list a:hover {
  border-color: var(--brass); color: var(--brass); background: #fff;
}

.colour-row {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: .75rem;
}
.colour-chip {
  display: grid; gap: .5rem; text-align: center; font-size: .85rem; font-weight: 500;
}
.colour-chip__swatch {
  aspect-ratio: 1; border-radius: 0;
  border: 1px solid var(--line);
  background: center/cover no-repeat;
}
.colour-chip:hover .colour-chip__swatch { transform: scale(1.04); }

.feature-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.feature-item { text-align: center; }
.feature-item img { width: 64px; height: 64px; margin: 0 auto 1rem; }
.feature-item h3 { font-size: 1.15rem; }

.split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
}
.split--reverse { grid-template-columns: .9fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split__content .btn { margin-top: .5rem; margin-right: .5rem; }

.testimonial-slider,
.testimonial-slider--6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testimonial {
  background: var(--paper);
  padding: 1.75rem;
  border: 1px solid var(--line);
  min-height: 100%;
}
.testimonial h3 { font-size: 1.35rem; }
.testimonial p { color: var(--slate); }
.testimonial footer { margin-top: 1.25rem; font-weight: 600; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step;
}
.step {
  background: rgba(255,255,255,.06);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.12);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid #e4d2b0;
  color: #e4d2b0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--ink) center/cover no-repeat;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,31,.2), rgba(14,26,31,.72));
}
.page-hero__inner {
  position: relative; z-index: 1;
  width: min(calc(100% - 2 * var(--space)), var(--content-wide));
  margin: 0 auto;
  padding: 3.5rem 0;
}
.breadcrumb { font-size: .9rem; opacity: .85; margin-bottom: 1rem; letter-spacing: .04em; }
.breadcrumb a:hover { text-decoration: underline; }

.filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.filters a, .filters span {
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: .9rem;
}
.filters a.is-active, .filters a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.form { display: grid; gap: 1rem; max-width: 640px; }
.form-row { display: grid; gap: .4rem; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-weight: 500; font-size: .95rem; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}
textarea { min-height: 140px; resize: vertical; }
.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--brass);
  background: rgba(166, 134, 85, 0.1);
}
.showroom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.showroom-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.showroom-card h3 { margin-bottom: .35rem; }
.showroom-card p { color: var(--slate); margin-bottom: .35rem; }
.badge {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--ink);
  color: #fff;
  padding: .3rem .55rem;
  margin-bottom: .75rem;
}

/* Footer */
.site-footer { margin-top: 0; color: rgba(255,255,255,.85); }
.site-footer__cta {
  background: var(--ink-soft);
  color: #fff;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-footer__cta-inner {
  display: flex; justify-content: space-between; gap: 2rem; align-items: center;
}
.site-footer__cta h2 { color: #fff; }
.site-footer__cta em { color: #e4d2b0; }
.site-footer__cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.site-footer__main {
  width: 100%;
  background: var(--ink);
  padding: 3.5rem 0;
}
.site-footer__main-inner {
  display: grid;
  grid-template-columns: 1.15fr 2.4fr;
  gap: 3rem;
  align-items: start;
}
.site-footer__brand img {
  width: 168px; height: auto; display: block; margin-bottom: 1.1rem;
  filter: invert(1) brightness(1.05);
}
.site-footer__brand p { max-width: 28rem; color: rgba(255,255,255,.65); }
.site-footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.site-footer__cols h3 {
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
  color: #fff;
}
.site-footer__cols a {
  display: block; padding: .3rem 0; color: rgba(255,255,255,.65);
}
.site-footer__cols a:hover { color: #e4d2b0; }
.site-footer,
.site-footer__cta,
.site-footer__main,
.site-footer__bottom { width: 100%; }
.site-footer__bottom { background: #081014; }
.site-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 0; font-size: .88rem; color: rgba(255,255,255,.45);
}
.site-footer__bottom a { margin-left: 1rem; color: rgba(255,255,255,.65); }

.newsletter {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center;
  background: var(--paper); border: 1px solid var(--line); padding: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1200px) {
  .site-header__actions .header-link { display: none; }
  .primary-nav__link { padding: .5rem .4rem; font-size: .86rem; }
  .brand img { width: 190px; max-height: 44px; }
  .intro-band__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .colour-atelier__row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
  .category-grid, .feature-strip, .testimonial-slider, .testimonial-slider--6,
  .showroom-grid, .category-grid--3, .quote-wall__grid, .path-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .path-steps li { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
  .product-grid, .product-grid--home { grid-template-columns: repeat(2, 1fr); }
  .colour-row { grid-template-columns: repeat(4, 1fr); }
  .offer-split__grid { grid-template-columns: 1fr; }
  .site-footer__main-inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .mega-menu__grid, .mega-menu__grid--3, .mega-menu__grid--4 { grid-template-columns: 1fr 1fr; }
  .mega-menu__brands { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; flex: 0 0 auto; }
  .site-header { z-index: 60; }
  body.home .site-header {
    background: rgba(14, 26, 31, 0.4);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
  }
  body.home .site-header.is-scrolled {
    background: rgba(14, 26, 31, 0.82);
  }
  .site-header {
    background: rgba(14, 26, 31, 0.86);
  }
  .site-header__inner { gap: .5rem; }
  .brand { flex: 1 1 auto; justify-content: center; }
  .brand img { width: 180px; max-height: 42px; }

  .primary-nav {
    position: fixed; top: 0; left: 0;
    flex: none; display: block;
    width: min(100vw, 360px);
    height: 100dvh; height: 100vh;
    background: var(--ink);
    padding: 0 0 2rem;
    transform: translateX(-105%);
    transition: transform .28s ease;
    overflow: auto; z-index: 70;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__mobile-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: sticky; top: 0; background: var(--ink); z-index: 2;
  }
  .primary-nav__mobile-head strong { color: #fff; }
  .primary-nav__close {
    width: 40px; height: 40px; border: 0; background: transparent;
    color: #fff; font-size: 1.8rem; line-height: 1;
  }
  .primary-nav__list {
    flex-direction: column; align-items: stretch;
    padding: .75rem 1rem 2rem; gap: 0;
  }
  .primary-nav__list > li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .primary-nav__link {
    width: 100%; justify-content: space-between;
    padding: 1rem .25rem; font-size: 1.05rem; color: #fff !important;
  }
  .has-mega > .primary-nav__link::after {
    content: "+"; font-size: 1.2rem; color: #e4d2b0; margin-left: .75rem;
  }
  .has-mega.is-open > .primary-nav__link::after { content: "−"; }
  .mega-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    pointer-events: auto; box-shadow: none; border: 0;
    padding: 0 0 1rem .5rem; display: none; max-height: none;
    overflow: visible; background: transparent; color: #fff;
  }
  .has-mega.is-open > .mega-menu { display: block; }
  .mega-menu .container { width: 100%; }
  .mega-menu__grid, .mega-menu__grid--3, .mega-menu__grid--4, .mega-menu__brands {
    grid-template-columns: 1fr; gap: .75rem;
  }
  .mega-menu h3, .mega-menu__brand-col a span, .mega-menu__head h3 { color: #fff; }
  .mega-menu a, .mega-menu__note, .mega-menu__head p, .mega-menu__brand-col a small {
    color: rgba(255,255,255,.72);
  }
  .mega-menu__cta { background: rgba(255,255,255,.06); padding: 1rem; margin-top: .5rem; }
  .mega-menu__chips a {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    color: #fff !important;
  }
  .mega-menu__head, .mega-menu__foot {
    border-color: rgba(255,255,255,.12);
    flex-direction: column; align-items: stretch;
  }
  .mega-menu__brand-col a { border-bottom-color: rgba(255,255,255,.08); }
  .mega-menu__all { color: #e4d2b0 !important; }

  .site-header__actions .header-link { display: none; }
  .site-header__actions .btn--small { min-height: 38px; padding: .45rem .8rem; font-size: .7rem; }

  .hero-atelier__content { margin-bottom: 5rem; }
  .hero-atelier h1 { max-width: none; }
  .quote-wall__grid, .path-steps, .promo-grid, .split, .split--reverse,
  .newsletter, .site-footer__cta-inner, .category-grid, .category-grid--3,
  .product-grid, .product-grid--home, .feature-strip, .testimonial-slider,
  .testimonial-slider--6, .steps, .showroom-grid, .site-footer__main-inner,
  .site-footer__cols, .intro-band__meta {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media { order: 0; }
  .form-row.two { grid-template-columns: 1fr; }
  .colour-row, .colour-atelier__row { grid-template-columns: repeat(4, 1fr); }
  .offer-split__figure, .offer-split__figure img { min-height: 320px; }
  .range-rail { margin-left: 0; }
}
