/* =====================================================================
   THE COLOUR LIBRARY — Fabric Town
   A colour-discovery system. Crisp neutral UI, colour-led, design-tool feel.
   Type: Space Grotesk (display/grotesk) + Fraunces (serif accent) + system text.
   ===================================================================== */

/* ---------- Fonts (Google Fonts, progressive — text still works if blocked) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500&family=Inter:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Neutral UI — gallery-white, lets colour sing */
  --paper:        #fbfbfa;
  --paper-2:      #f3f3f1;
  --card:         #ffffff;
  --line:         #e4e4e0;
  --line-strong:  #cfcfca;
  --ink:          #16161a;
  --ink-2:        #4a4a52;
  --ink-3:        #8a8a92;

  /* Library accent — a confident "index" red, used sparingly like a label tab */
  --accent:       #e7402c;
  --accent-ink:   #c4321f;
  --accent-soft:  #fdecea;

  /* Colour-family chips — the spectrum that organizes the wall */
  --c-red:    #e0473a;
  --c-orange: #ef8a3c;
  --c-yellow: #f2c94c;
  --c-green:  #5fae73;
  --c-teal:   #3fa6a0;
  --c-blue:   #4a78c9;
  --c-purple: #8b6ec4;
  --c-pink:   #e58bb0;
  --c-brown:  #9c6f4e;
  --c-neutral:#b7b4ab;
  --c-black:  #2a2a2e;
  --c-white:  #f1f0eb;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-1: 0 1px 2px rgba(20,20,26,.05), 0 1px 1px rgba(20,20,26,.04);
  --shadow-2: 0 6px 24px -8px rgba(20,20,26,.18);

  --maxw: 1240px;
  --gutter: clamp(18px, 4vw, 56px);

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-text:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- 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; }
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.stack > * + * { margin-top: 1rem; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .2s var(--ease); text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.display {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.serif { font-family: var(--font-serif); font-weight: 400; font-style: normal; letter-spacing: -0.01em; }
.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: .5em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }
.muted { color: var(--ink-3); }
.mono-code {
  font-family: 'Space Grotesk', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  padding: .82em 1.4em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-2); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-ink); box-shadow: var(--shadow-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--card); }
.btn--sm { padding: .58em 1em; font-size: .85rem; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,250,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand img { height: 30px; width: auto; }
.brand .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em;
}
.brand .brand-tag {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
  display: block; margin-top: -2px; font-weight: 600;
}
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  text-decoration: none; color: var(--ink-2); font-family: var(--font-display);
  font-weight: 500; font-size: .92rem; padding: .5rem .7rem; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--accent); border-radius: 2px; margin-top: 3px;
}
.header-cta { display: inline-flex; gap: .5rem; align-items: center; }
.nav-toggle {
  display: none; background: var(--card); border: 1px solid var(--line-strong);
  width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem; gap: .2rem;
    transform: translateY(-120%); transition: transform .3s var(--ease);
    box-shadow: var(--shadow-2);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"]::after { display: none; }
  .header-cta .btn--ghost { display: none; }
}

/* ===================================================================
   HERO — colour wall is the hero
   =================================================================== */
.hero { position: relative; padding-top: clamp(36px, 5vw, 64px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .tag-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.6rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }

/* The hero colour wall: a live mini swatch grid */
.colourwall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px;
  box-shadow: var(--shadow-2);
}
.colourwall .chip {
  position: relative; aspect-ratio: 1; border-radius: 4px; overflow: hidden; background: var(--paper-2);
}
.colourwall .chip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.colourwall .chip:hover img { transform: scale(1.08); }
.colourwall .chip::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); border-radius: 4px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .colourwall { grid-template-columns: repeat(8, 1fr); }
  .colourwall .chip:nth-child(n+25) { display: none; }
}
@media (max-width: 520px) {
  .colourwall { grid-template-columns: repeat(5, 1fr); }
  .colourwall .chip:nth-child(n+21) { display: none; }
}

/* ---------- Colour-family chips (filter pills) ---------- */
.swatch-dot {
  width: 14px; height: 14px; border-radius: 50%; display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); flex: 0 0 auto;
}
.chip-pill {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: 100px; padding: .42em .85em .42em .6em;
  font-family: var(--font-display); font-weight: 500; font-size: .85rem; color: var(--ink-2);
  text-decoration: none; transition: border-color .15s, color .15s, background .15s;
}
.chip-pill:hover { border-color: var(--ink); color: var(--ink); }

/* ===================================================================
   GENERIC: section heads
   =================================================================== */
.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: .6rem; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap;
}

/* ---------- Occasions ---------- */
.occasions { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 16px); }
.occasion {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4;
  text-decoration: none; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem; border: 1px solid var(--line); background: var(--paper-2);
}
.occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.occasion::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.62) 100%); }
.occasion:hover img { transform: scale(1.06); }
.occasion .o-label { position: relative; z-index: 2; }
.occasion .o-label h3 { color: #fff; font-size: 1.15rem; }
.occasion .o-label span { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; font-family: var(--font-display); }
@media (max-width: 760px) { .occasions { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Feature band (swatch service promise) ---------- */
.promise {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr;
}
.promise .p-copy { padding: clamp(28px, 5vw, 60px); }
.promise .eyebrow { color: #ff8b7c; }
.promise h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.promise p { color: #cfcfd6; }
.promise .p-steps { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .8rem; counter-reset: step; }
.promise .p-steps li { display: flex; gap: .9rem; align-items: flex-start; }
.promise .p-steps li::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff;
}
.promise .p-steps b { color: #fff; font-weight: 600; }
.promise .p-visual { position: relative; min-height: 280px; background: #222; }
.promise .p-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promise .p-cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .7rem; }
@media (max-width: 820px) { .promise { grid-template-columns: 1fr; } .promise .p-visual { min-height: 220px; order: -1; } }

/* ---------- Stats / story strip ---------- */
.statline { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,24px); }
.stat { border-left: 2px solid var(--accent); padding-left: 1rem; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.03em; line-height: 1; }
.stat .lbl { color: var(--ink-2); font-size: .92rem; margin-top: .4rem; }
@media (max-width: 640px){ .statline { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Cards (guides / generic) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.4rem 1.5rem; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .6rem; transition: border-color .18s, transform .18s, box-shadow .18s;
}
.gcard:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.gcard .g-kicker { font-family: var(--font-display); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.gcard h3 { font-size: 1.18rem; line-height: 1.15; }
.gcard p { color: var(--ink-2); font-size: .94rem; margin: 0; }
.gcard .g-more { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--ink); display: inline-flex; gap: .4em; align-items: center; }
@media (max-width: 860px){ .card-grid, .card-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .card-grid, .card-grid--2 { grid-template-columns: 1fr; } }

/* ===================================================================
   CATALOGUE / COLOUR WALL  (catalogue.html + home preview)
   =================================================================== */
.filterbar {
  position: sticky; top: 70px; z-index: 40;
  background: rgba(251,251,250,.9); backdrop-filter: blur(8px);
  border-block: 1px solid var(--line); padding-block: .85rem;
}
.filterbar-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.filter-group { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-btn {
  background: var(--card); border: 1px solid var(--line-strong); color: var(--ink-2);
  border-radius: 100px; padding: .42em .95em; font-family: var(--font-display);
  font-weight: 500; font-size: .85rem; transition: all .15s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-count { margin-left: auto; font-size: .85rem; color: var(--ink-3); font-family: var(--font-display); }

.catalogue-section { scroll-margin-top: 140px; }
.cat-group-head {
  display: flex; align-items: baseline; gap: 1rem; margin: clamp(36px,5vw,60px) 0 1.4rem; flex-wrap: wrap;
  border-top: 2px solid var(--ink); padding-top: 1rem;
}
.cat-group-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cat-group-head .cg-meta { font-family: var(--font-display); color: var(--ink-3); font-size: .85rem; font-variant-numeric: tabular-nums; }

.cat-block { margin-bottom: clamp(30px, 4vw, 48px); scroll-margin-top: 150px; }
.cat-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; flex-wrap: wrap; }
.cat-block-head h3 { font-size: 1.3rem; }
.cat-block-head .cb-ref { font-family: var(--font-display); font-size: .78rem; letter-spacing: .1em; color: var(--ink-3); text-transform: uppercase; }

.swatch-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.swatch {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; transition: border-color .18s, box-shadow .18s, transform .18s;
}
.swatch:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.swatch .s-photo { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper-2); }
.swatch .s-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.swatch:hover .s-photo img { transform: scale(1.05); }
.swatch .s-meta { padding: .7rem .8rem .85rem; }
.swatch .s-name { font-family: var(--font-display); font-weight: 600; font-size: .92rem; letter-spacing: -.01em; }
.swatch .s-ref { font-family: var(--font-display); font-size: .72rem; color: var(--ink-3); font-variant-numeric: tabular-nums; letter-spacing: .06em; margin-top: .1rem; }
.swatch .s-request {
  margin-top: .6rem; width: 100%; justify-content: center;
  background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: .5em .6em; font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; display: inline-flex; align-items: center; gap: .4em;
  transition: background .15s, color .15s, border-color .15s;
}
.swatch .s-request:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.swatch .s-request svg { width: 14px; height: 14px; }

.cat-block.is-hidden, .cat-group.is-hidden { display: none; }

/* Jump nav (catalogue) */
.jumpnav {
  display: flex; gap: .4rem; flex-wrap: wrap; padding: 1rem 0 0;
}
.jumpnav a {
  font-family: var(--font-display); font-size: .8rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none; background: var(--card);
  border: 1px solid var(--line); border-radius: 100px; padding: .35em .8em;
  transition: border-color .15s, color .15s;
}
.jumpnav a:hover { border-color: var(--ink); color: var(--ink); }

/* ===================================================================
   MODAL — swatch request
   =================================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300; background: rgba(20,20,26,.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity .2s var(--ease);
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  background: var(--card); border-radius: var(--r-lg); max-width: 460px; width: 100%;
  box-shadow: var(--shadow-2); overflow: hidden; transform: translateY(8px); transition: transform .2s var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-top { display: flex; gap: 1rem; padding: 1.4rem 1.4rem 1rem; border-bottom: 1px solid var(--line); align-items: center; }
.modal-top .m-swatch { width: 64px; height: 64px; border-radius: var(--r-sm); object-fit: cover; border: 1px solid var(--line); flex: 0 0 auto; }
.modal-top h3 { font-size: 1.15rem; }
.modal-top .m-ref { font-family: var(--font-display); font-size: .78rem; color: var(--ink-3); letter-spacing: .06em; }
.modal-body { padding: 1.2rem 1.4rem 1.5rem; }
.modal-body p { margin-top: 0; color: var(--ink-2); font-size: .94rem; }
.modal-actions { display: grid; gap: .55rem; margin-top: 1rem; }
.modal-action {
  display: flex; align-items: center; gap: .8rem; text-decoration: none;
  border: 1px solid var(--line-strong); border-radius: var(--r-md); padding: .8rem 1rem;
  color: var(--ink); transition: border-color .15s, background .15s; background: var(--paper);
}
.modal-action:hover { border-color: var(--ink); background: var(--card); }
.modal-action .ma-ico { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; }
.modal-action .ma-ico svg { width: 20px; height: 20px; }
.modal-action b { font-family: var(--font-display); font-size: .95rem; display: block; }
.modal-action small { color: var(--ink-3); font-size: .8rem; }
.ico-ig { background: linear-gradient(45deg,#f09433,#e6683c 30%,#dc2743 55%,#cc2366 80%,#bc1888); }
.ico-mail { background: var(--accent); }
.ico-tel { background: var(--ink); }
.modal-close {
  position: absolute; top: 14px; right: 16px; background: var(--card); border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 50%; font-size: 1.1rem; line-height: 1; color: var(--ink-2);
  display: grid; place-items: center;
}
.modal { position: relative; }

/* ===================================================================
   STORY / GENERIC CONTENT
   =================================================================== */
.page-hero { padding-block: clamp(46px, 7vw, 96px) clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.page-hero .display { max-width: 16ch; }
.page-hero .lede { margin-top: 1.4rem; }
.breadcrumb { font-family: var(--font-display); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.4rem; margin-bottom: .8rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: .5rem; }
.prose p { color: var(--ink-2); margin: 0 0 1.1rem; }
.prose p:first-of-type { font-size: 1.12rem; color: var(--ink); }
.prose strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split img { border-radius: var(--r-lg); border: 1px solid var(--line); }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }

.media-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }

/* Pull-quote */
.pullquote {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.2; color: var(--ink); max-width: 22ch; letter-spacing: -.01em;
}
.pullquote .by { display: block; font-family: var(--font-display); font-style: normal; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 1.2rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 78ch; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.3rem 2.5rem 1.3rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--ink);
  position: relative; display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
}
.faq-q .faq-ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .25s var(--ease), background .2s, color .2s; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content:""; position: absolute; background: currentColor; }
.faq-q .faq-ico::before { width: 11px; height: 1.5px; }
.faq-q .faq-ico::after { width: 1.5px; height: 11px; transition: transform .25s var(--ease); }
.faq-q[aria-expanded="true"] .faq-ico { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-ico::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 2.5rem 1.4rem 0; color: var(--ink-2); }
.faq-a-inner p { margin: 0 0 .8rem; }

/* ---------- Visit / stores ---------- */
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px); }
.store-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); }
.store-card .s-pin { font-family: var(--font-display); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.store-card h3 { font-size: 1.5rem; margin: .4rem 0 .2rem; }
.store-card .s-street { color: var(--ink-2); font-size: 1.05rem; }
.store-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin: 1.4rem 0 0; font-size: .95rem; }
.store-card dt { font-family: var(--font-display); font-weight: 600; color: var(--ink-3); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; padding-top: 2px; }
.store-card dd { margin: 0; color: var(--ink); }
.store-card dd a { color: var(--accent-ink); text-decoration: none; }
.store-card dd a:hover { text-decoration: underline; }
.store-card .s-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
@media (max-width: 760px){ .store-grid { grid-template-columns: 1fr; } }

.order-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(12px,2vw,20px); }
.order-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; text-decoration: none; color: var(--ink); transition: border-color .18s, transform .18s, box-shadow .18s; display: flex; flex-direction: column; gap: .5rem; }
.order-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.order-card .oc-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: #fff; }
.order-card h3 { font-size: 1.12rem; }
.order-card p { color: var(--ink-2); font-size: .9rem; margin: 0; }
@media (max-width: 760px){ .order-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   CTA band + Footer
   =================================================================== */
.cta-band {
  background: var(--accent); color: #fff; border-radius: var(--r-lg);
  padding: clamp(34px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 1rem auto 0; }
.cta-band .cta-row { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
.cta-band .btn--primary { background: #fff; color: var(--accent-ink); }
.cta-band .btn--primary:hover { background: var(--ink); color: #fff; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
/* faint spectrum bar at bottom of cta */
.cta-band .spectrum { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; display: flex; }
.cta-band .spectrum span { flex: 1; }

.site-footer { background: var(--ink); color: #cfcfd6; padding-block: clamp(48px, 6vw, 80px) 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.footer-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer-grid a { color: #cfcfd6; text-decoration: none; font-size: .94rem; display: block; padding: .25rem 0; transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.footer-brand p { color: #9a9aa2; font-size: .92rem; max-width: 32ch; margin: 1rem 0 0; }
.footer-spectrum { display: flex; height: 6px; border-radius: 100px; overflow: hidden; margin: 2.4rem 0 1.6rem; }
.footer-spectrum span { flex: 1; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; font-size: .85rem; color: #8a8a92; }
.footer-bottom .demo-note { color: #ff8b7c; font-weight: 500; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.tag {
  display: inline-flex; align-items: center; gap: .4em; background: var(--accent-soft); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 600; font-size: .76rem; letter-spacing: .04em;
  padding: .3em .7em; border-radius: 100px;
}
.note-banner {
  background: var(--paper-2); border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  padding: 1rem 1.2rem; font-size: .9rem; color: var(--ink-2); display: flex; gap: .7rem; align-items: flex-start;
}
.note-banner b { color: var(--ink); font-family: var(--font-display); }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }
