/* ═══════════════════════════════════════════════════════════════
   SCORCHED — HOMEPAGE STYLESHEET
   Synthesized from Vault Vintage GC + Syd's House

   TABLE OF CONTENTS
   1.  Custom Properties  ← change colours & fonts here
   2.  Reset & Base
   3.  Shared Utilities
   4.  Announcement Bar   (Vault orange bg + Syd's arrow nav)
   5.  Header             (Syd's two-row: logo top + nav below)
   6.  Mobile Nav
   7.  Marquee Strip      (Vault)
   8.  Hero Slideshow     (Syd's dots/pause/arrows + Vault overlay text)
   9.  Browse Grid        (Syd's 3-col fixed grid + arrow labels)
   10. Products Grid      (Syd's ALL-CAPS names + SOLD OUT badge)
   11. Editorial Banner   (Vault)
   12. Brand Story
   13. Email Section
   14. Footer
   15. Email Popup        (Syd's dismissible toast)
   16. Responsive
═══════════════════════════════════════════════════════════════ */


/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* ↓ CHANGE THESE to retheme the entire site */
  --color-brand:     #C24A1E;   /* ember — signature accent. Use sparingly. */
  --color-black:     #1C1815;   /* ink — warm near-black, body text + chrome */
  --color-white:     #F3EDE2;   /* bone — page field. Never pure white. */
  --color-offwhite:  #EFE7D9;   /* warm offwhite, sits under bone */
  --color-gray-100:  #ECE6DA;   /* warm neutral, input/card grounds */
  --color-gray-200:  #DAD2C4;   /* warm border/divider */
  --color-gray-400:  #A89E8E;   /* warm muted text */
  --color-gray-700:  #5A5147;   /* warm secondary text */
  --color-sold-out:  #A6431F;   /* desaturated brick — sold-out badge */
  --color-sand:      #C4AE8A;   /* warm secondary: borders, muted UI */
  --color-navy:      #2E3A48;   /* deep anchor — use sparingly */

  /* ↓ CHANGE THESE to swap fonts */
  --font-display: 'Anton', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  /* Layout */
  --max-width:    1340px;
  --header-h-top: 68px;   /* logo row */
  --header-h-nav: 44px;   /* nav row */
  --header-h:     calc(var(--header-h-top) + var(--header-h-nav));
}


/* ─── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, button { font-family: var(--font-body); }


/* ─── 3. SHARED UTILITIES ──────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn--white:hover { background: transparent; color: var(--color-white); }
.btn--black {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn--black:hover { background: transparent; color: var(--color-black); }
.btn--ember {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}
.btn--ember:hover { background: transparent; color: var(--color-brand); }

/* Icon button */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: background 0.15s;
  position: relative;
  color: var(--color-black);
  background: none;
  border: none;
}
.icon-btn:hover { background: var(--color-gray-100); }

/* Eyebrow text */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Section header row */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* Image placeholders — remove once real photos are added */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  padding: 12px;
  line-height: 1.6;
}
.img-placeholder::before { content: attr(data-label); }

.img-placeholder-full {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-full::before {
  content: attr(data-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 10px 20px;
  border-radius: 4px;
}


/* ─── 4. ANNOUNCEMENT BAR ──────────────────────────────────── */
/* Vault's orange bg + Syd's prev/next arrow navigation         */
.announcement-bar {
  background: var(--color-brand);  /* ← change bar colour here */
  color: var(--color-white);
  height: 40px;
  display: flex;
  align-items: center;
}
.ann-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.ann-arrow:hover { color: var(--color-white); }
.ann-track {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ann-message.active {
  opacity: 1;
  pointer-events: auto;
}


/* ─── 5. HEADER ─────────────────────────────────────────────── */
/* Azure: black background  |  Syd's: two-row logo + nav layout  */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);  /* Azure: black header */
  transition: box-shadow 0.25s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.55); }

/* Row 1: search | logo | icons */
.header-top {
  height: var(--header-h-top);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-top__left  { display: flex; align-items: center; gap: 4px; }
.header-logo       { justify-self: center; }
.header-logo img   { height: 36px; width: auto; display: block; filter: invert(1); }
.header-top__right { justify-self: end; display: flex; align-items: center; gap: 2px; }

/* All icons white on black header */
.icon-btn          { color: var(--color-white); }
.icon-btn:hover    { background: rgba(255,255,255,0.1); }

.currency-selector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  margin-right: 4px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.15s;
}
.currency-selector:hover { color: var(--color-white); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 15px;
  height: 15px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Row 2: navigation links (also black bg) */
.header-nav {
  height: var(--header-h-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 13px;
  height: 100%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  position: relative;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--color-white); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: var(--color-white);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.nav-link:hover::after  { transform: scaleX(1); }
.nav-link.active { color: var(--color-white); }
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger — shown only on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);  /* white bars on black header */
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── 6. MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 99;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md);
  overflow-y: auto;
  border-top: 1px solid var(--color-gray-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-gray-200);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--color-brand); }


/* ─── 7. MARQUEE ────────────────────────────────────────────── */
.marquee {
  width: 100%;
  display: block;
  overflow: hidden;
  background: var(--color-black);
  box-sizing: border-box;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee__item::after {
  content: "•";
  color: var(--color-brand);
  margin: 0 40px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ─── 8. HERO — VIDEO BACKGROUND ───────────────────────────── */
/* Point Break footage loops behind the text. Vault-style overlay. */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-bleed video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark gradient so text is always legible */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 1;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-md);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 148px);
  line-height: 0.91;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-content .btn { min-width: 190px; }

/* Scroll cue — subtle down-arrow at bottom center */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ─── 9. BROWSE GRID ────────────────────────────────────────── */
/* Syd's: 3-col fixed grid, full-bleed images, label + → arrow  */
.browse-section { padding: var(--space-lg) 0; }

.browse-header { text-align: center; margin-bottom: var(--space-md); }
.browse-header h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }

/* Thin dividing lines = 1px gap on a coloured background */
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-gray-200);
  max-width: var(--max-width);
  margin: 0 auto;
}
.browse-cell {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s;
  overflow: hidden;
}
.browse-cell:hover { opacity: 0.88; }

.browse-cell__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--color-gray-200);
}
.browse-cell__img .img-placeholder { height: 100%; }
.browse-cell__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.browse-cell:hover .browse-cell__img img { transform: scale(1.04); }

.browse-cell__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px var(--space-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ─── 10. PRODUCTS GRID ─────────────────────────────────────── */
/* Syd's: ALL-CAPS names, SOLD OUT badge, 3-col                  */
.products-section { padding: 0 0 var(--space-lg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-gray-200);
  border: 1px solid var(--color-gray-200);
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-card {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--color-gray-100);
  overflow: hidden;
  transition: transform 0.45s ease;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.product-card:hover .product-card__img,
.product-card:hover .product-card__img img { transform: scale(1.04); }

/* SOLD OUT badge (Syd's) */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 3px;
}
.badge--sold-out {
  background: var(--color-sold-out);   /* Syd's: red badge */
  color: var(--color-white);
}
.badge--sold-out-dark {
  background: rgba(0,0,0,0.78);        /* Azure: dark lowercase badge */
  color: var(--color-white);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11px;
}

/* ─── VINTAGE / RESALE CARD — quiet register ─────────────────── */
/* Ember lives ONLY in info chrome (price row, RARE tag).          */
/* Never on or behind the product image — that area stays neutral. */
.product-card--vintage .product-card__name {
  text-transform: none;     /* archivist sentence case, not ALL-CAPS */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--rare {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: var(--color-brand);   /* ember in chrome only */
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 6px;
}

/* Quick add button (appears on hover) */
.quick-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.product-card__info { padding: 12px 14px 18px; }

/* ALL CAPS product names (Syd's House) */
.product-card__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.4;
}
.product-card__price {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-700);
}


/* ─── 11. EDITORIAL BANNER ──────────────────────────────────── */
.editorial-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-lg) 0;
}
.editorial-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.editorial-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-md);
}
.editorial-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}


/* ─── 12. BRAND STORY ───────────────────────────────────────── */
.brand-story {
  background: var(--color-offwhite);
  padding: var(--space-lg) 0;
}
.brand-story__line {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}
.brand-story__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.brand-story__text h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.story-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: 32px;
  max-width: 460px;
}
.brand-story__img {
  aspect-ratio: 7 / 6;
  border-radius: 16px;
  overflow: hidden;
}
.brand-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ─── 13. EMAIL SECTION ─────────────────────────────────────── */
.email-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.email-section__inner { max-width: 540px; margin: 0 auto; }
.email-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.email-section p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.email-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.email-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.3); }
.email-form input:focus { border-color: var(--color-brand); }
.email-form button {
  padding: 14px 28px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.email-form button:hover { opacity: 0.85; }
.fine-print {
  font-size: 12px !important;
  color: rgba(255,255,255,0.28) !important;
  margin-bottom: 0 !important;
}


/* ─── 14. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
.footer-logo img {
  filter: invert(1);  /* makes black logo white on dark background */
  height: 32px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px var(--space-md);
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--color-white); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.52);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--color-white); color: var(--color-white); }
.footer-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.payment-chip {
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}


/* ─── 15. EMAIL POPUP ───────────────────────────────────────── */
/* Syd's House: dismissible toast in bottom-left corner          */
.email-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  width: 300px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: 12px;
  padding: var(--space-sm);
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  z-index: 200;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.email-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.email-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.email-popup__header strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.email-popup__close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-gray-700);
  transition: background 0.15s;
  line-height: 1;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.email-popup__close:hover { background: var(--color-gray-100); }
.email-popup p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray-700);
  margin-bottom: 12px;
}
.popup-form { display: flex; flex-direction: column; gap: 8px; }
.popup-form input {
  padding: 10px 12px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  background: var(--color-gray-100);
  transition: border-color 0.2s, background 0.2s;
}
.popup-form input:focus {
  border-color: var(--color-brand);
  background: var(--color-white);
}
.popup-form input::placeholder { color: var(--color-gray-400); }
.popup-form button {
  padding: 10px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.popup-form button:hover { background: var(--color-brand); }


/* ─── SMS BANNER (Bombshell) ───────────────────────────────── */
/* Dismissible full-width top strip for text/SMS marketing.     */
/* Connect to your SMS provider by handling the smsBannerForm   */
/* submit in js/main.js (look for the SMS BANNER comment).      */
.sms-banner {
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
}
.sms-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.sms-banner p {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}
.sms-form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sms-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.1);
}
.sms-input-wrap input {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 13px;
  width: 130px;
  outline: none;
  font-family: var(--font-body);
}
.sms-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.sms-join-btn {
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sms-join-btn:hover { opacity: 0.88; }
.sms-banner__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.sms-banner__close:hover { color: var(--color-white); }


/* ─── PHOTO MOSAIC (Bombshell) ──────────────────────────────── */
/* 5-column lifestyle grid hero alternative. Center panel spans  */
/* 2 rows and has the main CTA. Replace placeholders with your   */
/* lifestyle/model photos.                                        */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 70vh;
  min-height: 480px;
}
.mosaic-cell {
  overflow: hidden;
  position: relative;
  background: var(--color-gray-200);
}
.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-cell .img-placeholder { height: 100%; }

/* Explicit placement keeps col order correct */
.mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1; }
.mosaic-cell:nth-child(2) { grid-column: 1; grid-row: 2; }
.mosaic-cell:nth-child(3) { grid-column: 2; grid-row: 1; }
.mosaic-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
.mosaic-cell--center      { grid-column: 3; grid-row: 1 / span 2; }
.mosaic-cell:nth-child(6) { grid-column: 4; grid-row: 1; }
.mosaic-cell:nth-child(7) { grid-column: 4; grid-row: 2; }
.mosaic-cell:nth-child(8) { grid-column: 5; grid-row: 1; }
.mosaic-cell:nth-child(9) { grid-column: 5; grid-row: 2; }

.mosaic-cell--center::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}
.mosaic-cta {
  position: absolute;
  z-index: 1;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 2px solid var(--color-white);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.mosaic-cta:hover { background: var(--color-white); color: var(--color-black); }


/* ─── STAR RATINGS (Bombshell) ─────────────────────────────── */
.product-card__stars {
  font-size: 13px;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.product-card__stars .star-count {
  font-size: 11px;
  color: var(--color-gray-400);
  font-weight: 400;
}


/* ─── REVIEWS CAROUSEL (Bombshell) ─────────────────────────── */
.reviews-section {
  padding: var(--space-lg) 0 0;
  border-top: 1px solid var(--color-gray-200);
}
.reviews-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-md);
}
.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--space-md) var(--space-sm);
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-white);
}
.review-card__stars { font-size: 13px; color: var(--color-black); letter-spacing: 0.04em; }
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-black);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__meta { font-size: 11px; color: var(--color-gray-400); font-weight: 500; }

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: var(--space-sm) 0;
}
.reviews-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reviews-arrow:hover { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }

/* Aggregate rating bar */
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
  font-size: 13px;
  color: var(--color-gray-700);
  border-top: 1px solid var(--color-gray-200);
}
.agg-score {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-black);
}
.agg-check { color: var(--color-brand); }
.agg-stars { color: var(--color-black); font-size: 15px; letter-spacing: 0.04em; }
.agg-divider { color: var(--color-gray-200); }


/* ─── CATEGORY TILES (Bombshell) ────────────────────────────── */
/* 4-col square tiles. Text sits directly on a dark overlay.    */
/* Different from Browse grid (which has label below the image) */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: var(--max-width);
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
}
.cat-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.cat-tile__bg {
  position: absolute;
  inset: 0;
}
.cat-tile__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.cat-tile:hover .cat-tile__bg img { transform: scale(1.06); }
.cat-tile__bg .img-placeholder { height: 100%; }
.cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
  z-index: 1;
}
.cat-tile:hover .cat-tile__overlay { background: rgba(0,0,0,0.26); }
.cat-tile__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  z-index: 1;
}


/* ─── SOCIAL BAR (Bombshell) ─────────────────────────────────── */
/* Standalone social icons row above the footer.                  */
.social-bar {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  border-top: 1px solid var(--color-gray-200);
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-200);
  color: var(--color-black);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-bar a:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}


/* ─── HOMEPAGE ART ──────────────────────────────────────────── */
.homepage-art {
  max-width: 1000px;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
  line-height: 0;
}
.homepage-art img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── ART PANEL (Azure) ─────────────────────────────────────── */
/* Bordered graphic art insert between sections.                 */
/* Text runs on all 4 sides framing a centerpiece image.        */
/* To add: put your graphic inside .art-panel__image as <img>  */
.art-panel {
  max-width: 1000px;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
}
.art-panel__frame {
  background: var(--color-black);
  overflow: hidden;
}
/* Top and bottom text strips */
.art-panel__strip {
  background: var(--color-black);
  padding: 7px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-panel__strip-inner {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand);
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
  min-width: max-content;
}
.art-panel__strip--bottom .art-panel__strip-inner {
  animation-direction: reverse;
}
/* Side strips + image row */
.art-panel__middle {
  display: flex;
  align-items: stretch;
}
.art-panel__side {
  background: var(--color-black);
  width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.art-panel__side-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand);
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.art-panel__side--left  .art-panel__side-text { transform: rotate(180deg); }
/* The actual art image / placeholder */
.art-panel__image {
  flex: 1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-panel__image .img-placeholder { background: var(--color-black); color: rgba(255,255,255,0.2); }
.art-panel__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── VAULT TEASER ──────────────────────────────────────────── */
/* 3-card grail preview. Quiet register: ember in chrome only.   */
.vault-teaser {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-gray-200);
}
.vault-teaser__header {
  text-align: center;
  padding: 0 var(--space-md) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.vault-teaser__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.02em;
  margin: 4px 0 var(--space-sm);
}
.vault-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-gray-200);
  border: 1px solid var(--color-gray-200);
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
}

/* ─── MISSION BOX (Azure) ───────────────────────────────────── */
/* Small centered bordered text box for brand values.            */
.mission-box {
  max-width: 640px;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
}
.mission-box__inner {
  border: 1px solid var(--color-gray-200);
  border-radius: 4px;
  background: var(--color-gray-100);
  padding: 20px 28px;
  text-align: center;
}
.mission-box__inner strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 8px;
}
.mission-box__inner p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-gray-700);
}


/* ─── STAR RATINGS ───────────────────────────────────────────── */
.star      { color: var(--color-black); }   /* filled — ink, not gold */
.star--half { color: var(--color-sand); }   /* half — sand, no opacity trick */

/* ─── REVIEWS SECTION — layout classes ──────────────────────── */
.reviews-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 0 0;
}
.reviews-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: 0 var(--space-md) var(--space-md);
  flex-wrap: wrap;
}
.reviews-aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.reviews-aggregate__score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-black);
}
.reviews-aggregate__stars { font-size: 18px; color: var(--color-black); letter-spacing: 0.06em; }
.reviews-aggregate__count { font-size: 11px; color: var(--color-gray-400); text-align: center; }
.reviews-rating-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 200px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-gray-400);
}
.rating-bar-row > span:first-child { width: 28px; flex-shrink: 0; }
.rating-bar-row > span:last-child  { width: 30px; flex-shrink: 0; }
.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--color-gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar__fill {
  height: 100%;
  background: var(--color-sand);
  border-radius: 3px;
}

.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 var(--space-sm) var(--space-md);
}
.reviews-arrow--prev,
.reviews-arrow--next {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}

/* Alias: HTML uses body/author/date, CSS defined text/meta */
.review-card__body  { font-size: 14px; line-height: 1.6; color: var(--color-black); flex: 1; }
.review-card__author { font-size: 12px; font-weight: 600; color: var(--color-black); }
.review-card__author span { color: var(--color-brand); font-weight: 400; }
.review-card__date  { font-size: 11px; color: var(--color-gray-400); }

/* ─── CAT TILES — text overlay ──────────────────────────────── */
/* HTML uses cat-tile__text, CSS defined cat-tile__label — alias */
.cat-tile__text {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 16px;
  z-index: 2;
}
.cat-tile__text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin: 0 0 4px;
}
.cat-tile__text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
/* Cat tile placeholder: gray box fills the entire tile */
.cat-tile::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-gray-400);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 0;
}
/* When a real background-image is applied, hide the pseudo-element */
.cat-tile[style*="background-image"]::before { display: none; }

/* ─── SOCIAL BAR — layout classes ───────────────────────────── */
.social-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  display: flex;
  align-items: center;
}
.social-bar__icons { display: flex; gap: 10px; align-items: center; }
/* .social-bar a selector in existing rule covers .social-bar__icon */

/* Mosaic CTA centering */
.mosaic-cell--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── 16. RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 1024px) {
  .products-grid       { grid-template-columns: repeat(3, 1fr); }
  .brand-story__inner  { grid-template-columns: 1fr; gap: var(--space-md); }
  .brand-story__img    { aspect-ratio: 16 / 9; max-height: 420px; }
}

@media (max-width: 768px) {
  :root {
    --space-lg:     44px;
    --space-xl:     60px;
    --header-h-top: 60px;
    --header-h-nav: 0px;   /* nav row hidden on mobile */
  }

  /* Show hamburger, hide desktop nav */
  .hamburger  { display: flex; }
  .header-nav { display: none; }

  /* SMS banner stacks on small screens */
  .sms-banner { gap: var(--space-xs); padding: 10px 40px 10px 12px; }
  .sms-banner__inner { flex-direction: column; gap: 6px; }
  .sms-input-wrap input { width: 120px; }

  /* Photo mosaic: 3-col on mobile, hide outer 2 cells */
  .photo-mosaic {
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 55vh;
  }
  .mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1; }
  .mosaic-cell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .mosaic-cell:nth-child(3) { display: none; }
  .mosaic-cell:nth-child(4) { display: none; }
  .mosaic-cell--center      { grid-column: 2; grid-row: 1 / span 2; }
  .mosaic-cell:nth-child(6) { display: none; }
  .mosaic-cell:nth-child(7) { display: none; }
  .mosaic-cell:nth-child(8) { grid-column: 3; grid-row: 1; }
  .mosaic-cell:nth-child(9) { grid-column: 3; grid-row: 2; }

  /* Hero */
  .hero { height: 72vh; }

  /* Browse: 2 columns on mobile */
  .browse-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products: 2 columns */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Editorial */
  .editorial-banner { height: 360px; margin: var(--space-md) 0; }

  /* Category tiles: 2-col on mobile */
  .cat-tiles { grid-template-columns: repeat(2, 1fr); padding: 0; }

  /* Email form stacks vertically */
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }

  /* Popup full-width near bottom */
  .email-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    width: auto;
    bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hero        { height: 65vh; }
  .hero-title  { font-size: clamp(58px, 16vw, 90px); }
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles   { grid-template-columns: repeat(2, 1fr); }
}


/* ─── VAULT TEASER — pre-launch subtext ─────────────────────── */
.vault-teaser__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-700);
  max-width: 480px;
  margin: 0 auto var(--space-sm);
}

/* ─── VAULT HERO — single-grail editorial layout ────────────── */
.vault-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  border-top: 1px solid var(--color-gray-200);
}
.vault-hero__img-wrap {
  background: var(--color-gray-100);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.vault-hero__img-wrap .img-placeholder {
  height: 100%;
  border-radius: 0;
}
.vault-hero__info {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--color-gray-200);
}
.vault-hero__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0;
}
.vault-hero__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
}
.vault-hero__details {
  font-size: 13px;
  color: var(--color-gray-700);
  margin: 0;
}
.vault-hero__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

@media (max-width: 768px) {
  .vault-hero { grid-template-columns: 1fr; }
  .vault-hero__img-wrap { aspect-ratio: 3 / 4; }
  .vault-hero__info {
    border-left: none;
    border-top: 1px solid var(--color-gray-200);
    padding: var(--space-md);
    gap: 12px;
  }
}


/* ─── ORIGINALS COMING SOON — loud register ──────────────────── */
.originals-soon {
  background: var(--color-brand);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.originals-soon__inner {
  max-width: 560px;
  margin: 0 auto;
}
.originals-soon .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.originals-soon h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.originals-soon > .originals-soon__inner > p:not(.eyebrow):not(.fine-print) {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.originals-soon .email-form {
  border-color: rgba(255,255,255,0.25);
}
.originals-soon .email-form input {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--color-white);
}
.originals-soon .email-form input::placeholder {
  color: rgba(255,255,255,0.5);
}
.originals-soon .email-form input:focus {
  border-color: var(--color-white);
  outline: none;
}
.originals-soon .email-form button {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.originals-soon .email-form button:hover {
  opacity: 0.85;
}
.originals-soon .fine-print {
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}


/* ─── HERO SECONDARY LINK ────────────────────────────────────── */
.hero-secondary-link {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-secondary-link:hover { color: var(--color-white); }


/* ─── WHERE TO FIND US ───────────────────────────────────────── */
.find-us {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--color-gray-200);
}
.find-us__inner {
  max-width: 480px;
  margin: 0 auto;
}
.find-us h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 66px);
  letter-spacing: -0.02em;
  margin: 4px 0 var(--space-md);
}
.find-us__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.find-us__shop-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 24px;
}
.find-us__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--color-brand);
  border-radius: 3px;
  color: var(--color-brand);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.find-us__btn:hover {
  background: var(--color-brand);
  color: var(--color-white);
}
.find-us__btn:active {
  transform: scale(0.98);
}
.find-us__btn--follow {
  border-width: 1px;
  font-size: 15px;
  opacity: 0.75;
  max-width: 320px;
}
.find-us__btn--follow:hover {
  background: var(--color-brand);
  color: var(--color-white);
  opacity: 1;
}
.find-us__btn--follow:active {
  transform: scale(0.98);
}
.find-us__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}
.find-us__logo {
  display: block;
  flex-shrink: 0;
}
.find-us__logo--ebay {
  height: 22px;
  width: 72px;
  object-fit: contain;
  object-position: left center;
}
.find-us__logo--depop {
  height: 28px;
  width: 28px;
  object-fit: cover;
  border-radius: 6px;
}
.find-us__logo--ig {
  height: 28px;
  width: 28px;
  object-fit: cover;
  border-radius: 6px;
}
