/* ═══════════════════════════════════════════════════════════════
   THE PANDA OUTFIT HQ — LANDING PAGE STYLES
   Malaysian-made modest wear · TikTok-first commerce
   Design language: chiffon + plum + gold, stitched-seam motif,
   Fraunces (display) + Outfit (body).
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES — PALETTE & TOKENS
   ═══════════════════════════════════════ */
:root {
  /* Core palette (Monochrome Noir & Sand) */
  --bg-chiffon: #f7f6f2;
  --bg-chiffon-warm: #eae6df;
  --plum: #1a1a1a; /* Deep charcoal */
  --plum-light: #333333;
  --plum-dark: #000000; /* Pure black */
  --rose: #c2b8a3; /* Warm sand accent */
  --rose-light: #e6dfd1;
  --rose-pale: #f2efe9;
  --gold: #1a1a1a;
  --gold-muted: #333333;
  --gold-light: #f7f6f2;
  --ink: #111111;
  --ink-soft: #444444;
  --ink-muted: #777777;
  --white: #FFFFFF;

  /* Functional tokens */
  --text-primary: var(--ink);
  --text-secondary: var(--ink-soft);
  --text-muted: var(--ink-muted);
  --accent-primary: var(--plum);
  --accent-secondary: var(--rose);
  --accent-tertiary: var(--gold);
  --surface-primary: var(--white);
  --surface-warm: var(--bg-chiffon);
  --stitch-color: var(--gold);

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Elevation */
  --shadow-sm: 0 2px 12px rgba(74, 32, 64, 0.06);
  --shadow-md: 0 12px 40px rgba(74, 32, 64, 0.1);
  --shadow-lg: 0 20px 60px rgba(74, 32, 64, 0.14);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--surface-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link — keyboard/screen-reader accessibility */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  padding: 0.6rem 1.25rem;
  background: var(--plum);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.2s ease;
}

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

/* ═══════════════════════════════════════
   SHARED BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--plum-dark);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease-out);
}

.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--plum-dark);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  border: 1.5px solid var(--plum-dark);
  transition: all 0.2s var(--ease-out);
}

.btn-secondary:hover {
  background: var(--bg-chiffon);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--surface-primary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-chiffon-warm);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--plum);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-name span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.header-nav {
  display: none;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  margin-left: var(--space-xl);
}

.header-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--plum);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  display: none;
}

.header-link:hover {
  color: var(--plum);
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-dark);
  transition: color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

.header-icon-link:hover {
  color: var(--plum);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .header-actions .header-link,
  .header-actions .btn-primary {
    display: none;
  }
}

@media (min-width: 900px) {
  .header-link {
    display: inline-block;
  }
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-header-cta:hover {
  background: var(--plum-light);
  transform: translateY(-1px);
}

.btn-header-cta svg {
  width: 16px;
  height: 16px;
}

.btn-header-cta.outline {
  background: transparent;
  color: var(--plum-dark);
  border: 1px solid var(--plum-dark);
}

.btn-header-cta.outline:hover {
  background: var(--bg-chiffon);
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* ── Hamburger / mobile toggle ── */
.hamburger {
  width: 24px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* On phones/tablets the header TikTok CTA collapses to a compact
   icon-only button so it sits cleanly beside the hamburger.
   (Full-text CTAs still live in the hero and mobile drawer.) */
@media (max-width: 767px) {
  .btn-header-cta {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .btn-header-text {
    display: none;
  }

  .btn-header-cta svg {
    width: 18px;
    height: 18px;
  }
}

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 99;
  background: rgba(253, 246, 238, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), visibility 0.25s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum-dark);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gold-light);
}

.mobile-menu .btn-primary {
  margin-top: var(--space-md);
  padding: 1rem 2rem;
  font-size: 1rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.editorial-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--plum-dark);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(14, 15, 17, 0.9) 0%, rgba(14, 15, 17, 0.4) 100%);
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-label {
  display: inline-block;
  color: var(--rose-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.editorial-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--rose-light);
  margin-bottom: var(--space-xl);
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */
.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  max-width: 600px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--plum-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US — VALUE PROPS
   ═══════════════════════════════════════ */
.why {
  background: var(--surface-warm);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 560px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: left;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 var(--space-md) 0;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--plum-dark);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   JOURNEY / HOW IT'S MADE
   ═══════════════════════════════════════ */
.journey {
  position: relative;
}

.journey-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 var(--space-sm);
}

/* The stitched seam — signature motif */
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom,
      var(--stitch-color) 0px,
      var(--stitch-color) 10px,
      transparent 10px,
      transparent 18px);
  opacity: 0.7;
}

/* Needle icon at top of seam */
.journey-timeline::after {
  content: '🪡';
  position: absolute;
  left: 10px;
  top: -18px;
  font-size: 1.3rem;
}

.journey-step {
  position: relative;
  padding: 0 0 var(--space-xl) 64px;
}

.journey-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(74, 32, 64, 0.2);
}

.step-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.step-location svg {
  width: 12px;
  height: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--plum-dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
}

@media (min-width: 768px) {
  .journey-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .journey-timeline::after {
    left: calc(50% - 15px);
  }

  .journey-step {
    padding: 0 0 var(--space-xl);
    width: 50%;
  }

  .journey-step:nth-child(odd) {
    margin-left: 0;
    padding-right: var(--space-xl);
    text-align: right;
  }

  .journey-step:nth-child(odd) .step-marker {
    left: auto;
    right: -17px;
  }

  .journey-step:nth-child(odd) .step-desc {
    margin-left: auto;
  }

  .journey-step:nth-child(even) {
    margin-left: 50%;
    padding-left: var(--space-xl);
  }

  .journey-step:nth-child(even) .step-marker {
    left: -17px;
  }
}

/* ═══════════════════════════════════════
   COLLECTIONS
   ═══════════════════════════════════════ */
.collections {
  background: var(--surface-warm);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-visual {
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Clean solid backgrounds for cards */
.card-visual--iris {
  background: var(--bg-chiffon-warm);
}

.card-visual--bawal {
  background: var(--rose-pale);
}

.card-visual--siera {
  background: var(--gold-light);
}

.card-icon {
  font-size: 3.5rem;
  filter: grayscale(0.2);
}

.card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.3rem 0.75rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.card-badge--new {
  background: var(--gold);
  color: var(--plum-dark);
}

.card-body {
  padding: var(--space-md);
}

.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--plum-dark);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  transition: gap 0.3s var(--ease-out);
}

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

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.card-link:hover svg {
  transform: translateX(2px);
}

/* ═══════════════════════════════════════
   SPOTLIGHT — BEST SELLER + OFFER
   ═══════════════════════════════════════ */
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 860px) {
  .spotlight-card {
    grid-template-columns: 1.05fr 1fr;
  }
}

.spotlight-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 14px,
      rgba(232, 200, 212, 0.35) 14px,
      rgba(232, 200, 212, 0.35) 15px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 14px,
      rgba(232, 200, 212, 0.35) 14px,
      rgba(232, 200, 212, 0.35) 15px),
    linear-gradient(135deg, var(--rose-light) 0%, var(--rose-pale) 100%);
}

.spotlight-visual .card-icon {
  font-size: 6rem;
  filter: none;
}

.spotlight-ribbon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--gold);
  color: var(--plum-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.spotlight-body {
  padding: var(--space-lg);
}

.spotlight-body .section-label {
  color: var(--rose-light);
}

.spotlight-body .section-label::before {
  background: var(--rose-light);
}

.spotlight-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.spotlight-body p {
  font-size: 0.95rem;
  color: var(--rose-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 440px;
}

.spotlight-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.spotlight-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white);
}

.spotlight-perks svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.spotlight-body .btn-primary {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.spotlight-body .btn-primary:hover {
  background: var(--bg-chiffon);
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.stats {
  background: var(--plum);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      var(--gold) 0px,
      var(--gold) 12px,
      transparent 12px,
      transparent 22px);
  opacity: 0.6;
}

.stats::before {
  top: 0;
}

.stats::after {
  bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--rose-light);
  font-weight: 400;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--plum-dark);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  background: var(--surface-warm);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--plum-dark);
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   NEWSLETTER / DROP ALERTS
   ═══════════════════════════════════════ */
.newsletter-card {
  position: relative;
  background: var(--plum);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 141, 160, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(184, 155, 106, 0.2) 0%, transparent 45%);
  pointer-events: none;
}

.newsletter-card>* {
  position: relative;
  z-index: 1;
}

.newsletter-card .section-label {
  color: var(--rose-light);
  justify-content: center;
}

.newsletter-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.newsletter-card p {
  font-size: 0.95rem;
  color: var(--rose-light);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
  line-height: 1.75;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1 1 220px;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: var(--ink-muted);
}

.newsletter-input:focus-visible {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form .btn-primary {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--plum-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .newsletter-form .btn-primary {
    flex: 1 1 100%;
  }
}

.newsletter-form .btn-primary:hover {
  background: var(--rose-pale);
}

.newsletter-note {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--rose);
}

.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(232, 200, 212, 0.4);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.newsletter-success svg {
  width: 18px;
  height: 18px;
  color: var(--gold-muted);
}

.newsletter-card.submitted .newsletter-form,
.newsletter-card.submitted .newsletter-note {
  display: none;
}

.newsletter-card.submitted .newsletter-success {
  display: flex;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: var(--space-2xl) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background-image: repeating-linear-gradient(to bottom,
      var(--stitch-color) 0px,
      var(--stitch-color) 10px,
      transparent 10px,
      transparent 18px);
  opacity: 0.5;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cta-section .section-title {
  max-width: 560px;
  margin: 0 auto var(--space-sm);
}

.cta-section .section-subtitle {
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.cta-tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--plum);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 24px rgba(74, 32, 64, 0.25);
}

.cta-tiktok-btn:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 32, 64, 0.3);
}

.cta-tiktok-btn svg {
  width: 20px;
  height: 20px;
}

.cta-handle {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--plum-dark);
  color: var(--rose-light);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 720px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--rose);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: var(--space-md);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 141, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-socials a:hover {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.88rem;
  color: var(--rose);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.footer-col .footer-contact-item svg {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: var(--rose-light);
  flex-shrink: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(196, 141, 160, 0.15);
  margin: var(--space-md) 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--rose);
  text-align: center;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-location svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ═══════════════════════════════════════
   DECORATIVE: STITCHED SEAM DIVIDERS
   ═══════════════════════════════════════ */
.stitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
}

.stitch-divider::before {
  content: '';
  width: 2px;
  height: 64px;
  background-image: repeating-linear-gradient(to bottom,
      var(--stitch-color) 0px,
      var(--stitch-color) 10px,
      transparent 10px,
      transparent 18px);
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   MISC RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 639px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

/* ═══════════════════════════════════════
   NEW EDITORIAL LAYOUTS
   ═══════════════════════════════════════ */
.editorial-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--plum-dark);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.editorial-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

/* CRAFT GRID */
.editorial-craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .editorial-craft-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }
  .craft-text-block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding-right: var(--space-xl);
  }
  .craft-img-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-top: 4rem;
  }
  .craft-img-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    margin-top: -2rem;
  }
}

.craft-image-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.editorial-list {
  list-style: none;
  padding: 0;
}
.editorial-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--plum);
  font-weight: 500;
}

/* DOCUMENTARY */
.editorial-documentary {
  background: var(--bg-chiffon-warm);
}
.doc-header {
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}
.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 768px) {
  .doc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}
.doc-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.doc-caption h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--plum-dark);
}
.doc-caption p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* LOOKBOOK */
.lookbook-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: 1rem;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lookbook-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.lookbook-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}
.lookbook-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lookbook-card:hover .lookbook-visual img {
  transform: scale(1.05);
}
.lookbook-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  color: var(--plum-dark);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.lookbook-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--plum-dark);
}
.lookbook-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* ── Web Store CTA ── */
.web-store-cta {
  padding-top: 0;
}

.store-cta-box {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.store-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.store-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plum-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.store-cta-content p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .store-cta-box {
    padding: var(--space-xxl) var(--space-xl);
  }
}
