/* ============================================================
   Notis Group — Premium Fur House
   ============================================================ */

:root {
  --bg: #0c0b0a;
  --bg-alt: #131110;
  --surface: #1a1715;
  --surface-2: #211d1a;
  --border: rgba(201, 166, 104, 0.18);
  --border-strong: rgba(201, 166, 104, 0.4);
  --gold: #c9a668;
  --gold-light: #e6d4ab;
  --gold-deep: #9c7d47;
  --cream: #f4efe4;
  --text: #ece6d9;
  --text-muted: #a89e8d;
  --text-faint: #756c5e;
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* The hidden attribute must always win: without this, rules that set an explicit
   display (.active-filter-bar, .modal-colours) keep the element visible. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section-alt { background: var(--bg-alt); }
/* First section on a page with no hero — clears the fixed header. */
.section-flush { padding-top: calc(100px + clamp(24px, 4vw, 56px)); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
  line-height: 1.15;
}
.section-head p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  background: transparent;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .15s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #14110d; transform: translateY(-2px); }
.btn-solid { background: var(--gold); color: #14110d; border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: padding .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
}
.brand .mark span { color: var(--gold); }
.brand .tagline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color .18s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--border-strong);
  padding: 10px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #14110d; }

/* ---------- Products mega menu ---------- */
.nav-products-wrap {
  position: relative;
  display: inline-flex;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  /* `left` is set from JS so the CATEGORY column sits centred under the
     "Products" link — the pointer drops straight onto it instead of having
     to travel sideways. JS also clamps it inside the viewport. */
  left: 0;
  right: auto;
  max-width: calc(100vw - 32px);
  transform: translateY(-6px);
  display: flex;
  background: rgba(19, 17, 16, 0.98);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
  z-index: 1200;
}
/* Invisible bridge over the gap to the trigger, so the pointer never truly
   leaves the hoverable area while moving down from "Products" into the menu —
   without this, fast mouse movement reads as the menu randomly not opening. */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s;
}
.mega-col {
  min-width: 210px;
  padding: 16px 0;
  border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col-fur,
.mega-col-type { display: none; }
.mega-col-fur.show,
.mega-col-type.show {
  display: block;
  animation: megaColIn .18s var(--ease);
}
@keyframes megaColIn {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.mega-col-heading {
  padding: 2px 26px 12px;
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.mega-item,
.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 26px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.mega-item:hover,
.mega-item.active,
.mega-link:hover {
  background: rgba(201, 166, 104, 0.08);
  color: var(--cream);
}
.mega-item .arrow { color: var(--gold); font-size: 0.95rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  width: 26px; height: 1px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,166,104,0.10), transparent 60%),
    linear-gradient(180deg, #0c0b0a 0%, #131110 60%, #0c0b0a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(201,166,104,0.035) 0px, rgba(201,166,104,0.035) 1px, transparent 1px, transparent 68px),
    repeating-linear-gradient(25deg, rgba(201,166,104,0.02) 0px, rgba(201,166,104,0.02) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 128px;
  padding-bottom: 130px;
  width: 100%;
}
.hero-inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.05;
  margin-top: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  margin-top: 26px;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52ch;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  max-width: 680px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stats .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold-light);
}
.hero-stats .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Fade-up reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Swatch / visual placeholder blocks ---------- */
.swatch {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(155deg, #221d18 0%, #171310 55%, #0f0d0b 100%);
}
.swatch::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(8,7,6,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.swatch::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  z-index: 3;
}
.swatch img { width:100%; height:100%; object-fit:cover; position:relative; z-index:1; filter: saturate(0.92) contrast(1.05); }

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.reverse .visual { order: 2; }
.split .copy p { color: var(--text-muted); margin-top: 18px; }
.split .copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 14px; }

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 30px 0;
  line-height: 1.5;
}

/* ---------- Values / feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature {
  background: var(--bg);
  padding: 40px 34px;
  transition: background .2s var(--ease);
}
.feature:hover { background: var(--surface); }
.feature .num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.feature h3 { margin-top: 18px; font-size: 1.4rem; }
.feature p { margin-top: 12px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Timeline (about page) ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 50px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--border-strong);
}
.timeline-item .year {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.3rem;
}
.timeline-item h4 { margin-top: 6px; font-size: 1.15rem; }
.timeline-item p { margin-top: 8px; color: var(--text-muted); font-size: 0.95rem; max-width: 60ch; }

/* ---------- Products grid ---------- */
.filter-system {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: filterRowIn .4s var(--ease);
}
.filter-row[hidden] { display: none; }
@keyframes filterRowIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.filter-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  min-width: 64px;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-pills button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-pills button:hover { border-color: var(--gold); color: var(--cream); }
.filter-pills button.active { background: var(--gold); border-color: var(--gold); color: #14110d; }
.filter-pills button[hidden] { display: none; }

.filter-empty-note {
  color: var(--text-muted);
  font-style: italic;
  padding: 40px 0;
  text-align: center;
  border: 1px dashed var(--border);
  margin-bottom: 40px;
}

.active-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 28px;
  margin-bottom: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.active-filter-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.active-filter-label strong {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
}
.active-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.active-filter-clear:hover { border-color: var(--gold); color: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.product-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.product-card:hover { border-color: var(--border-strong); transform: translateY(-6px); }
.product-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.product-card .swatch { aspect-ratio: 1/1; }
.product-card .swatch .expand-hint {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,239,228,0.4);
  background: rgba(10,9,8,0.78);
  color: var(--cream);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
}
.product-card:hover .swatch .expand-hint { opacity: 1; transform: translateY(0); }
.product-card .swatch .expand-hint svg { width: 16px; height: 16px; }
.product-card .info { padding: 22px 24px 26px; }
.product-card .kicker {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.product-card h3 {
  margin-top: 8px;
  font-size: 1.4rem;
}
.product-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
/* ---------- Colour list on grouped product cards ---------- */
.colour-label {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.colour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.colour-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  cursor: pointer;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
}
.colour-chip:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(201, 166, 104, 0.08);
}

.product-card .cta {
  margin-top: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,166,104,0.10), transparent 65%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.cta-band p { color: var(--text-muted); margin: 20px auto 40px; max-width: 50ch; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.info-list { margin-top: 30px; }
.info-list li {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}
.info-list li:last-child { border-bottom: 1px solid var(--border); }
.info-list .k {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 2px;
}
.info-list .v { color: var(--text); }
.info-list .v a:hover { color: var(--gold); }

form.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-status {
  font-size: 0.85rem;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.form-status.is-error { color: #e0a0a0; border-left-color: #b95c5c; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border-color .18s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; }
.map-wrap {
  margin-top: 50px;
  border: 1px solid var(--border);
  filter: grayscale(1) invert(0.92) contrast(0.9);
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-grid h5 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-grid p { color: var(--text-muted); font-size: 0.9rem; max-width: 32ch; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color .18s var(--ease); }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer-bottom a:hover { color: var(--gold); }
.social-row { display: flex; gap: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #131110 0%, #0c0b0a 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 16px; }
.page-hero p { color: var(--text-muted); margin-top: 18px; max-width: 60ch; }

/* ---------- Brand logo mark ---------- */
.brand { flex-direction: row; align-items: center; gap: 12px; }
.brand .logo-mark {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  transition: height .22s var(--ease);
}
.site-header.scrolled .brand .logo-mark { height: 32px; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(12, 11, 10, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong);
  transform: translateY(120%);
  transition: transform .35s var(--ease);
  padding: 26px 0;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 62ch;
  margin: 0;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-banner .btn { padding: 12px 26px; }

/* ---------- Map consent fallback ---------- */
.map-consent-fallback {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.map-consent-fallback a { color: var(--gold); }

/* ---------- Product modal (lightbox) ---------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), visibility 0s linear .22s;
}
.product-modal.show {
  opacity: 1;
  visibility: visible;
  transition: opacity .22s var(--ease), visibility 0s;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.9);
  backdrop-filter: blur(6px);
}
.product-modal-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1040px;
  width: 100%;
  max-height: 86vh;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.98);
  transition: transform .28s var(--ease);
  overflow: hidden;
}
.product-modal.show .product-modal-content { transform: translateY(0) scale(1); }
.product-modal-image {
  position: relative;
  background: #0a0908;
  min-height: 320px;
  overflow: hidden;
  cursor: zoom-in;
}
.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 86vh;
  transition: transform .4s var(--ease);
}
.product-modal-image.zoomed { cursor: zoom-out; }
.product-modal-image.zoomed img { transform: scale(2.2); }
.product-modal-image .zoom-hint {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(12,11,10,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,239,228,0.3);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.product-modal-image:hover .zoom-hint { opacity: 1; }
.product-modal-image.zoomed .zoom-hint { opacity: 0; }
.product-modal-image .zoom-hint svg { width: 14px; height: 14px; }
.product-modal-info {
  padding: clamp(28px, 4vw, 56px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-modal-info .kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-modal-info h3 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}
.product-modal-info p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 44ch;
}
.product-modal-info .btn { margin-top: 32px; align-self: flex-start; }

/* Colour switcher inside the modal */
.modal-colour-label {
  margin-top: 26px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.modal-colour-label strong {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-left: 8px;
}
.modal-colours {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.modal-colours button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
}
.modal-colours button:hover { border-color: var(--gold); color: var(--cream); }
.modal-colours button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #14110d;
}

/* Plate dimension diagram inside the modal */
.modal-dimensions { margin-top: 26px; }
.modal-dimensions .dim-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.dim-diagram-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  background: #0a0908;
  border: 1px solid var(--border);
  padding: 16px;
  cursor: zoom-in;
  text-align: center;
  font: inherit;
  appearance: none;
}
.dim-svg-wrap { display: block; }
.dim-svg-wrap svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: max-width .35s var(--ease);
}
.dim-diagram-wrap.zoomed { cursor: zoom-out; }
.dim-diagram-wrap.zoomed .dim-svg-wrap svg { max-width: 440px; }
.dim-diagram-wrap .zoom-hint {
  position: absolute;
  bottom: 10px; left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(12,11,10,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,239,228,0.3);
  color: var(--cream);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.dim-diagram-wrap:hover .zoom-hint,
.dim-diagram-wrap:focus-visible .zoom-hint { opacity: 1; }
.dim-diagram-wrap.zoomed .zoom-hint { opacity: 0; }
.dim-diagram-wrap .zoom-hint svg { width: 13px; height: 13px; }
.product-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,10,0.55);
  border: 1px solid rgba(244,239,228,0.35);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.product-modal-close:hover { background: var(--gold); border-color: var(--gold); color: #14110d; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-links { gap: 24px; }
}

@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(12,11,10,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding: 100px 24px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
  .product-modal { padding: 0; }
  .product-modal-content { grid-template-columns: 1fr; max-height: 100vh; height: 100%; overflow-y: auto; }
  .product-modal-image { min-height: 260px; max-height: 46vh; }
  .product-modal-image img { max-height: 46vh; }

  .nav-products-wrap { flex-direction: column; align-items: center; }
  .mega-menu {
    position: static;
    transform: none;
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-top: 22px;
    border: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .mega-menu.open { display: flex; }
  .mega-col { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 0; }
  .mega-col:last-child { border-bottom: none; }
  .mega-col-heading { text-align: center; }
  .mega-item, .mega-link { justify-content: center; text-align: center; font-size: 0.85rem; padding: 10px 16px; }

  .active-filter-bar { flex-direction: column; align-items: stretch; text-align: center; }
}
