/* ============================================
   MAISON NOIR — Stylesheet
   ============================================ */

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

:root {
  --noir: #0d0d0d;
  --white: #f8f6f2;
  --cream: #f0ebe2;
  --gold: #c9a96e;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-400: #b0b0b0;
  --grey-600: #6b6b6b;
  --grey-800: #2a2a2a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.4s var(--ease-out);

  /* ── SPACING SCALE (8pt grid) ── */
  --space-1: 0.25rem;   /*  4px */
  --space-2: 0.5rem;    /*  8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.5rem;    /* 24px */
  --space-6: 2rem;      /* 32px */
  --space-7: 3rem;      /* 48px */
  --space-8: 4rem;      /* 64px */
  --space-9: 6rem;      /* 96px */
  --space-10: 8rem;     /* 128px */

  /* ── SECTION RHYTHM (responsive, fluid) ── */
  --section-pad-y: clamp(4rem, 8vw, 7rem);   /* vertical padding for sections */
  --section-pad-x: clamp(1.25rem, 5vw, 5rem); /* horizontal gutter */
  --section-gap:   clamp(3rem, 6vw, 5.5rem); /* space between stacked sections */
  --header-gap:    clamp(2rem, 4vw, 3.5rem); /* between section header and content */
  --block-gap:     clamp(1.5rem, 3vw, 2.5rem); /* between blocks within a section */

  /* ── LAYOUT WIDTHS ── */
  --max-w: 1440px;
  --max-w-prose: 820px;
  --max-w-narrow: 640px;
  --side-pad: var(--section-pad-x);

  /* ── RADII + SHADOWS ── */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 24px -12px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 48px -16px rgba(0,0,0,0.3);
  --shadow-gold: 0 16px 36px -12px rgba(201,169,110,0.55);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--noir);
  overflow-x: hidden;
  cursor: none;
}

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

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  width: 8px; height: 8px;
  background: var(--noir);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--noir);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), border-color 0.2s, width 0.3s, height 0.3s;
  opacity: 0.6;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold);
  opacity: 1;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--noir);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-brand {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--white);
  margin-bottom: 2rem;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: load 1.6s var(--ease-out) forwards;
}

@keyframes load { to { width: 100%; } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(248,246,242,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.4s;
}

.nav-logo a span { color: var(--gold); }

.nav.scrolled .nav-logo a { color: var(--noir); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--grey-600); }
.nav.scrolled .nav-links a:hover { color: var(--noir); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,246,242,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-icon svg { width: 20px; height: 20px; }
.nav-icon:hover { color: var(--white); }

.nav.scrolled .nav-icon { color: var(--grey-600); }
.nav.scrolled .nav-icon:hover { color: var(--noir); }

.cart-icon { position: relative; }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.cart-count.visible { opacity: 1; transform: scale(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 1rem 0;
  border-top: 1px solid var(--grey-200);
}

.mobile-link {
  display: block;
  padding: 0.75rem 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--grey-800);
  border-bottom: 1px solid var(--grey-100);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-link:hover { color: var(--noir); padding-left: 3.5rem; }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  backdrop-filter: blur(2px);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 95vw);
  height: 100%;
  background: var(--white);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid var(--grey-200);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.cart-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--grey-600);
  transition: color 0.2s, transform 0.2s;
}

.cart-close:hover { color: var(--noir); transform: rotate(90deg); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--grey-400);
}

.cart-empty svg { width: 48px; height: 48px; opacity: 0.4; }
.cart-empty p { font-size: 1rem; color: var(--grey-600); }
.cart-empty span { font-size: 0.8rem; letter-spacing: 0.05em; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-100);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  background: var(--grey-100);
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--grey-600);
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--grey-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  margin-top: 0.5rem;
  display: block;
}

.cart-item-remove:hover { color: var(--noir); }

.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--grey-200);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.full-width { width: 100%; justify-content: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  min-height: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  transition: background 0.3s var(--ease-out), color 0.3s, border-color 0.3s, transform 0.2s, letter-spacing 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: var(--noir);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  letter-spacing: 0.18em;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(201,169,110,0.55);
}
.btn-primary:hover::before,
.btn-primary:focus-visible::before { transform: translateX(0); }
.btn-primary span,
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--white);
  color: var(--noir);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  background: transparent;
  color: var(--noir);
  border: 2px solid var(--noir);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--noir);
  color: var(--white);
  letter-spacing: 0.18em;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.35);
}
.btn-outline:active { transform: translateY(0) scale(0.98); }

/* Universal focus ring for keyboard accessibility */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-outline:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ACCOUNT DROPDOWN
   ============================================ */
.nav-account-menu { position: relative; }

.account-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 2000;
  overflow: hidden;
  animation: dropIn 0.3s cubic-bezier(0.22,1,0.36,1);
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-dropdown-header {
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--grey-100);
}

.account-dropdown-header strong {
  display: block;
  font-size: 0.85rem;
  color: var(--noir);
  margin-bottom: 0.2rem;
}

.account-dropdown-header span {
  font-size: 0.72rem;
  color: var(--grey-600);
}

.acct-link {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
  color: var(--grey-800);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.acct-link:hover { background: var(--grey-100); color: var(--noir); }

.acct-logout {
  border-top: 1px solid var(--grey-100);
  color: #c0392b !important;
}

/* ============================================
   HERO
   ============================================ */
/* ============================================
   HERO — Editorial split layout (redesigned)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  padding: 7rem 0 6rem;
  background: #0a0a0a;
}

/* Ken-burns slideshow */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease-out), transform 14s linear;
}
.hero-bg-img.active  { opacity: 1; transform: scale(1); }
.hero-bg-img.prev    { opacity: 0; transform: scale(1.12); }
.hero-bg-1 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=85&auto=format'); }
.hero-bg-2 { background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1800&q=85&auto=format'); }
.hero-bg-3 { background-image: url('https://images.unsplash.com/photo-1509631179647-0177331693ae?w=1800&q=85&auto=format'); }

/* Richer overlay for depth + legibility */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0) 65%),
    linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.35) 28%, rgba(10,10,10,0.2) 55%, rgba(10,10,10,0.75) 100%),
    linear-gradient(110deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0) 55%);
}

/* Subtle film grain */
.hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35) 0, rgba(255,255,255,0) 2px),
    repeating-radial-gradient(circle at 70% 70%, rgba(255,255,255,0.25) 0, rgba(255,255,255,0) 2px);
  background-size: 3px 3px, 5px 5px;
}

/* Left vertical meta column */
.hero-side {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 56px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 0 4rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-side-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
}
.hero-side-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.3em;
}
.hero-side-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.58rem;
}
.hero-side-socials a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
}
.hero-side-socials a:hover { color: var(--gold); }

/* Main content wrapper */
.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(5rem, 9vw, 7rem) 0 calc(56px + clamp(2rem, 6vw, 5rem));
  display: block;
}

.hero-content { max-width: 720px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,169,110,0.7);
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}
.hero-eyebrow-sep { color: rgba(255,255,255,0.3); }
.hero-eyebrow-drop { color: var(--gold); }

/* Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 9.5vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero-word { display: block; opacity: 0; transform: translateY(40px); }
.hero-word em { font-style: italic; color: rgba(255,255,255,0.45); padding: 0 0.5rem; }
.hero-period { color: var(--gold); font-style: italic; display: inline-block; margin-left: 2px; }

/* Animate each word on reveal */
.hero-title[data-reveal].visible .hero-word-1 { animation: hero-word-in 0.9s 0.1s var(--ease-out) forwards; }
.hero-title[data-reveal].visible .hero-word-2 { animation: hero-word-in 0.9s 0.3s var(--ease-out) forwards; }
.hero-title[data-reveal].visible .hero-word-3 { animation: hero-word-in 0.9s 0.5s var(--ease-out) forwards; }
@keyframes hero-word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* If reveal observer isn't active, still show the words (fallback) */
.hero-title .hero-word { animation: hero-word-in 0.9s forwards; }
.hero-title .hero-word-1 { animation-delay: 0.1s; }
.hero-title .hero-word-2 { animation-delay: 0.3s; }
.hero-title .hero-word-3 { animation-delay: 0.5s; }

/* Sub */
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-sub-accent {
  display: block;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 2.3rem;
  min-height: 58px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s, color 0.35s,
    box-shadow 0.35s, border-color 0.35s,
    letter-spacing 0.35s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  isolation: isolate;
}

/* Shine sweep for both buttons on hover */
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.45) 50%,
    transparent 65%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.hero-btn:hover::before,
.hero-btn:focus-visible::before {
  transform: translateX(110%);
}

/* ── PRIMARY ── solid white, unmissable */
.hero-btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  border: 2.5px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.1),
    0 22px 50px -12px rgba(0,0,0,0.7),
    0 4px 14px -4px rgba(0,0,0,0.4);
  text-shadow: 0 0 0.01px rgba(0,0,0,0.5); /* crisp text */
}
.hero-btn-primary svg {
  transition: transform 0.35s var(--ease-out);
  stroke: #0a0a0a;
  stroke-width: 2;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: var(--gold);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  letter-spacing: 0.22em;
  box-shadow:
    0 0 0 6px rgba(201,169,110,0.25),
    0 32px 60px -14px rgba(201,169,110,0.75),
    0 8px 20px -4px rgba(0,0,0,0.4);
}
.hero-btn-primary:hover svg,
.hero-btn-primary:focus-visible svg {
  stroke: #ffffff;
  transform: translateX(6px);
}

/* ── GHOST ── high-contrast outlined, always readable */
.hero-btn-ghost {
  background: rgba(10,10,10,0.55);
  color: #ffffff;
  border: 2.5px solid #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15),
    0 18px 40px -12px rgba(0,0,0,0.7),
    0 4px 14px -4px rgba(0,0,0,0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-btn-ghost:hover,
.hero-btn-ghost:focus-visible {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  letter-spacing: 0.22em;
  text-shadow: none;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.22),
    0 28px 52px -14px rgba(255,255,255,0.45),
    0 8px 20px -4px rgba(0,0,0,0.3);
}

/* Keyboard focus ring (separate from hover) */
.hero-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* Press state */
.hero-btn:active {
  transform: translateY(-1px) scale(0.97);
  transition-duration: 0.1s;
}

/* Subtle always-on pulse on primary so it reads as interactive from the first glance */
.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: -2.5px;
  border-radius: inherit;
  border: 2.5px solid var(--gold);
  opacity: 0;
  animation: hero-btn-attract 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-btn-attract {
  0%, 100% { opacity: 0; transform: scale(1); }
  40% { opacity: 0.55; transform: scale(1.08); }
  70% { opacity: 0; transform: scale(1.14); }
}
.hero-btn-primary:hover::after,
.hero-btn-primary:focus-visible::after {
  animation: none;
  opacity: 0;
}

/* When hovering the hero area, soften the overlay so text stands out */
.hero:hover .hero-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0) 65%),
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.42) 28%, rgba(10,10,10,0.28) 55%, rgba(10,10,10,0.8) 100%),
    linear-gradient(110deg, rgba(10,10,10,0.58) 0%, rgba(10,10,10,0) 55%);
  transition: background 0.6s var(--ease-out);
}

/* Text hover treatments — keep text readable and subtly interactive */
.hero-title { transition: text-shadow 0.5s var(--ease-out); }
.hero:hover .hero-title {
  text-shadow: 0 8px 30px rgba(0,0,0,0.55);
}
.hero:hover .hero-sub { color: rgba(255,255,255,0.92); }
.hero:hover .hero-sub-accent { color: rgba(255,255,255,0.78); }
.hero:hover .hero-eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}
.hero:hover .hero-meta-item strong { color: #f3dcae; }
.hero:hover .hero-meta-item span { color: rgba(255,255,255,0.8); }

/* Meta / trust row */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 540px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-meta-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-meta-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Floor — scroll hint + slide controls */
.hero-floor {
  position: absolute;
  left: 0; right: 0;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(3rem, 6vw, 5rem) 0 calc(56px + clamp(2rem, 6vw, 5rem));
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s;
  padding: 0;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}
.hero-scroll-dot {
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: hero-scroll-run 2.4s ease-in-out infinite;
}
@keyframes hero-scroll-run {
  0%   { left: -8px;  opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 56px; opacity: 0; }
}

.hero-slide-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255,255,255,0.55);
}
.hero-slide-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.hero-slide-num span:first-child { color: var(--gold); }

.hero-slide-indicators {
  display: flex;
  gap: 0.5rem;
}
.indicator {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.35s, width 0.35s;
  padding: 0;
  border-radius: 2px;
}
.indicator:hover { background: rgba(255,255,255,0.5); }
.indicator.active {
  width: 56px;
  background: var(--gold);
}

/* ============================================
   HERO — Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { padding-right: clamp(2rem, 5vw, 4rem); }
}

@media (max-width: 768px) {
  .hero { padding: 6rem 0 7rem; min-height: auto; }
  .hero-side { display: none; }
  .hero-grid { padding: 0 clamp(1.25rem, 5vw, 2.5rem); }
  .hero-content { max-width: 100%; }
  .hero-eyebrow {
    font-size: 0.6rem;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.25rem;
  }
  .hero-eyebrow-sep { display: none; }
  .hero-sub { margin-bottom: 1.75rem; }
  .hero-actions { margin-bottom: 2rem; gap: 0.75rem; }
  .hero-btn { padding: 1.05rem 1.65rem; font-size: 0.74rem; min-height: 52px; letter-spacing: 0.16em; border-width: 2px; }
  .hero-btn:hover, .hero-btn:focus-visible { letter-spacing: 0.18em; }
  .hero-meta { gap: 1rem; padding-top: 1.5rem; flex-wrap: wrap; }
  .hero-meta-item strong { font-size: 1.3rem; }
  .hero-meta-item span { font-size: 0.62rem; }
  .hero-floor {
    padding: 0 1.25rem;
    bottom: 1.25rem;
  }
  .hero-scroll-label { display: none; }
}

@media (max-width: 480px) {
  .hero-meta-divider { display: none; }
  .hero-meta { gap: 1.5rem; }
  .hero-slide-num { display: none; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--noir);
  overflow: hidden;
  padding: var(--space-4) 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  padding: 0 1.5rem;
}

.marquee-track .dot { color: var(--gold); padding: 0; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--header-gap);
  max-width: var(--max-w-prose);
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--noir);
  letter-spacing: -0.01em;
}

.section-header h2 em { font-style: italic; color: var(--grey-600); }

/* ============================================
   COLLECTIONS
   ============================================ */
.collections {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 500px 360px;
  gap: var(--space-5);
  max-width: var(--max-w);
  margin: 0 auto;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.collection-card.large {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.collection-card.wide {
  grid-column: 2 / 4;
}

.card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.collection-card:hover .card-img { transform: scale(1.06); }

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(10,10,10,0.75));
  color: var(--white);
  transform: translateY(0.5rem);
  transition: transform 0.4s var(--ease-out);
}

.collection-card:hover .card-content { transform: translateY(0); }

.card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.card-content p {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.card-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.card-link:hover { gap: 1rem; }

.card-link span { transition: transform 0.3s; }
.card-link:hover span { transform: translateX(4px); }

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--white);
}

.product-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.35rem;
  min-height: 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.3s;
}

.filter-btn:hover { color: var(--noir); border-color: var(--grey-200); }

.filter-btn.active {
  color: var(--white);
  background: var(--noir);
  border-color: var(--noir);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-7) var(--space-5);
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-card { position: relative; }

.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--grey-100);
  margin-bottom: 1.25rem;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: opacity 0.5s var(--ease-out), transform 0.8s var(--ease-out);
}

.product-img.alt {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.product-card:hover .product-img { transform: scale(1.04); }
.product-card:hover .product-img:not(.alt) { opacity: 0; }
.product-card:hover .product-img.alt { opacity: 1; }

.product-badges {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--noir);
}

.badge.new { background: var(--noir); color: var(--white); }
.badge.sale { background: #c0392b; color: var(--white); }

.product-actions {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.product-card:hover .product-actions { transform: translateY(0); opacity: 1; }

.quick-add {
  flex: 1;
  padding: 0.75rem;
  background: var(--white);
  color: var(--noir);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.quick-add:hover { background: var(--noir); color: var(--white); }

.wishlist-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.wishlist-btn:hover { background: var(--noir); color: var(--white); transform: scale(1.1); }
.wishlist-btn.active { background: var(--noir); color: var(--white); }

.product-info { padding: 0 var(--space-1); }

.product-colors {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.color-swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: none;
  transition: transform 0.2s;
}

.color-swatch:hover { transform: scale(1.3); }

.product-info h4 {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-2);
  color: var(--grey-800);
  line-height: 1.35;
}
.product-info h4 a,
.kids-card-info h4 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.product-info h4 a:hover,
.kids-card-info h4 a:hover { opacity: 0.6; }

.product-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  letter-spacing: 0.01em;
}

.price-old {
  text-decoration: line-through;
  color: var(--grey-400);
  font-weight: 400;
}

.view-all-wrap {
  text-align: center;
  margin-top: var(--space-8);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--white);
  overflow: hidden;
}

.about-media {
  position: relative;
  background: var(--grey-100);
  min-height: 500px;
}

.about-img-main {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.about-img-accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 3/4;
  bottom: clamp(-4rem, -4vw, -2rem);
  right: clamp(-3rem, -3vw, -1rem);
  background-size: cover;
  background-position: center;
  box-shadow: -10px -10px 60px rgba(0,0,0,0.2);
  border: 4px solid var(--white);
}

.about-media .about-stat {
  position: absolute;
  top: var(--space-7);
  right: var(--space-6);
  background: var(--noir);
  color: var(--white);
  padding: var(--space-5) var(--space-6);
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.about-stat .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-content {
  padding: var(--section-pad-y) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--noir);
  letter-spacing: -0.01em;
}

.about-content h2 em { font-style: italic; color: var(--gold); }

.about-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--grey-600);
  max-width: 500px;
}

.about-stats {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  margin-top: var(--space-3);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.about-stat-item { text-align: left; }

.stat-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--noir);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-l {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
}

/* ============================================
   FEATURE STRIP
   ============================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--cream);
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  border-right: 1px solid var(--grey-200);
  transition: background 0.3s;
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--white); }

.feature-item svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-1);
}

.feature-item span {
  font-size: 0.76rem;
  color: var(--grey-600);
  line-height: 1.5;
}

/* ============================================
   LOOKBOOK
   ============================================ */
.lookbook {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--white);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px;
  gap: var(--space-4);
  max-width: var(--max-w);
  margin: 0 auto;
}

.look-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.look-item.tall { grid-row: span 2; }
.look-item.wide { grid-column: span 2; }

.look-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.look-item:hover .look-img { transform: scale(1.05); }

.look-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  transition: background 0.4s;
}

.look-item:hover .look-overlay { background: rgba(10,10,10,0.35); }

.look-overlay span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.look-item:hover .look-overlay span { opacity: 1; transform: translateY(0); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--noir);
  padding: var(--section-pad-y) var(--section-pad-x);
  text-align: center;
}

.newsletter-content { max-width: 560px; margin: 0 auto; }

.newsletter .section-tag { color: var(--gold); margin-bottom: var(--space-4); }

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-5);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.newsletter p {
  font-size: 0.95rem;
  color: rgba(248,246,242,0.7);
  line-height: 1.75;
  margin-bottom: var(--space-7);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: var(--space-2);
  max-width: 460px;
  margin: 0 auto var(--space-4);
}

.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  min-height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-note {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
}

.newsletter-success {
  display: none;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: var(--space-4);
  letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--grey-800);
  color: rgba(248,246,242,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--section-pad-x) clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(248,246,242,0.55);
  margin-bottom: var(--space-3);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover { color: var(--white); padding-left: var(--space-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) var(--section-pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom span { font-size: 0.74rem; opacity: 0.5; }

.footer-legal {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.74rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-legal a:hover { opacity: 1; }

.footer-payments {
  display: flex;
  gap: var(--space-3);
}

.footer-payments span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 1;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  background: var(--noir);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  z-index: 5000;
  transition: transform 0.5s var(--ease-out);
  white-space: nowrap;
  border-left: 3px solid var(--gold);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 400px;
  }
  .collection-card.large { grid-column: 1; grid-row: 1; }
  .collection-card.wide { grid-column: 1 / 3; grid-row: 3; }

  .about { grid-template-columns: 1fr; }
  .about-media { min-height: 500px; }
  .about-img-accent { display: none; }

  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }

  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   KIDS SECTION
   ============================================ */
.kids-section {
  padding: var(--section-pad-y) 0;
  background: #faf8f5;
  overflow: hidden;
}

/* INTRO SPLIT */
.kids-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto var(--section-gap);
  padding: 0 var(--section-pad-x);
}

.kids-intro-text .section-tag { margin-bottom: var(--space-4); }

.kids-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--noir);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.kids-intro-text h2 em { font-style: italic; color: var(--gold); }

.kids-intro-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey-600);
  max-width: 440px;
  margin-bottom: var(--space-6);
}

.kids-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.kids-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5a5a5a;
  background: white;
  border: 1px solid var(--grey-200);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

.kids-badge svg { width: 12px; height: 12px; fill: none; stroke: var(--gold); stroke-width: 2; }

.kids-cta { margin-top: 0.5rem; }

.kids-intro-img {
  position: relative;
}

.kids-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.kids-hero-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(13,13,13,0.75);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.kids-hero-img-small {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  bottom: -2rem;
  right: -2rem;
  border: 4px solid #faf8f5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* AGE FILTER TABS */
.kids-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto var(--header-gap);
  padding: 0 var(--section-pad-x);
}

.kids-filter-btn {
  padding: 0.7rem 1.5rem;
  min-height: 42px;
  border-radius: 100px;
  border: 1px solid var(--grey-200);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.04em;
}

.kids-filter-btn:hover {
  border-color: var(--noir);
  color: var(--noir);
}

.kids-filter-btn.active {
  background: var(--noir);
  border-color: var(--noir);
  color: var(--white);
}

/* KIDS PRODUCT GRID */
.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7) var(--space-6);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

/* KIDS CARD */
.kids-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.kids-card.hidden { display: none; }

.kids-card-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-100);
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: var(--space-4);
  cursor: pointer;
}

.kids-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: opacity 0.5s ease;
}

.kids-card-img.alt { opacity: 0; }

.kids-card-img-wrap:hover .kids-card-img:not(.alt) { opacity: 0; }
.kids-card-img-wrap:hover .kids-card-img.alt { opacity: 1; }

.kids-card-badges {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 2;
}

.kids-badge-pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--noir);
  color: var(--white);
  display: inline-block;
}

.kids-badge-pill.new { background: var(--gold); color: var(--noir); }
.kids-badge-pill.sale { background: #c0392b; }

.kids-age-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.88);
  color: #5a5a5a;
  backdrop-filter: blur(4px);
  display: inline-block;
}

.kids-card-actions {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  right: 0.875rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.kids-card-img-wrap:hover .kids-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.kids-card-info { padding: 0 var(--space-1); }
.kids-card-info h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--noir);
  margin: var(--space-2) 0;
  line-height: 1.35;
}

/* PROMISE STRIP */
.kids-promise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: var(--section-gap) var(--section-pad-x) 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2 * var(--section-pad-x));
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}

.kp-item {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  border-right: 1px solid var(--grey-200);
}

.kp-item:last-child { border-right: none; }

.kp-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}

.kp-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.8; }
.kp-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--noir); margin-bottom: var(--space-2); }
.kp-item p { font-size: 0.76rem; color: var(--grey-600); line-height: 1.6; }

@media (max-width: 768px) {
  .nav { padding: 1rem var(--section-pad-x); }
  .nav.scrolled { padding: 0.75rem var(--section-pad-x); }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); }
  .kids-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
    gap: var(--space-3);
  }
  .look-item.tall { grid-row: span 1; }
  .look-item.wide { grid-column: span 2; }

  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-4);
  }
  .collections-grid .collection-card { min-height: 340px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-payments { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-7); padding-block: var(--space-7) var(--space-6); }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; justify-content: center; width: 100%; }

  .newsletter-form { flex-direction: column; gap: var(--space-2); }
  .newsletter-form input { text-align: center; }
  .newsletter .btn-primary { width: 100%; }

  .kids-intro { grid-template-columns: 1fr; gap: var(--space-7); }
  .kids-hero-img-small { display: none; }
  .kids-promise { grid-template-columns: repeat(2, 1fr); }
  .kp-item:nth-child(2) { border-right: none; }
  .kp-item:nth-child(3) { border-top: 1px solid var(--grey-200); }
  .kp-item:nth-child(4) { border-top: 1px solid var(--grey-200); border-right: none; }

  .about-stats { gap: var(--space-5); flex-wrap: wrap; }
  .about-stat-item { flex: 1 1 calc(33% - var(--space-5)); min-width: 90px; }
  .about-media .about-stat { padding: var(--space-4) var(--space-5); top: var(--space-5); right: var(--space-5); }

  .section-header { margin-bottom: var(--space-7); }
  .view-all-wrap { margin-top: var(--space-7); }
}

@media (max-width: 480px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }

  .products-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .look-item.wide { grid-column: span 1; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--grey-200); }
  .feature-item:last-child { border-bottom: none; }
  .footer-links { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1.5rem; }

  .kids-grid { grid-template-columns: 1fr; }
  .kids-promise { grid-template-columns: 1fr; }
  .kp-item { border-right: none; border-bottom: 1px solid var(--grey-200); }
  .kp-item:last-child { border-bottom: none; }
}

/* ============================================
   SITEWIDE POLISH PASS
   Consistent focus states, hover feedback, tap
   targets, typography, and motion.
   ============================================ */

/* Global focus ring for accessibility */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-outline:focus-visible { outline-offset: 3px; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-btn-primary::after { animation: none !important; }
  .hero-bg-img { transition: opacity 0.01ms !important; }
}

/* Form inputs — consistent focus rings across the site */
input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--noir) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.25);
}

/* Link cursor hint */
a { cursor: pointer; }

/* Any element that looks clickable should show a pointer */
button:not(:disabled),
[role="button"],
[onclick] { cursor: pointer; }

/* ── Product cards — softer lift on hover ── */
.product-card {
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-4px);
}

/* Quick-add button — consistent tap target + clearer feedback */
.quick-add {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.wishlist-btn {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.wishlist-btn:hover { transform: scale(1.1); }

/* Cart drawer — remove link with proper tap target */
.cart-item-remove {
  font-size: 0.8rem !important;
  padding: 0.35rem 0.6rem;
  display: inline-block;
  min-height: 32px;
  line-height: 1.5;
}

/* Newsletter form — strong, styled inputs */
.newsletter-form input {
  min-height: 48px;
  padding: 0.95rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: border-color 0.25s, background 0.25s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.25);
}
.newsletter-form .btn-primary {
  min-height: 48px;
  padding: 0.95rem 1.75rem;
}

/* Collection card hover — consistent lift */
.collection-card {
  transition: transform 0.4s var(--ease-out);
}
.collection-card:hover { transform: translateY(-4px); }

/* Section tag — consistent spacing */
.section-tag {
  font-weight: 500;
  letter-spacing: 0.2em;
}

/* Lookbook hover — polish */
.look-item { transition: transform 0.4s var(--ease-out); }
.look-item:hover { transform: translateY(-3px); }

/* Kids card — consistent tap target for Add to Bag */
.kids-card .quick-add {
  min-height: 44px;
  font-weight: 600;
}

/* ── Icon util buttons in header — larger tap target ── */
.util-btn {
  min-width: 40px;
  min-height: 40px;
  transition: color 0.25s, transform 0.2s;
}
.util-btn:hover { transform: scale(1.1); }

/* Announcement bar arrows — clearer hover */
.ann-arrow,
.ann-close {
  min-width: 32px;
  min-height: 32px;
  transition: opacity 0.25s, transform 0.2s;
}
.ann-arrow:hover,
.ann-close:hover { transform: scale(1.15); }

/* ── Consistent Badge Styling ── */
.badge {
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.7rem;
}

/* ── Toast notification — stronger visibility ── */
.toast {
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 1rem 1.75rem;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.35);
  border-radius: 2px;
}

/* ── Mobile tap-target floor for all buttons ── */
@media (max-width: 768px) {
  .btn-primary,
  .btn-ghost,
  .btn-outline {
    min-height: 48px;
    padding: 0.95rem 1.75rem;
    font-size: 0.74rem;
  }
  button, .util-btn {
    min-height: 44px;
  }
  .quick-add,
  .wishlist-btn {
    min-height: 44px;
  }
}
