/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 4px 0;
  font-size: 14px;
}

.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════
   VELOUR WOMAN — 2026 Editorial Redesign
   Quiet Luxury · Asymmetric Grid · Scroll-Driven Animations
   Inspired by The Row, Toteme, Jacquemus
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
  /* 60% dominant */
  --cream:      #F7F3EE;
  --ivory:      #FAF7F2;
  /* 30% secondary */
  --warm-bg:    #EFEBE5;
  --stone:      #9E8E82;
  --taupe:      #C4B8AD;
  --parchment:  #E0D8CF;
  /* 10% accent */
  --terra:      #B5673F;
  /* Text */
  --ink:        #1A1614;
  --ink-soft:   #3D3430;
  --ink-faint:  #7A6E69;
  /* Lines */
  --border:     1px solid #D8D0C8;
  --border-dk:  1px solid #C0B8B0;
  /* Typography */
  --font-s:     'Cormorant Garamond', serif;
  --font-sans:  'DM Sans', sans-serif;
  /* Easing */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NOISE OVERLAY ─────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 243, 238, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: var(--border);
}
.header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.brand-logo {
  font-family: var(--font-s);
  font-size: 1.1875rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  flex-shrink: 0;
}
.primary-nav {
  display: flex;
  gap: 2.25rem;
  flex: 1;
}
.primary-nav a {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; }

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  padding: 4px;
  transition: color 0.3s var(--ease);
}
.icon-btn:hover { color: var(--ink); }

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger-btn span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
}

/* ─── MOBILE OVERLAY ────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--ink);
  padding: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  font-family: var(--font-s);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  border-bottom: var(--border);
  padding: 0.75rem 0;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--stone); }
.mobile-note {
  position: absolute;
  bottom: 3rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
@supports (animation-timeline: view()) {
  .reveal-section {
    animation: reveal-up 0.85s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 72px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  max-width: 90rem;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  width: 100%;
  gap: 3rem;
}
.hero-season {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}
.hero-heading {
  font-family: var(--font-s);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}
.hero-l1 {
  font-size: clamp(4rem, 9vw, 8.5rem);
  letter-spacing: -0.01em;
}
.hero-l2 {
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--stone);
  align-self: flex-end;
  margin-right: -0.5rem;
}

@supports (animation-timeline: scroll()) {
  .hero-l2 {
    animation: hero-drift linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 360px;
  }
}
@keyframes hero-drift {
  to { transform: translateX(-2.5rem); }
}

.hero-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 22rem;
}
.btn-editorial {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-editorial:hover { color: var(--stone); border-color: var(--stone); }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #D5CEC7 0%, #C0B4AC 45%, #A89890 100%);
  position: relative;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--ivory);
  border: var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tag-primary {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.tag-secondary {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
  opacity: 0.45;
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: var(--ink);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(0.55); }
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ─── PHILOSOPHY STRIP ──────────────────────────────────── */
.philosophy-strip {
  padding: 6rem 2.5rem;
  text-align: center;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--ivory);
}
.philosophy-strip blockquote {
  font-family: var(--font-s);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52rem;
  margin: 0 auto 1.5rem;
}
.phil-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ─── SECTION HEADER ────────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
.section-title {
  font-family: var(--font-s);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.section-link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.section-link:hover { color: var(--ink); border-color: var(--ink); }
.season-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-faint);
  max-width: 28rem;
  align-self: flex-end;
}

/* ─── COLLECTIONS ───────────────────────────────────────── */
.collections-section { padding: 7rem 0; }
.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 360px 240px;
  gap: 3px;
  background: var(--parchment);
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
.col-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.col-tall  { grid-column: 1; grid-row: 1 / 3; }
.col-short { grid-column: 2; grid-row: 1; }
.col-wide  { grid-column: 2; grid-row: 2; }

.col-img {
  position: absolute;
  inset: 0;
  transition: transform 0.75s var(--ease);
}
.col-card:hover .col-img { transform: scale(1.04); }
.col-img-1 { background: linear-gradient(160deg, #7A6A60 0%, #4A3834 100%); }
.col-img-2 { background: linear-gradient(160deg, #9CAC8E 0%, #6A7A5E 100%); }
.col-img-3 { background: linear-gradient(155deg, #C4A882 0%, #8A7050 100%); }

.col-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15,10,8,0.65) 0%, transparent 100%);
  color: var(--ivory);
}
.col-caption h3 {
  font-family: var(--font-s);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.col-caption h3 em { font-style: italic; }
.col-caption p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.col-cta {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.9);
  border-bottom: 1px solid rgba(250,247,242,0.35);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.col-cta:hover { border-color: rgba(250,247,242,0.9); }

/* ─── FEATURED EDITORIAL ────────────────────────────────── */
.featured-section {
  padding: 7rem 0;
  background: var(--ivory);
  border-top: var(--border);
  border-bottom: var(--border);
}
.featured-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.featured-visual { position: relative; }
.feat-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #DDD4C8 0%, #C5BAB0 50%, #B0A498 100%);
}
.feat-img-accent {
  position: absolute;
  width: 32%;
  aspect-ratio: 1;
  background: var(--terra);
  opacity: 0.1;
  bottom: -1.75rem;
  right: -1.75rem;
}
.feat-kicker {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.feat-name {
  font-family: var(--font-s);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.feat-name em { font-style: italic; color: var(--stone); }
.feat-material {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: var(--border);
}
.feat-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}
.feat-price {
  font-family: var(--font-s);
  font-size: 1.625rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.feat-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--ink-soft); }
.btn-save {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--stone);
  transition: color 0.3s;
}
.btn-save:hover { color: var(--ink); }
.btn-save.wished { color: var(--terra); }
.btn-save.wished svg { fill: var(--terra); stroke: var(--terra); }

/* ─── PRODUCT GRID ──────────────────────────────────────── */
.products-section { padding: 7rem 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 3px;
  background: var(--parchment);
  max-width: 90rem;
  margin: 0 auto 3rem;
  padding-inline: 2.5rem;
}
/* Card 1: tall (spans 2 rows) */
.product-grid .prod-card:nth-child(1) { grid-row: 1 / 3; }
/* Card 4: wide (spans 2 cols) */
.product-grid .prod-card:nth-child(4) { grid-column: 2 / 4; }
/* Card 5: wide (spans 2 cols) */
.product-grid .prod-card:nth-child(5) { grid-column: 1 / 3; }

.prod-card {
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.prod-img-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.prod-img {
  width: 100%;
  height: 100%;
  transition: transform 0.75s var(--ease);
}
.prod-card:hover .prod-img { transform: scale(1.04); }

.prod-bg-1 { background: linear-gradient(150deg, #D2CBC4, #B0A89E); }
.prod-bg-2 { background: linear-gradient(150deg, #C8CC9E, #A2A876); }
.prod-bg-3 { background: linear-gradient(150deg, #EDE6DC, #D8D0C4); }
.prod-bg-4 { background: linear-gradient(150deg, #CAA87E, #9A7C56); }
.prod-bg-5 { background: linear-gradient(150deg, #3C3330, #1C1614); }
.prod-bg-6 { background: linear-gradient(150deg, #F0D8D8, #DCC0BF); }

.prod-wish {
  position: absolute;
  top: 0.875rem; right: 0.875rem;
  width: 36px; height: 36px;
  background: rgba(250, 247, 242, 0.88);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone);
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}
.prod-card:hover .prod-wish { opacity: 1; }
.prod-wish:hover { color: var(--ink); }
.prod-wish.wished { opacity: 1; color: var(--terra); }
.prod-wish.wished svg { fill: var(--terra); stroke: var(--terra); }

.prod-info {
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: var(--border);
}
.prod-info h3 {
  font-family: var(--font-s);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.prod-info h3 em { font-style: italic; color: var(--stone); }
.prod-price {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--stone);
}
.grid-cta {
  text-align: center;
  padding-inline: 2.5rem;
}
.btn-outline {
  display: inline-block;
  border: var(--border-dk);
  padding: 0.9rem 3rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ─── BRAND STORY ───────────────────────────────────────── */
.story-section {
  padding: 7rem 0;
  background: var(--warm-bg);
  border-top: var(--border);
}
.story-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story-kicker {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.story-heading {
  font-family: var(--font-s);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.story-heading em { font-style: italic; color: var(--stone); }
.story-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.82;
  margin-bottom: 1.25rem;
}
.story-body p:last-child { margin-bottom: 2rem; }
.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #8E9C8C 0%, #5E745E 100%);
  margin-bottom: 2rem;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--parchment);
}
.stat {
  background: var(--warm-bg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-n {
  font-family: var(--font-s);
  font-size: 1.625rem;
  font-weight: 300;
}
.stat-l {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ─── MATERIAL TICKER ───────────────────────────────────── */
.material-ticker {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--ivory);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
}
.ticker-label {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 2.5rem;
  border-right: var(--border);
  margin-right: 2.5rem;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track span {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.ticker-track .sep { font-style: normal; color: var(--taupe); }

/* ─── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section {
  padding: 7rem 0;
  background: var(--ink);
  color: var(--cream);
}
.newsletter-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nl-text h2 {
  font-family: var(--font-s);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ivory);
}
.nl-text p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.75;
}
.nl-form { display: flex; flex-direction: column; gap: 1rem; }
.nl-row {
  display: flex;
  border: 1px solid rgba(250, 247, 242, 0.22);
}
.nl-row input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
}
.nl-row input::placeholder { color: rgba(250,247,242,0.3); }
.nl-row button {
  background: var(--cream);
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.3s;
}
.nl-row button:hover { background: var(--ivory); }
.nl-row button:disabled { opacity: 0.6; cursor: default; }
.nl-note {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(250,247,242,0.28);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(250,247,242,0.07);
}
.footer-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 5rem 2.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-s);
  font-size: 1.1875rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.825rem;
  font-weight: 300;
  color: rgba(250,247,242,0.38);
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.38);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,247,242,0.62);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(250,247,242,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom > p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250,247,242,0.28);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250,247,242,0.28);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(250,247,242,0.65); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .collections-grid { grid-template-rows: 300px 220px; }
  .featured-inner { gap: 3rem; }
  .story-inner { gap: 3rem; }
  .newsletter-inner { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger-btn { display: flex; }
  .icon-btn:first-child { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-right { display: none; }
  .hero-l2 { align-self: flex-start; margin-right: 0; }

  .section-header { padding-inline: 1.5rem; }
  .season-sub { max-width: 100%; }

  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 200px;
    padding-inline: 1.5rem;
  }
  .col-tall  { grid-column: 1; grid-row: 1; }
  .col-short { grid-column: 1; grid-row: 2; }
  .col-wide  { grid-column: 1; grid-row: 3; }

  .featured-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 1.5rem; }
  .feat-img-accent { display: none; }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
    padding-inline: 1.5rem;
  }
  .product-grid .prod-card:nth-child(1) { grid-row: 1; }
  .product-grid .prod-card:nth-child(4) { grid-column: 1 / 3; }
  .product-grid .prod-card:nth-child(5) { grid-column: 1; }
  .grid-cta { padding-inline: 1.5rem; }

  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 1.5rem; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.5rem 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; padding-inline: 1.5rem; text-align: center; }
  .ticker-inner { padding-inline: 1.5rem; }
}

@media (max-width: 480px) {
  .philosophy-strip { padding: 4rem 1.5rem; }
  .philosophy-strip blockquote { font-size: 1.125rem; }
  .br-desk { display: none; }

  .hero-l1, .hero-l2 { font-size: clamp(3rem, 15vw, 5rem); }

  .product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .product-grid .prod-card:nth-child(4) { grid-column: 1; }
  .product-grid .prod-card:nth-child(5) { grid-column: 1; }

  .nl-row { flex-direction: column; }
  .nl-row input { border-bottom: 1px solid rgba(250,247,242,0.15); }
  .nl-row button { text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 0.75rem; align-items: center; }
}

/* ─── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .ticker-track { animation: none; }
  .scroll-line { animation: none; }
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35); z-index: 80;
  transition: transform 0.2s, opacity 0.3s; opacity: 0; color: #fff;
  pointer-events: none;
}
.whatsapp-fab.visible { opacity: 1; pointer-events: auto; }
.whatsapp-fab:hover { transform: scale(1.08); }
