/* ============================================================================
   MK BULLION — DESIGN SYSTEM
   Palette pulled directly from the logo: deep teal-black + antique gold.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand */
  --ink:        #08201B;   /* logo wordmark green-black */
  --ink-2:      #0D2B24;
  --ink-3:      #143931;
  --gold:       #C08A2E;   /* logo bar gold */
  --gold-lt:    #E2B968;
  --gold-dk:    #7C5511;   /* darkened from the logo gold to clear 4.5:1 on --paper */

  /* Surfaces */
  --paper:      #F6F4F0;
  --paper-2:    #EAE6DE;
  --paper-3:    #DBD5C9;

  /* Text */
  --on-dark:    #F6F4F0;
  --on-dark-mu: #A8B8B2;
  --on-light:   #10221E;
  --on-light-mu:#586A64;

  --line-dark:  rgba(246,244,240,.14);
  --line-light: rgba(16,34,30,.13);

  /* Product colour chips */
  --c-black: #1C1C1E;
  --c-green: #3DBE2A;
  --c-blue:  #1746A2;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing scale */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --radius:   4px;
  --radius-lg:10px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:  .28s;

  --shell: min(1360px, 100% - 48px);
  --header-h: 68px;
}

@media (max-width: 640px) {
  :root { --shell: min(1360px, 100% - 32px); --header-h: 58px; }
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Clip, not hidden. `overflow-x: hidden` on body turns it into a scroll
   container, which breaks position:sticky and causes stale-tile repaint
   artefacts while scrolling. `clip` contains the overflow without that. */
html { overflow-x: clip; }
@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

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

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 10px 18px;
  font-weight: 600; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------- Typography --- */
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.display-xl { font-size: clamp(2.9rem, 8.5vw, 7rem); line-height: .95; letter-spacing: -.03em; }
.display-l  { font-size: clamp(2.2rem, 5.2vw, 4rem); letter-spacing: -.022em; }
.display-m  { font-size: clamp(1.7rem, 3.2vw, 2.6rem); letter-spacing: -.018em; }
.display-s  { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.italic-accent { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dk);
  margin: 0 0 var(--s-3);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold); flex: none;
}
.on-dark .eyebrow, .sec-dark .eyebrow, .hero .eyebrow, .custom-band .eyebrow { color: var(--gold-lt); }

.lede { font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.62; color: var(--on-light-mu); max-width: 60ch; }
.sec-dark .lede, .hero .lede, .custom-band .lede { color: var(--on-dark-mu); }

.mono { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; }

/* ------------------------------------------------------------- Layout ---- */
.shell { width: var(--shell); margin-inline: auto; }
.sec { padding: clamp(64px, 9vw, 130px) 0; }
.sec-dark { background: var(--ink); color: var(--on-dark); }
.sec-tint { background: var(--paper-2); }

.rule { height: 1px; background: var(--line-light); border: 0; margin: 0; }
.sec-dark .rule { background: var(--line-dark); }

/* ------------------------------------------------------------ Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 26px;
  font-size: .88rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-gold { background: var(--gold); color: #171104; }
.btn-gold:hover { background: var(--gold-lt); }

.btn-ink { background: var(--ink); color: var(--on-dark); }
.btn-ink:hover { background: var(--ink-3); }

.btn-ghost { border-color: currentColor; background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.sec-dark .btn-ghost:hover, .hero .btn-ghost:hover {
  background: var(--on-dark); color: var(--ink); border-color: var(--on-dark);
}

.btn-lg { min-height: 56px; padding: 0 34px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

.btn .ico { width: 17px; height: 17px; flex: none; }

/* Text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .88rem;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--dur) var(--ease);
}
.tlink:hover { background-size: 100% 1px; }
.tlink .ico { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.tlink:hover .ico { transform: translateX(3px); }

/* ------------------------------------------------------------- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  /* Deliberately NOT backdrop-filter. A blurred sticky bar over a long,
     image-heavy page is the classic cause of stale-tile repaint artefacts
     (ghost copies of the page appearing as you scroll). A near-opaque solid
     looks near-identical and composites reliably everywhere. */
  background: rgba(8,32,27,.97);
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
}
.site-header .shell { display: flex; align-items: center; gap: var(--s-4); width: var(--shell); }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { height: 34px; width: auto; }
.brand-name {
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 700;
  letter-spacing: -.01em; line-height: 1;
}
.brand-name em { font-style: normal; color: var(--gold); }

.nav { display: flex; align-items: center; gap: var(--s-4); }
.nav a {
  font-size: .84rem; font-weight: 500; color: var(--on-dark-mu);
  transition: color var(--dur) var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--on-dark); }

/* The CTA is a button first — don't let the generic .nav a colour win. */
.nav a.btn-gold, .nav a.btn-gold:hover { color: #171104; }

.nav-cta { margin-left: var(--s-2); }
.nav-cta.btn { min-height: 40px; padding: 0 20px; font-size: .82rem; }

.burger {
  display: none; background: none; border: 0; padding: 8px; margin-right: -8px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  position: relative; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
/* Open state: the middle bar becomes one stroke of the X, the top bar swings
   down onto it to become the other, the bottom bar fades out. */
body.nav-open .burger span { transform: rotate(45deg); }
body.nav-open .burger span::before { transform: translateY(7px) rotate(90deg); }
body.nav-open .burger span::after  { opacity: 0; }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: var(--s-2) 16px var(--s-4);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 15px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); }
  .nav-cta { margin: var(--s-3) 0 0; }
}

/* --------------------------------------------------------------- Hero ---- */
.hero {
  position: relative; background: var(--ink); color: var(--on-dark);
  overflow: hidden;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding: var(--s-7) 0 var(--s-6);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 78% 42%, rgba(192,138,46,.20), transparent 62%);
}
.hero .shell { position: relative; z-index: 2; }

.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: var(--s-3); }
.hero .lede { margin-bottom: var(--s-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; }
/* Source photography is square — matching it here avoids cropping the stack.
   height:auto is needed so the HTML height attribute (which reserves space
   during load) doesn't win over aspect-ratio once the CSS applies. */
.hero-media img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1; object-fit: cover;
  box-shadow: 0 34px 80px -30px rgba(0,0,0,.75);
}
.hero-badge {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--gold); color: #171104;
  padding: 14px 20px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; line-height: 1.5;
  box-shadow: 0 14px 34px -12px rgba(0,0,0,.6);
}
.hero-badge b { display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.01em; text-transform: none; }
@media (max-width: 640px) { .hero-badge { left: 10px; bottom: -14px; padding: 11px 15px; } }

/* --------------------------------------------------------- Stat strip ---- */
.stat-strip {
  background: var(--ink-2); color: var(--on-dark);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: var(--s-4) var(--s-3);
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600; letter-spacing: -.02em; color: var(--gold-lt); line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: .8rem; color: var(--on-dark-mu); letter-spacing: .01em; }
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}

/* ---------------------------------------------------------- Sec header --- */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-4); margin-bottom: var(--s-6); flex-wrap: wrap;
}
.sec-head > div { max-width: 60ch; }
.sec-head h2 { margin-bottom: var(--s-2); }

/* ------------------------------------------------------ Product cards ---- */
.range-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 1px; background: var(--line-light);
  border: 1px solid var(--line-light);
}
.pcard {
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: background var(--dur) var(--ease);
  position: relative;
}
.pcard:hover { background: #fff; }

.pcard-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--paper-2);
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.045); }

.pcard-body { padding: var(--s-3); display: flex; flex-direction: column; flex: 1; gap: 10px; }
.pcard-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pcard h3 { font-size: 1.32rem; }
.pcard-price { font-family: var(--font-mono); font-size: 1rem; font-weight: 600; color: var(--gold-dk); white-space: nowrap; }
.pcard-cap {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--on-light-mu);
}
.pcard p { font-size: .9rem; color: var(--on-light-mu); line-height: 1.55; }
.pcard-foot { margin-top: auto; padding-top: var(--s-2); display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.swatch-row { display: flex; gap: 6px; }
.swatch-dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: inset 0 -3px 5px rgba(0,0,0,.28);
}
.swatch-dot.is-off { opacity: .22; }

/* "Photo coming soon" placeholder */
.ph-soon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: var(--s-3);
  background:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(16,34,30,.045) 13px 26px),
    var(--paper-2);
  color: var(--on-light-mu);
}
.ph-soon .ico { width: 30px; height: 30px; opacity: .45; }
.ph-soon span {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
}
.sec-dark .ph-soon, .stage .ph-soon {
  background:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(246,244,240,.05) 13px 26px),
    var(--ink-2);
  color: var(--on-dark-mu);
}

.tag-soon {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: var(--gold-lt);
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px;
}

/* ------------------------------------------------------------ Anatomy ---- */
.anatomy {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
@media (max-width: 940px) { .anatomy { grid-template-columns: 1fr; } }

.anatomy-media img { width: 100%; height: auto; border-radius: var(--radius-lg); aspect-ratio: 1 / 1; object-fit: cover; }

.feat-list { display: grid; gap: 2px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.feat {
  background: var(--ink); padding: var(--s-3) 0;
  display: grid; grid-template-columns: 34px 1fr; gap: var(--s-3); align-items: start;
}
.feat .ico { width: 24px; height: 24px; color: var(--gold); margin-top: 3px; }
.feat h4 { font-family: var(--font-body); font-size: .96rem; font-weight: 600; margin-bottom: 5px; letter-spacing: 0; }
.feat p { font-size: .87rem; color: var(--on-dark-mu); line-height: 1.55; }

/* ------------------------------------------------------------- Process --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); padding: var(--s-4) var(--s-3); }
.step-n {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
  color: var(--gold-dk); margin-bottom: var(--s-3); display: block;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: .88rem; color: var(--on-light-mu); line-height: 1.58; }

/* --------------------------------------------------------- Colourways ---- */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-2); }
@media (max-width: 820px) { .ways { grid-template-columns: 1fr; } }
.way { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-2); }
.way img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.way-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-4) var(--s-3) var(--s-3);
  background: linear-gradient(transparent, rgba(4,16,13,.9));
  color: var(--on-dark);
}
.way-cap b { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; display: block; }
.way-cap span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mu); }

/* ------------------------------------------------------------- Custom ---- */
.custom-band {
  /* solid colour first so the light-on-dark text is never stranded if the
     gradient doesn't paint */
  background-color: var(--ink);
  background-image: linear-gradient(115deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--on-dark); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
}
.custom-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 92% 10%, rgba(192,138,46,.24), transparent 60%);
}
.custom-band > * { position: relative; z-index: 1; }
@media (max-width: 900px) { .custom-band { grid-template-columns: 1fr; } }

.engrave-demo {
  background: var(--ink-2); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: var(--s-4) var(--s-3);
  text-align: center;
}
/* Mimics text raised out of the printed insert: a light top edge and a dark
   cast shadow below. Kept legible (not a pure emboss) for contrast. */
.engrave-demo .engraved {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 2rem); letter-spacing: .06em; text-transform: uppercase;
  color: #93A79E;
  text-shadow: 0 -1px 0 rgba(246,244,240,.30), 0 2px 3px rgba(0,0,0,.65);
  word-break: break-word;
}
.engrave-demo small {
  display: block; margin-top: 14px; font-family: var(--font-mono);
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-mu);
}

/* ---------------------------------------------------------------- FAQ ---- */
.faq { max-width: 860px; }
.faq details {
  border-bottom: 1px solid var(--line-light);
}
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s-3) 44px var(--s-3) 0;
  position: relative; font-family: var(--font-display); font-size: 1.16rem; font-weight: 600;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-dk); }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background: currentColor;
  -webkit-mask: var(--plus) center / contain no-repeat;
  mask: var(--plus) center / contain no-repeat;
  transition: transform var(--dur) var(--ease);
  --plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 44px var(--s-4) 0; color: var(--on-light-mu); font-size: .95rem; }

/* -------------------------------------------------------------- Enquiry -- */
.enq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); }
@media (max-width: 940px) { .enq-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: var(--s-3); }
.field label {
  display: block; font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; margin-bottom: 8px; color: var(--on-dark-mu);
}
.field .hint { display: block; font-size: .76rem; font-weight: 400; text-transform: none; letter-spacing: 0; margin-top: 6px; color: var(--on-dark-mu); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .95rem;
  background: var(--ink-2); color: var(--on-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 13px 15px; min-height: 48px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: rgba(168,184,178,.55); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); background: var(--ink-3); outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: var(--s-3); margin-top: var(--s-4); }
.contact-row { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; font-size: .92rem; }
.contact-row .ico { width: 19px; height: 19px; color: var(--gold); margin-top: 3px; }
.contact-row b { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mu); font-weight: 600; margin-bottom: 3px; font-family: var(--font-mono); }

.form-note {
  font-size: .8rem; color: var(--on-dark-mu); margin-top: var(--s-2);
}

/* ------------------------------------------------------------- Footer ---- */
.site-footer { background: #051512; color: var(--on-dark); padding: var(--s-6) 0 var(--s-4); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-4); margin-bottom: var(--s-6); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-3); font-weight: 500; }
.foot-col a, .foot-col p { display: block; font-size: .87rem; color: var(--on-dark-mu); margin-bottom: 11px; transition: color var(--dur) var(--ease); }
.foot-col a:hover { color: var(--on-dark); }
.foot-brand img { height: 60px; width: auto; margin-bottom: var(--s-3); }
.foot-bot {
  border-top: 1px solid var(--line-dark); padding-top: var(--s-3);
  display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
  font-size: .78rem; color: var(--on-dark-mu);
}

/* ==========================================================================
   CONFIGURATOR
   ========================================================================== */
body.build-page { background: var(--paper-2); }

.build-bar {
  position: sticky; top: var(--header-h); z-index: 90;
  background: var(--paper); border-bottom: 1px solid var(--line-light);
}
.build-bar .shell { display: flex; align-items: center; gap: var(--s-3); min-height: 58px; }
.build-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-right: auto; white-space: nowrap; }
.build-title span { color: var(--on-light-mu); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; display: block; }

.step-tabs { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.step-tabs::-webkit-scrollbar { display: none; }
.step-tabs button {
  background: none; border: 0; padding: 10px 15px; white-space: nowrap;
  font-size: .82rem; font-weight: 500; color: var(--on-light-mu);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step-tabs button:hover { color: var(--on-light); }
.step-tabs button[aria-selected="true"] { color: var(--on-light); border-bottom-color: var(--gold); font-weight: 600; }
.step-tabs .n { font-family: var(--font-mono); font-size: .7rem; color: var(--gold-dk); margin-right: 7px; }

.build-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 0; align-items: start;
}
@media (max-width: 1020px) { .build-layout { grid-template-columns: 1fr; } }

/* ---- Stage ---- */
.stage-wrap { padding: var(--s-4) 0 var(--s-6); }
@media (min-width: 1021px) {
  .stage-wrap { position: sticky; top: calc(var(--header-h) + 58px); }
}
/* aspect-ratio drives the shape; max-height stops a wide desktop viewport from
   pushing the thumbnails and the buy bar off-screen. */
.stage {
  position: relative; background: var(--paper);
  border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; max-height: 62vh; overflow: hidden;
}
.stage img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .4s var(--ease);
}
.stage img.is-live { opacity: 1; }

.stage-meta {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  display: flex; gap: 1px; background: var(--line-light);
  border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light);
  border-top-right-radius: var(--radius);
}
.stage-meta span {
  background: rgba(246,244,240,.97);
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 13px; color: var(--on-light-mu);
}

.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumbs button {
  width: 74px; aspect-ratio: 4/3; padding: 0; overflow: hidden;
  border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper);
  transition: border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  opacity: .62;
}
.thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button:hover { opacity: 1; }
.thumbs button[aria-pressed="true"] { border-color: var(--gold); opacity: 1; }

/* ---- Panel ---- */
.panel {
  background: var(--paper); border-left: 1px solid var(--line-light);
  padding: var(--s-4) var(--s-4) 120px;
  min-height: calc(100dvh - var(--header-h) - 58px);
}
@media (max-width: 1020px) { .panel { border-left: 0; border-top: 1px solid var(--line-light); padding: var(--s-4) 0 140px; } }

.pgroup { padding-bottom: var(--s-4); margin-bottom: var(--s-4); border-bottom: 1px solid var(--line-light); scroll-margin-top: 140px; }
.pgroup:last-of-type { border-bottom: 0; }
.pgroup-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: var(--s-2); }
.pgroup-head h3 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pgroup-head .picked { font-size: .82rem; color: var(--on-light-mu); text-align: right; }
.pgroup > p.help { font-size: .84rem; color: var(--on-light-mu); margin-bottom: var(--s-2); }

/* Model list */
.opt-list { display: grid; gap: 8px; }
.opt {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center;
  padding: 10px; text-align: left;
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  width: 100%;
}
.opt:hover { border-color: var(--on-light-mu); }
.opt[aria-pressed="true"] { border-color: var(--ink); background: #fff; box-shadow: inset 0 0 0 1px var(--ink); }
.opt-thumb { width: 62px; aspect-ratio: 1; border-radius: 3px; overflow: hidden; background: var(--paper-2); position: relative; }
.opt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.opt-name { display: block; font-weight: 600; font-size: .94rem; line-height: 1.25; }
.opt-sub { display: block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-light-mu); margin-top: 3px; }
.opt-price { font-family: var(--font-mono); font-size: .85rem; font-weight: 600; }

/* Colour swatches */
.swatch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.swatch {
  padding: 10px; background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); text-align: center;
  transition: border-color var(--dur) var(--ease);
}
.swatch:hover { border-color: var(--on-light-mu); }
.swatch[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.swatch .chip {
  width: 100%; aspect-ratio: 2.1; border-radius: 3px; margin-bottom: 9px;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,.34), inset 0 2px 3px rgba(255,255,255,.18);
}
.swatch .lbl { font-size: .76rem; font-weight: 600; line-height: 1.2; display: block; }
.swatch .avail { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-light-mu); display: block; margin-top: 4px; }

/* Segmented finish control */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg button {
  padding: 14px 12px; text-align: left;
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease);
}
.seg button:hover { border-color: var(--on-light-mu); }
.seg button[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.seg .lbl { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 4px; }
.seg .sub { display: block; font-size: .76rem; color: var(--on-light-mu); line-height: 1.4; }

/* Engraving */
.engrave-field { position: relative; }
.engrave-field input {
  width: 100%; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 14px 15px; min-height: 52px; color: var(--on-light);
}
.engrave-field input:focus { border-color: var(--gold); outline: none; }
.char-count { font-family: var(--font-mono); font-size: .68rem; color: var(--on-light-mu); margin-top: 7px; display: block; text-align: right; }
.char-count.is-max { color: #B4472B; }

.qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--line-light); border-radius: var(--radius); width: max-content; background: var(--paper); }
.qty button { width: 46px; height: 46px; background: none; border: 0; font-size: 1.2rem; line-height: 1; color: var(--on-light); transition: background var(--dur) var(--ease); }
.qty button:hover { background: var(--paper-2); }
.qty output { min-width: 46px; text-align: center; font-family: var(--font-mono); font-weight: 600; }

/* Summary list */
.sum-list { display: grid; gap: 0; }
.sum-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: .88rem;
}
.sum-row dt { color: var(--on-light-mu); }
.sum-row dd { margin: 0; font-weight: 600; text-align: right; }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(192,138,46,.11); border: 1px solid rgba(192,138,46,.34);
  border-radius: var(--radius); padding: 13px 15px; font-size: .84rem; line-height: 1.5;
  color: #6B4C13; margin-top: var(--s-2);
}
.notice .ico { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--gold-dk); }

/* Sticky purchase bar */
.buy-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--ink); color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
  padding: 12px 0 max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -12px 34px -18px rgba(0,0,0,.6);
}
.buy-bar .shell { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.buy-spec { margin-right: auto; min-width: 0; }
.buy-spec .name { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; line-height: 1.2; }
.buy-spec .opts {
  font-family: var(--font-mono); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-dark-mu); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60vw;
}
.buy-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -.02em; }
.buy-price small { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mu); display: block; font-weight: 400; }
/* On a phone the bar is fixed furniture, so keep it to two tight rows:
   spec + price share row one, the CTA gets row two. */
@media (max-width: 620px) {
  .buy-bar { padding: 10px 0 max(10px, env(safe-area-inset-bottom)); }
  .buy-bar .shell { gap: 10px 14px; align-items: center; }
  .buy-bar .btn { flex: 1 1 100%; min-height: 50px; }
  .buy-spec .name { font-size: .95rem; }
  .buy-spec .opts { font-size: .62rem; max-width: 52vw; }
  .buy-price { font-size: 1.35rem; text-align: right; line-height: 1.1; }
  .buy-price small { font-size: .56rem; }
}

/* Enquiry modal */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  background: rgba(4,16,13,.86);
  opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--ink); color: var(--on-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  width: min(620px, 100%); max-height: min(88dvh, 800px); overflow-y: auto;
  padding: var(--s-4);
  transform: translateY(14px) scale(.985); transition: transform var(--dur) var(--ease);
}
.modal.is-open .modal-card { transform: none; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-3); margin-bottom: var(--s-3); }
.modal-head h2 { font-size: 1.6rem; }
.modal-close {
  background: none; border: 1px solid var(--line-dark); border-radius: var(--radius);
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  color: var(--on-dark); transition: background var(--dur) var(--ease);
}
.modal-close:hover { background: var(--ink-3); }
.modal-close .ico { width: 16px; height: 16px; }

.spec-block {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: var(--s-3); margin-bottom: var(--s-3);
  font-family: var(--font-mono); font-size: .8rem; line-height: 1.75; white-space: pre-wrap;
  color: var(--on-dark);
}
@media (max-width: 520px) {
  .spec-block { font-size: .7rem; line-height: 1.6; padding: var(--s-2); }
}
.send-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .send-row { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------------------------------------------- Utilities ---- */
.toast {
  position: fixed; left: 50%; bottom: 96px; z-index: 300;
  transform: translate(-50%, 12px);
  background: var(--gold); color: #171104;
  padding: 12px 22px; border-radius: var(--radius);
  font-size: .86rem; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
