/* ═══════════════════════════════════════════════════════
   STREESTYLE — Premium Women's Fashion
   styles.css — Full rebuild
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────── */
:root {
  /* ── Backgrounds (dark teal-tinted blacks) ── */
  --black:       #050D0D;
  --black-soft:  #091212;
  --black-mid:   #111C1C;
  --black-card:  #0D1818;

  /* ── Primary accent: teal palette (from logo dress) ── */
  --gold:        #2BA8A0;   /* main teal  */
  --gold-light:  #4ECDC4;   /* light teal */
  --gold-bright: #72DDD8;   /* bright teal highlight */
  --gold-dark:   #1A7A75;   /* dark teal  */
  --gold-dim:    rgba(43,168,160,0.12);
  --gold-glow:   rgba(43,168,160,0.06);

  /* ── Neutral lights (teal-tinted ivory) ── */
  --ivory:       #F4FAF9;
  --ivory-soft:  #EAF3F2;
  --beige:       #DFF0EE;
  --beige-dark:  #C2DDD9;

  /* ── Muted text ── */
  --muted:       #5A7878;
  --muted-light: #7A9898;

  /* ── Silver (from logo arc) ── */
  --silver:      #94B0B0;
  --silver-light:#C8D8D8;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --max-w:       1180px;
  --nav-h:       72px;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease2:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────
   RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(36px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left   { opacity: 0; transform: translateX(-48px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-right  { opacity: 0; transform: translateX(48px);  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ─────────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 1.6rem;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

/* Buttons */
.btn-gold {
  display: inline-block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem 2.4rem;
  min-height: 52px;
  transition: background 0.35s var(--ease2), box-shadow 0.35s var(--ease2), transform 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(43,168,160,0.35); transform: translateY(-1px); }
.btn-gold:hover::after { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1.1rem 2.4rem;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease2), box-shadow 0.35s;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease2);
}
.btn-outline:hover { color: var(--black); box-shadow: 0 0 24px rgba(43,168,160,0.2); }
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline > * { position: relative; z-index: 1; }

.btn-outline--dark {
  color: var(--gold);
  border-color: rgba(43,168,160,0.5);
}
.btn-outline--dark:hover { color: var(--black); }

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(43,168,160,0.3);
  padding: 0.5rem 1.2rem;
  background: rgba(43,168,160,0.06);
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(43,168,160,0.4); }
  50%      { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(43,168,160,0); }
}

/* ─────────────────────────────────────
   HEADER / NAV
───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s var(--ease2), border-color 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(43,168,160,0.12);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.logo-img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease), filter 0.4s;
  filter: drop-shadow(0 0 6px rgba(43,168,160,0.22));
}
.logo-img--footer {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 8px rgba(43,168,160,0.3));
}
.nav-logo:hover .logo-img,
.footer-logo:hover .logo-img {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 0 10px rgba(43,168,160,0.5));
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  transition: color 0.3s;
}
.nav-logo:hover .logo-text { color: var(--gold-light); }

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease2);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.nav-cta-btn {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.4rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-cta-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(43,168,160,0.3);
}

/* Hamburger */
.hamburger {
  width: 34px;
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--gold);
  transition: transform 0.35s var(--ease2), opacity 0.25s, width 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(43,168,160,0.12);
  border-bottom: 1px solid rgba(43,168,160,0.12);
  padding: 2rem 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease2), transform 0.3s var(--ease2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
.mobile-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(43,168,160,0.1);
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.mobile-cta:hover { background: var(--gold-light); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2.5rem) 1.25rem 5rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(43,168,160,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(43,168,160,0.04) 0%, transparent 70%);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,168,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,168,160,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero-badge {
  margin-bottom: 2rem;
  /* Ensure badge wraps gracefully on small screens */
  text-align: center;
  max-width: 90vw;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.58rem;
}

/* Hero entrance elements */
.hero-eyebrow,
.hero-headline,
.hero-sub,
.hero-ctas,
.hero-urgency,
.hero-badge {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero-eyebrow.on, .hero-headline.on, .hero-sub.on,
.hero-ctas.on, .hero-urgency.on, .hero-badge.on {
  opacity: 1; transform: translateY(0);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-light) 50%, var(--ivory) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 5s linear infinite;
  animation-play-state: paused;
}
.hero-headline.on { animation-play-state: running; }
.hero-headline em { font-style: italic; font-weight: 600; }

@keyframes heroShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(249,246,240,0.65);
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  width: 100%;
  max-width: 360px;
}

.hero-urgency {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: rgba(249,246,240,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.urgency-dot { color: var(--gold); font-size: 0.65rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: scrollBob 2.8s ease-in-out infinite;
  opacity: 0.4;
}
.scroll-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.scroll-line-v { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBob {
  0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.6; transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────
   TRUST STRIP
───────────────────────────────────── */
.trust-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(43,168,160,0.12);
  border-bottom: 1px solid rgba(43,168,160,0.12);
  padding: 0;
  overflow: hidden;
  /* mask fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: trustScroll 22s linear infinite;
  padding: 1.3rem 0;
}
/* duplicate items for seamless loop — handled in HTML via JS or CSS trick:
   we repeat the strip visually using CSS animation wide enough */
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.6);
  white-space: nowrap;
  padding: 0 1.75rem;
  transition: color 0.3s;
}
.trust-item:hover { color: var(--gold); }
.trust-icon { color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }
.trust-divider { color: rgba(43,168,160,0.2); font-size: 0.75rem; flex-shrink: 0; }

/* ─────────────────────────────────────
   STORY
───────────────────────────────────── */
.story {
  background: var(--ivory);
  color: var(--black);
  padding: 4.5rem 1.25rem;
}
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text .section-eyebrow { color: var(--gold-dark); }
.story-text .gold-rule { background: linear-gradient(to right, transparent, var(--gold-dark), transparent); }

.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.story-para {
  font-size: 0.95rem;
  font-weight: 300;
  color: #3A3030;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.story-para em { font-style: italic; color: var(--black); font-weight: 400; }

.founder-quote {
  margin-top: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  /* beige-dark is now teal-tinted so this automatically looks on-brand */
}
.founder-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.founder-quote cite {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* Story Visual */
.story-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.story-visual-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: var(--black);
  position: relative;
}
.story-visual-inner {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(43,168,160,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.visual-ornament {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.visual-ornament.top-left    { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.visual-ornament.top-right   { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.visual-ornament.bottom-left { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.visual-ornament.bottom-right{ bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.visual-content { text-align: center; }
.visual-script {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 4s linear infinite;
}
.visual-meaning {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(43,168,160,0.6);
  line-height: 2;
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--black);
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 340px;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-pct { font-size: 1.2rem; }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.45);
}
.stat-divider { width: 1px; height: 36px; background: rgba(43,168,160,0.2); flex-shrink: 0; }

/* ─────────────────────────────────────
   COLLECTION
───────────────────────────────────── */
.collection {
  background: var(--black-soft);
  padding: 4.5rem 1.25rem;
}
.collection-inner { max-width: var(--max-w); margin: 0 auto; }

.collection-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.collection-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted-light);
  letter-spacing: 0.06em;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.coll-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
/* Default lift — per-card colour glows above override this */
.coll-card:hover {
  transform: translateY(-8px);
}

.coll-card-visual { position: relative; height: 220px; overflow: hidden; }
.coll-card-visual--featured { height: 240px; }

/* Base gradient layer */
.coll-gradient {
  position: absolute; inset: 0;
  filter: blur(22px);
  transform: scale(1.14);
  transition: transform 0.7s var(--ease);
}
.coll-card:hover .coll-gradient { transform: scale(1.26); }

/* Fabric stripe texture overlay — on every card */
.coll-gradient::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.10) 0px,
    rgba(255,255,255,0.10) 1px,
    transparent 1px,
    transparent 7px
  );
  pointer-events: none;
}

/* ── INDIAN ELEGANCE — warm rose-crimson + zari gold ── */
.coll-gradient--indian {
  background:
    radial-gradient(ellipse at 25% 25%, #C83828 0%, #902010 35%, #4A0E08 70%, #180402 100%),
    radial-gradient(ellipse at 72% 72%, #D89020 0%, #A06010 45%, transparent 100%);
  background-blend-mode: screen;
}
.coll-card:has(.coll-gradient--indian):hover {
  box-shadow: 0 24px 60px rgba(200,56,40,0.22), 0 0 0 1px rgba(216,144,32,0.30);
  border-color: rgba(216,144,32,0.30);
}

/* ── WESTERN LUXE — royal sapphire + periwinkle ── */
.coll-gradient--western {
  background:
    radial-gradient(ellipse at 35% 30%, #2848C0 0%, #1A2880 40%, #070E2C 100%),
    radial-gradient(ellipse at 68% 68%, #5858D0 0%, #3030A8 50%, transparent 100%);
  background-blend-mode: screen;
}
.coll-card:has(.coll-gradient--western):hover {
  box-shadow: 0 24px 60px rgba(40,72,192,0.22), 0 0 0 1px rgba(88,88,208,0.30);
  border-color: rgba(88,88,208,0.30);
}

/* ── FUSION ROYALTY — vibrant plum + peacock teal ── */
.coll-gradient--fusion {
  background:
    radial-gradient(ellipse at 30% 28%, #9010B0 0%, #5A0870 42%, #1C0222 100%),
    radial-gradient(ellipse at 70% 70%, #38C8C0 0%, #1E9090 48%, transparent 100%);
  background-blend-mode: screen;
}
.coll-card:has(.coll-gradient--fusion):hover {
  box-shadow: 0 24px 60px rgba(144,16,176,0.22), 0 0 0 1px rgba(56,200,192,0.28);
  border-color: rgba(56,200,192,0.28);
}

.coll-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.coll-card:hover .coll-overlay { background: rgba(8,8,8,0.35); }

.coming-soon-badge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.9);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.55rem 1.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.3);
}

/* Card corner accents */
.coll-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: rgba(255,255,255,0.2);
  border-style: solid;
}

/* Indian — gold corners */
.coll-card:has(.coll-gradient--indian) .coll-corner { border-color: rgba(196,122,0,0.45); }
/* Western — indigo corners */
.coll-card:has(.coll-gradient--western) .coll-corner { border-color: rgba(80,80,180,0.45); }
/* Fusion — teal corners */
.coll-card:has(.coll-gradient--fusion) .coll-corner  { border-color: rgba(43,168,160,0.45); }

/* Indian badge accent */
.coll-card:has(.coll-gradient--indian) .coming-soon-badge { border-color: rgba(196,122,0,0.4); }
/* Western badge accent */
.coll-card:has(.coll-gradient--western) .coming-soon-badge { border-color: rgba(80,80,180,0.4); }
/* Fusion badge accent */
.coll-card:has(.coll-gradient--fusion) .coming-soon-badge  { border-color: rgba(43,168,160,0.4); }
.coll-corner--tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.coll-corner--br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.coll-card-body { padding: 1.6rem; }
/* Per-card tag colours */
.coll-card:has(.coll-gradient--indian) .coll-tag  { color: #C47A00; }
.coll-card:has(.coll-gradient--western) .coll-tag { color: #7070CC; }
.coll-card:has(.coll-gradient--fusion) .coll-tag  { color: var(--gold); }

.coll-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.coll-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.65rem;
}
.coll-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.coll-cta {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(43,168,160,0.3);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}
.coll-card:hover .coll-cta { border-color: var(--gold); }

.collection-footer { text-align: center; }
.coll-footer-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────
   WHY STREESTYLE
───────────────────────────────────── */
.why {
  background: var(--ivory);
  color: var(--black);
  padding: 4.5rem 1.25rem;
}
.why-inner { max-width: var(--max-w); margin: 0 auto; }
.why .section-eyebrow { color: var(--gold-dark); }
.why .gold-rule { background: linear-gradient(to right, transparent, var(--gold-dark), transparent); }

.why-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--black);
  border: 1px solid rgba(43,168,160,0.12);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(43,168,160,0.2);
  border-color: rgba(43,168,160,0.2);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  transition: transform 0.4s var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.2) rotate(15deg); }

.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.why-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ─────────────────────────────────────
   WAITLIST
───────────────────────────────────── */
.waitlist {
  /* Re-theme all teal accents to warm gold inside this section */
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-bright: #F5D980;
  --gold-dark:   #A0832A;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.06);

  position: relative;
  background: #07060A;
  padding: 5rem 1.25rem;
  overflow: hidden;
}
.waitlist-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%,   rgba(201,168,76,0.09) 0%, transparent 68%),
    radial-gradient(ellipse 60% 45% at 50% 100%,  rgba(201,168,76,0.06) 0%, transparent 68%),
    radial-gradient(ellipse 40% 30% at 20% 50%,   rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 50%,   rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.waitlist-corners { position: absolute; inset: 3rem; pointer-events: none; }
.wl-corner {
  position: absolute;
  width: 50px; height: 50px;
  border-color: rgba(201,168,76,0.22);
  border-style: solid;
}
.wl-corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.wl-corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.wl-corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.wl-corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.waitlist-inner {
  position: relative; z-index: 1;
  max-width: 660px; margin: 0 auto; text-align: center;
}

.waitlist-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.waitlist-heading em { font-style: italic; color: var(--gold); font-weight: 400; }

.waitlist-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(249,246,240,0.58);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.waitlist-incentive {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
}
.incentive-star { color: var(--gold); font-size: 0.65rem; }

.wl-benefits {
  text-align: left;
  display: inline-block;
  margin-bottom: 2.75rem;
}
.wl-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(249,246,240,0.72);
  margin-bottom: 0.85rem;
  line-height: 1.65;
}
.benefit-dot {
  width: 5px; height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.48rem;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* Form */
.form-wrap { width: 100%; }
.wl-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.form-field { margin-bottom: 1.75rem; text-align: left; }
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(249,246,240,0.18);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.35s;
  min-height: 52px;
}
.form-input::placeholder { color: rgba(249,246,240,0.22); }
.form-input:focus { border-bottom-color: var(--gold); }

.btn-waitlist {
  width: 100%;
  padding: 1.15rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  transition: background 0.35s, box-shadow 0.35s, transform 0.2s;
  min-height: 56px;
}
.btn-waitlist:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 36px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}
.btn-waitlist:active { transform: translateY(0); background: var(--gold-dark); }

.form-note {
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(249,246,240,0.3);
  letter-spacing: 0.03em;
  text-align: center;
}

/* Success */
.form-success {
  padding: 3rem 2rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.05);
  text-align: center;
  animation: fadeUp 0.7s var(--ease) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-star {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  animation: rotateStar 8s linear infinite;
}
@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.success-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.success-msg {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(249,246,240,0.65);
  line-height: 1.8;
}

/* ─────────────────────────────────────
   INSTAGRAM
───────────────────────────────────── */
.instagram {
  background: var(--black-soft);
  padding: 4.5rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(43,168,160,0.08);
}
.instagram-inner { max-width: var(--max-w); margin: 0 auto; }
.instagram-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.instagram-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.ig-cell--1 { grid-row: span 2; }

.ig-gradient {
  position: absolute; inset: 0;
  transition: transform 0.5s var(--ease), filter 0.5s;
  filter: blur(0px);
}
.ig-cell:hover .ig-gradient { transform: scale(1.08); filter: blur(2px); }

/* Instagram grid — decent royal feminine palette */
.ig-g1 { background: linear-gradient(145deg, #280820 0%, #8A1060 52%, #C8187A 100%); }   /* Rani Pink — queen's fuchsia */
.ig-g2 { background: linear-gradient(145deg, #200410 0%, #6C0C38 52%, #A81458 100%); }   /* Deep Berry / Rose Wine */
.ig-g3 { background: linear-gradient(145deg, #100818 0%, #481060 52%, #7818A0 100%); }   /* Royal Amethyst / Violet */
.ig-g4 { background: linear-gradient(145deg, #1C0C0A 0%, #6E2C18 50%, #B85828 100%); }   /* Antique Rose Gold */
.ig-g5 { background: linear-gradient(145deg, #181006 0%, #604010 50%, #B07820 100%); }   /* Champagne / Warm Gold */
.ig-g6 { background: linear-gradient(145deg, #051A18 0%, #104840 44%, #1A9088 100%); }   /* Peacock Teal — brand */

.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  color: rgba(43,168,160,0.7);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.ig-cell:hover .ig-overlay { opacity: 1; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(43,168,160,0.15);
}
.footer-top { padding: 3.5rem 1.25rem 2rem; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.footer-bio {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted-light);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-social-link svg { flex-shrink: 0; }

.footer-newsletter-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-email-input {
  width: 100%;
  background: var(--black-mid);
  border: 1px solid rgba(43,168,160,0.15);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
  min-height: 48px;
}
.footer-email-input::placeholder { color: rgba(249,246,240,0.25); }
.footer-email-input:focus { border-color: var(--gold); }
.footer-form-btn {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
  min-height: 44px;
}
.footer-form-btn:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(43,168,160,0.08);
  padding: 1.5rem;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer-copy, .footer-legal {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────
   UTILITIES
───────────────────────────────────── */
.br-desktop { display: none; }

/* Pause marquee on hover / reduced motion */
.trust-strip:hover .trust-inner { animation-play-state: paused; }

/* ─────────────────────────────────────
   MOBILE ANIMATIONS  < 768px
   Reduce translate distances so elements
   don't clip on narrow viewports and
   feel snappier on touch devices
───────────────────────────────────── */
@media (max-width: 767px) {
  /* Tighter reveal offsets — 48px → 22px horizontal, 36px → 20px vertical */
  .reveal        { transform: translateY(20px); transition-duration: 0.7s; }
  .reveal-left   { transform: translateX(-22px); transition-duration: 0.7s; }
  .reveal-right  { transform: translateX(22px);  transition-duration: 0.7s; }

  /* Hero entrance: smaller initial offset, slightly faster */
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .hero-urgency,
  .hero-badge { transform: translateY(16px); transition-duration: 0.75s; }

  /* Touch-active states for cards and buttons */
  .coll-card:active    { transform: translateY(-4px); }
  .btn-gold:active     { opacity: 0.85; }
  .btn-outline:active  { background: rgba(43,168,160,0.12); }
  .why-card:active     { transform: translateY(-3px); }
}

/* ─────────────────────────────────────
   MOBILE FINE-TUNE  < 400px
───────────────────────────────────── */
@media (max-width: 399px) {
  .hero-headline { font-size: 2rem; line-height: 1.1; }
  .waitlist-heading { font-size: 2rem; }
  .hero { padding: calc(var(--nav-h) + 2rem) 1rem 4.5rem; }
  .hero-badge { font-size: 0.52rem; padding: 0.45rem 0.9rem; }
  .story { padding: 4rem 1rem; }
  .collection { padding: 4rem 1rem; }
  .why { padding: 4rem 1rem; }
  .waitlist { padding: 5rem 1rem; }
  .instagram { padding: 4rem 1rem; }
  .waitlist-corners { inset: 1rem; }
  .wl-corner { width: 30px; height: 30px; }
}

/* ─────────────────────────────────────
   TABLET ≥ 640px
───────────────────────────────────── */
@media (min-width: 640px) {
  /* Trust strip — stop marquee, show inline on wider screens */
  .trust-inner {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.4rem 1.5rem;
    gap: 0.6rem 0.4rem;
  }
  .trust-divider { display: block; }

  /* Hero */
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 480px;
  }
  .btn-gold, .btn-outline { min-width: 200px; }

  /* Collection 2-col */
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .coll-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Footer form */
  .footer-form { flex-direction: row; }
  .footer-email-input { flex: 1; }
  .footer-form-btn { white-space: nowrap; }

  /* Instagram 3-col on tablet */
  .ig-cell--1 { grid-row: span 2; }
}

/* ─────────────────────────────────────
   DESKTOP ≥ 1024px
───────────────────────────────────── */
@media (min-width: 1024px) {
  /* Nav */
  .nav-links { display: flex; }
  .nav-cta-btn { display: block; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 4rem) 2rem 6rem; }
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 520px;
  }
  .br-desktop { display: inline; }

  /* Story */
  .story { padding: 9rem 2rem; }
  .story-inner { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .story-visual { align-items: flex-start; }
  .story-visual-card { max-width: none; }
  .story-stats { max-width: none; }

  /* Collection */
  .collection { padding: 9rem 2rem; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid .coll-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
    width: auto;
  }
  .coll-card-visual { height: 320px; }

  /* Why */
  .why { padding: 9rem 2rem; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }

  /* Instagram */
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .ig-cell--1 { grid-row: span 1; }

  /* Trust — static layout on desktop */
  .trust-inner {
    padding: 1.75rem 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────
   LARGE DESKTOP ≥ 1280px
───────────────────────────────────── */
@media (min-width: 1280px) {
  :root { --nav-h: 80px; }
  .coll-card-visual { height: 340px; }
  .story-visual-card { aspect-ratio: 4/5; }
}

/* ─────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none;
  }
  .hero-eyebrow, .hero-headline, .hero-sub,
  .hero-ctas, .hero-urgency, .hero-badge {
    opacity: 1; transform: none;
  }
  html { scroll-behavior: auto; }
}
