/* ═══════════════════════════════════════════════
   ANGEL COLLECTION BY CK — Design System
   Palette: Monochrome Luxe + Gold + Blush
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream:    #FAFAF8;
  --white:    #FFFFFF;
  --ink:      #1A1A1A;
  --ink-soft: #3A3A3A;
  --muted:    #8A8A8A;
  --border:   #E8E4DF;
  --gold:     #B8860B;
  --gold-lt:  #D4A843;
  --gold-pale:#F5EDD6;
  --blush:    #F0EBF4;
  --blush-dk: #D8C8E8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 72px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}
.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(184,134,11,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; background: var(--gold-lt); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 48px; height: 48px; opacity: 0.6; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loadFill 1.8s var(--ease) forwards;
}
.loader-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@keyframes loadFill { to { width: 100%; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-left, .nav-right {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.85;
}
.nav.scrolled .nav-link { color: var(--ink); }
.nav-link:hover { opacity: 1; }

.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.logo-ck { font-weight: 600; }
.logo-divider { color: var(--gold); font-size: 0.8rem; }
.logo-angel { font-style: italic; font-weight: 300; }

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

.nav-menu {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-menu span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.nav.scrolled .nav-menu span { background: var(--ink); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-menu-footer {
  position: absolute; bottom: 3rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 2;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.65) 0%,
    rgba(10,8,6,0.35) 50%,
    rgba(10,8,6,0.55) 100%
  );
}

.hero-wings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.wings-svg {
  width: 80%; max-width: 900px;
  opacity: 0;
  animation: fadeIn 2s 1.5s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-title-line:nth-child(2) { animation-delay: 0.9s; }
.hero-title-line.italic { font-style: italic; color: var(--gold-lt); }

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease) forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s var(--ease) forwards;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 2s var(--ease) forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-badge {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s 1.8s var(--ease) forwards;
}
.hero-badge--left { left: 4rem; bottom: 8rem; }
.hero-badge--right { right: 4rem; bottom: 8rem; }
.badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee-dot { color: var(--gold); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

/* ── STATEMENT ── */
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.statement-inner {
  background: var(--blush);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
}
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  margin: 1.5rem 0;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.statement-quote em { color: var(--gold); font-style: italic; }
.statement-sig {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.statement-img-wrap {
  position: relative;
  overflow: hidden;
}
.statement-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.statement-img-wrap:hover img { transform: scale(1.04); }
.statement-img-caption {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(8px);
}

/* ── COLLECTIONS ── */
.collections {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  display: flex; flex-direction: column;
  margin-bottom: 3rem;
}
.section-header .section-desc { margin-top: 0.75rem; }

/* Filter Bar */
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--border); }
.filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}
.product-card--large {
  grid-row: span 2;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card.hidden { opacity: 0; transform: scale(0.97); pointer-events: none; display: none; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card--large .product-img-wrap { aspect-ratio: 3/5; }

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,6,0.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 1.5rem;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-quick-add {
  width: 100%;
  padding: 0.85rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add:hover { background: var(--gold); color: var(--white); }

.product-wishlist {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.product-wishlist:hover { background: var(--gold); color: var(--white); transform: scale(1.1); }
.product-wishlist.active { color: #e74c3c; }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.7rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-badge--gold { background: var(--gold); }

.product-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.product-category {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.product-sizes {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.collections-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ── LOOKBOOK ── */
.lookbook {
  padding: 7rem 3rem;
  background: var(--ink);
}
.lookbook-header {
  margin-bottom: 3rem;
}
.lookbook-header .section-title { color: var(--white); }
.lookbook-header .section-label { color: var(--gold-lt); }

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: 3px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
}
.lookbook-item--tall { grid-row: span 2; }
.lookbook-item--wide { grid-column: span 2; }

.lookbook-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.lookbook-item:hover img { transform: scale(1.05); filter: brightness(1); }

.lookbook-caption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.lookbook-item:hover .lookbook-caption { color: var(--gold-lt); }

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 8rem 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--gold-pale);
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.newsletter-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.newsletter-form {
  display: flex; gap: 0;
  max-width: 460px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(184,134,11,0.4);
  overflow: hidden;
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-form .btn { border-radius: 0; }
.newsletter-note {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 5rem 4rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,134,11,0.1); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 420px; max-width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 1101;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}
.cart-close {
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.3s;
}
.cart-close:hover { color: var(--ink); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%;
  gap: 1rem;
  text-align: center;
}
.cart-empty-icon { font-size: 2rem; color: var(--gold); }
.cart-empty p { font-size: 0.9rem; color: var(--muted); }

.cart-item {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.4s var(--ease) forwards;
}
.cart-item-img {
  width: 70px; height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.cart-item-price { font-size: 0.85rem; color: var(--gold); font-weight: 500; }
.cart-item-remove {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
  transition: color 0.3s;
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
#cartTotal { color: var(--gold); font-size: 1rem; }
.cart-note {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--large { grid-row: span 1; }
  .product-card--large .product-img-wrap { aspect-ratio: 3/4; }
  .about-strip { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 3rem; }
  .statement { grid-template-columns: 1fr; }
  .statement-img-wrap { height: 400px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .nav { padding: 0 1.5rem; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .nav-menu { display: flex; }
  .hero-badge { display: none; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }
  .lookbook-item--tall { grid-row: span 1; }
  .lookbook-item--wide { grid-column: span 2; }
  .collections { padding: 4rem 1.5rem; }
  .lookbook { padding: 4rem 1.5rem; }
  .about-strip { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .newsletter { padding: 4rem 1.5rem; }
  .newsletter-form { flex-direction: column; border: none; gap: 0.75rem; }
  .newsletter-input { border: 1px solid rgba(184,134,11,0.4); }
  .statement-inner { padding: 3rem 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lookbook-item--wide { grid-column: span 1; }
  .hero-title { font-size: clamp(2.8rem, 16vw, 4rem); }
}