/* =============================================================
   AND SO WHAT'S NEXT — v2 Extravagant
   Shared stylesheet
   ============================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Olive/cream palette (NY) */
  --olive: #6E7A2A;
  --olive-deep: #5A6420;
  --olive-darker: #3F470F;
  --olive-soft: #7d8a32;
  --cream: #F2EBD9;
  --cream-soft: #EDE3CC;
  --cream-warm: #F8F2E0;
  --gold: #B68B3B;
  --gold-deep: #8E6B26;
  --ink: #1F2008;
  --bone: #FFFAEC;

  /* Miami palette (sunset/tropical) */
  --miami-coral: #E97862;
  --miami-rose: #F1A38C;
  --miami-peach: #F8D5B6;
  --miami-sky: #E8E1C8;
  --miami-deep: #6B2E2A;
  --miami-sand: #F5E9D2;
  --miami-night: #2A1A1F;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--olive);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* =============================================================
   CINEMATIC PRELOADER — animated SVG wordmark draw
   ============================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--olive-darker);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease-out-expo), visibility 0.9s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.pre-mark {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  overflow: hidden;
  position: relative;
}
.pre-mark img { width: 100%; height: 100%; object-fit: cover; }
.pre-mark::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: preRing 1.8s 0.4s ease-out forwards;
}
@keyframes preRing {
  0% { transform: scale(1); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.pre-svg {
  width: 280px; height: 30px;
  margin-bottom: 1rem;
}
.pre-svg path {
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pre-svg .draw {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: preDraw 1.6s 0.3s var(--ease-out-expo) forwards;
}
@keyframes preDraw { to { stroke-dashoffset: 0; } }

.pre-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: var(--cream); opacity: 0;
  text-transform: uppercase;
  animation: preFade 0.8s 1.2s forwards;
}
@keyframes preFade { to { opacity: 0.7; } }

.pre-curtain {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99998;
  transform: translateY(100%);
  pointer-events: none;
}
.pre-curtain.lifting {
  animation: curtainLift 1.2s var(--ease-in-out-quart) forwards;
}
@keyframes curtainLift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* =============================================================
   CUSTOM CURSOR — three layers + spotlight
   ============================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cream);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--cream);
  border-radius: 50%; opacity: 0.6;
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s, background 0.3s;
}
.cursor-ring.expand {
  width: 70px; height: 70px;
  border-color: var(--gold); opacity: 0.4;
}
.cursor-ring.expand-text {
  width: 88px; height: 88px;
  border-color: var(--gold); background: var(--gold);
  opacity: 0.95; mix-blend-mode: normal;
}
.cursor-ring.drag {
  width: 100px; height: 100px;
  border-color: var(--cream); background: rgba(242,235,217,0.9);
  opacity: 1;
}
.cursor-text {
  position: fixed; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  color: var(--olive-darker);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  opacity: 0; transition: opacity 0.3s;
}
.cursor-text.visible { opacity: 1; }

/* Cursor spotlight overlay (used in dark sections) */
.cursor-spotlight {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 280px at var(--mx, 50%) var(--my, 50%), transparent 0%, rgba(31,32,8,0.45) 60%, rgba(31,32,8,0.7) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-spotlight.active { opacity: 1; }

/* =============================================================
   SCROLL PROGRESS
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 200; transition: width 0.05s;
}

/* =============================================================
   GLASS NAV — progressive backdrop-blur
   ============================================================= */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream);
  padding: 1rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(31,32,8,0.08);
  transition: padding 0.4s var(--ease-out-expo), background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav-bar.compact {
  padding: 0.6rem 2.5rem;
  background: rgba(242,235,217,0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 4px 30px rgba(31,32,8,0.06);
}

.nav-brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.nav-logo-circle {
  width: 50px; height: 50px;
  border-radius: 50%; overflow: hidden;
  background: var(--cream-warm); flex-shrink: 0;
  position: relative;
  transition: transform 0.5s var(--ease-out-expo);
}
.nav-brand:hover .nav-logo-circle { transform: rotate(360deg); }
.nav-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.nav-tagline { display: flex; flex-direction: column; line-height: 1.1; }
.nav-tagline span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem; color: var(--ink);
  letter-spacing: 0.04em;
}

.nav-pills {
  display: flex; gap: 0.4rem;
  list-style: none;
  background: var(--cream-warm);
  padding: 0.4rem; border-radius: 999px;
}
.nav-pills a {
  display: block; padding: 0.6rem 1.4rem;
  color: var(--ink); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.05em;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
  font-weight: 400;
  position: relative;
}
.nav-pills a:hover { background: rgba(31,32,8,0.06); }
.nav-pills a.active { background: var(--olive); color: var(--cream); }

.nav-cart { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); font-size: 0.8rem; text-decoration: none; }
.cart-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(31,32,8,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-icon:hover { background: rgba(31,32,8,0.05); }

/* Live atelier status pill */
.status-pill {
  position: fixed; top: 5.5rem; right: 2.5rem;
  z-index: 90;
  background: var(--olive-darker);
  color: var(--cream);
  padding: 0.5rem 1rem 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(31,32,8,0.15);
  opacity: 0; transform: translateY(-10px);
  animation: statusIn 0.6s 1.6s var(--ease-out-expo) forwards;
}
@keyframes statusIn { to { opacity: 1; transform: translateY(0); } }
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6FCF97;
  position: relative;
}
.status-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: #6FCF97; opacity: 0.4;
  animation: statusPulse 1.8s ease-out infinite;
}
@keyframes statusPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.status-text {
  display: inline-block;
  min-width: 200px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

/* =============================================================
   TYPOGRAPHY UTILITIES
   ============================================================= */
.section-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--gold);
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1; color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
  font-weight: 300;
}

section { padding: 7rem 2.5rem; position: relative; }

/* =============================================================
   MAGNETIC BUTTONS — pull toward cursor
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  background: var(--cream); color: var(--olive-darker);
  text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 500;
  border: none; cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--cream); }
.btn > * { position: relative; z-index: 1; }
.btn-arrow {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-link {
  color: var(--cream); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  border-bottom: 1px solid rgba(242,235,217,0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-link:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--olive); color: var(--cream);
}
.btn-dark::before { background: var(--olive-darker); }
.btn-dark:hover { color: var(--cream); }

.btn-miami {
  background: var(--miami-coral); color: var(--cream);
}
.btn-miami::before { background: var(--miami-deep); }

/* =============================================================
   HERO — cursor spotlight + magnetic image
   ============================================================= */
.hero {
  min-height: 100vh;
  padding: 130px 2.5rem 4rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: center;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--cream);
  opacity: 0.7; margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--cream); opacity: 0.5;
}
.hero-title {
  font-family: 'Italiana', serif; font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.92; letter-spacing: -0.01em;
  color: var(--cream);
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s var(--ease-out-expo) forwards;
}
.hero-title-line:nth-child(2) .hero-title-inner { animation-delay: 0.15s; }
.hero-title-line:nth-child(3) .hero-title-inner { animation-delay: 0.3s; }
.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  color: var(--cream-warm);
}
@keyframes rise { to { transform: translateY(0); } }

.hero-meta {
  margin-top: 3rem;
  display: flex; align-items: center; gap: 1.5rem;
  opacity: 0; animation: fadeIn 1s 0.9s forwards;
}
.hero-meta .divider { width: 40px; height: 1px; background: var(--cream); opacity: 0.4; }
.hero-meta-text { font-size: 0.85rem; line-height: 1.7; color: var(--cream); opacity: 0.78; max-width: 380px; }
.hero-actions {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 1s 1.1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-visual { position: relative; height: 70vh; min-height: 520px; }
.hero-img { position: absolute; overflow: hidden; background: var(--cream-soft); will-change: transform; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease-out; }
.hero-img-1 {
  top: 0; right: 8%;
  width: 62%; height: 78%;
  opacity: 0;
  animation: imgRise 1.5s 0.5s var(--ease-out-expo) forwards;
}
.hero-img-2 {
  bottom: 0; left: 0;
  width: 50%; height: 50%;
  opacity: 0;
  animation: imgRise 1.5s 0.75s var(--ease-out-expo) forwards;
}
@keyframes imgRise {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  position: absolute; bottom: 22%; right: 0;
  width: 130px; height: 130px;
  border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center; z-index: 5;
  opacity: 0;
  animation: badgeIn 1s 1.2s forwards;
}
@keyframes badgeIn { to { opacity: 1; } }
.hero-badge-spin { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.hero-badge-spin svg { width: 100%; height: 100%; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge-center {
  position: relative; z-index: 2;
  font-family: 'Italiana', serif;
  font-size: 1.4rem; color: var(--olive-darker);
  line-height: 1;
}

.scroll-cue {
  position: absolute; bottom: 1.5rem; left: 2.5rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream); opacity: 0.6;
  z-index: 3;
}
.scroll-cue-line {
  width: 50px; height: 1px;
  background: linear-gradient(to right, var(--cream), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(0.3); }
}

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  padding: 160px 2.5rem 5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(242,235,217,0.12);
  overflow: hidden;
}
.page-hero-grain {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.breadcrumb {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.85; margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.breadcrumb a { color: inherit; text-decoration: none; opacity: 0.65; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.4; }
.page-hero h1 {
  font-family: 'Italiana', serif; font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem); line-height: 1;
  color: var(--cream); margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.page-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem; line-height: 1.7;
  color: var(--cream); opacity: 0.75;
  max-width: 600px; margin: 0 auto;
  position: relative; z-index: 2;
}

/* =============================================================
   SCROLL-VELOCITY MARQUEE
   ============================================================= */
.marquee {
  border-top: 1px solid rgba(242,235,217,0.15);
  border-bottom: 1px solid rgba(242,235,217,0.15);
  padding: 1.6rem 0; overflow: hidden;
  background: var(--olive-deep);
  position: relative;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap; width: max-content;
  will-change: transform;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: 'Italiana', serif;
  font-size: 1.6rem; color: var(--cream);
  letter-spacing: 0.04em;
}
.marquee-item span { color: var(--gold); font-size: 1.1rem; }

/* =============================================================
   VIDEO SHOWCASE (HOME)
   ============================================================= */
.video-showcase {
  background: var(--olive-deep);
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.vs-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Italiana', serif;
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(242,235,217,0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.vs-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.vs-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.75;
  max-width: 380px;
  justify-self: end;
}
.vs-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 2;
}
.video-tile {
  position: relative;
  cursor: none;
}
.vt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--olive-darker);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(242,235,217,0.1);
}
.vt-thumb > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s, opacity 0.3s;
}
.video-tile:hover .vt-thumb > img { transform: scale(1.04); }
.vt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,32,8,0.2), rgba(31,32,8,0.55));
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.video-tile:hover .vt-overlay { background: linear-gradient(135deg, rgba(31,32,8,0.1), rgba(31,32,8,0.35)); }
.vt-play {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  color: var(--olive-darker);
  transition: transform 0.4s var(--ease-out-expo), background 0.3s, color 0.3s;
}
.vt-play svg { fill: currentColor; margin-left: 3px; }
.video-tile:hover .vt-play { transform: scale(1.12); background: var(--gold); color: var(--cream); }
.video-tile.playing iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 3;
}
.video-tile.playing .vt-overlay,
.video-tile.playing .vt-thumb > img { display: none; }
.vt-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid rgba(242,235,217,0.15);
  padding-top: 1rem;
}
.vt-num {
  font-family: 'Italiana', serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.vt-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
}

/* =============================================================
   STICKY SCROLL STORYTELLING (HOME / ABOUT)
   ============================================================= */
.sticky-story {
  background: var(--olive);
  padding: 5rem 2.5rem;
  position: relative;
}
.sticky-story-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.sticky-story-visual {
  position: sticky;
  top: 110px;
  height: 75vh;
  overflow: hidden;
  background: var(--olive-darker);
  align-self: start;
}
.sticky-story-img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.sticky-story-img.active {
  opacity: 1;
}
.sticky-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sticky-story-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,32,8,0.7), transparent 50%);
}
.sticky-story-img-cap {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.1rem;
  z-index: 2;
}

.sticky-story-content {
  display: flex; flex-direction: column;
  gap: 6rem;
  padding-bottom: 30vh;
}
.sticky-story-step {
  min-height: 50vh;
  display: flex; flex-direction: column;
  justify-content: center;
}
.sticky-story-step-num {
  font-family: 'Italiana', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.sticky-story-step h3 {
  font-family: 'Italiana', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.sticky-story-step h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}
.sticky-story-step p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.78;
  max-width: 480px;
}

/* =============================================================
   HORIZONTAL DRAG SCROLL LOOKBOOK
   ============================================================= */
.drag-lookbook {
  background: var(--cream);
  color: var(--olive-darker);
  padding: 6rem 0 7rem;
  overflow: hidden;
  position: relative;
}
.drag-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.drag-header .section-eyebrow { color: var(--gold-deep); }
.drag-header .section-eyebrow::before { background: var(--gold-deep); }
.drag-header .section-title { color: var(--olive-darker); }
.drag-header .section-title em { color: var(--gold-deep); }
.drag-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--olive-darker);
  opacity: 0.75;
  max-width: 380px;
  justify-self: end;
}
.drag-cue {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--olive-darker); opacity: 0.55;
  margin-top: 1rem;
}
.drag-cue::before, .drag-cue::after {
  content: '←';
  font-size: 0.85rem;
}
.drag-cue::after { content: '→'; }

.drag-track-wrap {
  cursor: none;
  overflow: hidden;
  padding-left: 2.5rem;
}
.drag-track {
  display: flex;
  gap: 1.2rem;
  padding-right: 2.5rem;
  width: max-content;
  will-change: transform;
}
.drag-card {
  flex-shrink: 0;
  width: 380px; height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
  user-select: none;
}
.drag-card.tall { height: 580px; }
.drag-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.drag-card-num {
  position: absolute; top: 1rem; left: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(31,32,8,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: 'Italiana', serif;
  font-size: 0.9rem;
  z-index: 2;
}
.drag-card-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(31,32,8,0.85), transparent);
  color: var(--cream);
  z-index: 2;
}
.drag-card-cap h4 {
  font-family: 'Italiana', serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.drag-card-cap p {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* =============================================================
   PRELOADER INTERNALS
   ============================================================= */
.pre-logo {
  width: 96px; height: 96px;
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.pre-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.preloader.splash {
  cursor: pointer;
}
.preloader.splash:hover .pre-logo { transform: scale(1.04); transition: transform 0.4s var(--ease-out-expo); }
.pre-enter {
  margin-top: 2.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: preEnterIn 0.9s var(--ease-out-expo) 1.8s forwards,
             preEnterPulse 2.4s ease-in-out 2.8s infinite;
}
.pre-sub {
  margin-top: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0;
  animation: preEnterIn 0.9s var(--ease-out-expo) 2.0s forwards;
}
.pre-sub { animation-fill-mode: forwards; }
@keyframes preEnterIn { to { opacity: 0.85; } }
@keyframes preEnterPulse {
  0%, 100% { opacity: 0.9; transform: translateY(0); }
  50% { opacity: 0.45; transform: translateY(-2px); }
}
.pre-text {
  font-family: 'Italiana', serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.6em;
  margin-bottom: 1.4rem;
  opacity: 0.85;
}
.pre-bar {
  width: 180px; height: 1px;
  background: rgba(242,235,217,0.18);
  position: relative; overflow: hidden;
}
.pre-bar-fill {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: prefill 1.6s var(--ease-out-expo) forwards;
}
@keyframes prefill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* =============================================================
   COUNTER STRIP
   ============================================================= */
.counter-strip {
  background: var(--cream);
  color: var(--olive-darker);
  padding: 5rem 2.5rem;
  border-top: 1px solid rgba(31,32,8,0.08);
  border-bottom: 1px solid rgba(31,32,8,0.08);
}
.counter-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(31,32,8,0.12);
}
.counter-num {
  font-family: 'Italiana', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: 0.02em;
}
.counter-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-darker);
  opacity: 0.65;
}
@media (max-width: 768px) {
  .counter-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .counter-item:nth-child(2)::after { display: none; }
  .counter-item:not(:last-child)::after { display: none; }
}

/* =============================================================
   MANIFESTO STICKY SCROLL
   ============================================================= */
.manifesto {
  background: var(--olive-darker);
  color: var(--cream);
  padding: 6rem 0;
  position: relative;
}
.manifesto-track {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.manifesto-sticky {
  position: sticky;
  top: 12vh;
  height: 76vh;
}
.manifesto-image-stack {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--olive);
}
.manifesto-img {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease-out-expo), transform 1.6s var(--ease-out-expo);
}
.manifesto-img.active { opacity: 1; transform: scale(1); }
.manifesto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 14vh;
  padding: 6vh 0 14vh;
}
.manifesto-step {
  max-width: 480px;
}
.manifesto-step-num {
  display: block;
  font-family: 'Italiana', serif;
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.manifesto-step h3 {
  font-family: 'Italiana', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1.4rem;
}
.manifesto-step h3 em {
  color: var(--gold);
  font-style: italic;
}
.manifesto-step p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.78;
  margin: 0;
}
@media (max-width: 968px) {
  .manifesto-track { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-sticky { position: relative; top: 0; height: 60vh; }
  .manifesto-content { gap: 5rem; padding: 3rem 0; }
}

/* =============================================================
   DRAG CAROUSEL (THE EDIT)
   ============================================================= */
.drag-carousel {
  background: var(--cream);
  color: var(--olive-darker);
  padding: 6rem 0 7rem;
  overflow: hidden;
  position: relative;
}
.drag-carousel-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.drag-carousel-header .section-eyebrow { color: var(--gold-deep); }
.drag-carousel-header .section-eyebrow::before { background: var(--gold-deep); }
.drag-carousel-header .section-title { color: var(--olive-darker); }
.drag-carousel-header .section-title em { color: var(--gold-deep); }
.drag-carousel-hint {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-darker); opacity: 0.55;
  justify-self: end;
  align-self: end;
  padding-bottom: 0.6rem;
}
.drag-carousel-hint::before { content: '←'; font-size: 0.85rem; }
.drag-carousel-hint::after { content: '→'; font-size: 0.85rem; }

.drag-carousel .drag-track {
  display: flex;
  gap: 1.2rem;
  padding: 0 2.5rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.drag-carousel .drag-track::-webkit-scrollbar { display: none; }
.drag-card {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: none;
}
.drag-card-img {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--cream-warm);
}
.drag-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.drag-card:hover .drag-card-img img { transform: scale(1.05); }
.drag-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.7rem;
  background: var(--gold);
  color: var(--olive-darker);
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.drag-card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0.2rem 0;
  gap: 1rem;
}
.drag-card-name {
  font-family: 'Italiana', serif;
  font-size: 1.15rem;
  color: var(--olive-darker);
  letter-spacing: 0.02em;
}
.drag-card-price {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 500;
}
@media (max-width: 768px) {
  .drag-carousel-header { grid-template-columns: 1fr; gap: 1rem; }
  .drag-carousel-hint { justify-self: start; }
  .drag-card { width: 260px; }
  .drag-card-img { height: 340px; }
}

/* =============================================================
   LOOKBOOK MOSAIC
   ============================================================= */
.lookbook {
  background: var(--olive);
  color: var(--cream);
  padding: 6rem 2.5rem 7rem;
  position: relative;
}
.lookbook .section-eyebrow { color: var(--gold); }
.lookbook .section-eyebrow::before { background: var(--gold); }
.lookbook .section-title { color: var(--cream); }
.lookbook .section-title em { color: var(--gold); }

.lookbook-header {
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.lookbook-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.8;
  max-width: 380px;
  justify-self: end;
}

.lookbook-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}
.lb-tile {
  position: relative;
  overflow: hidden;
  background: var(--olive-darker);
  cursor: none;
}
.lb-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.lb-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.lb-3 { grid-column: 4 / 5; grid-row: 1 / 3; }
.lb-4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.lb-5 { grid-column: 1 / 2; grid-row: 3 / 4; }
.lb-6 { grid-column: 2 / 4; grid-row: 3 / 4; }
.lb-7 { grid-column: 4 / 5; grid-row: 3 / 4; }

.lb-tile a {
  display: block;
  width: 100%; height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.lb-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s;
}
.lb-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,32,8,0.7) 0%, rgba(31,32,8,0.15) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.lb-tile:hover img { transform: scale(1.06); filter: brightness(1.05); }
.lb-tile:hover::after { opacity: 1; }

.lb-tile-num {
  position: absolute;
  top: 1rem; left: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(31,32,8,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: 'Italiana', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
.lb-tile-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.5rem;
  z-index: 2;
  color: var(--cream);
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.lb-tile:hover .lb-tile-info { transform: translateY(0); }
.lb-tile-info h4 {
  font-family: 'Italiana', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
  color: var(--cream);
}
.lb-tile-info p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.85;
}

@media (max-width: 968px) {
  .lookbook { padding: 4rem 1.25rem 5rem; }
  .lookbook-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .lookbook-intro { justify-self: start; }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.6rem;
  }
  .lb-1 { grid-column: 1 / 3; grid-row: auto; }
  .lb-2, .lb-3, .lb-4, .lb-5, .lb-6, .lb-7 {
    grid-column: auto; grid-row: auto;
  }
  .lb-6 { grid-column: 1 / 3; }
}

/* =============================================================
   3D TILT PRODUCT CARDS
   ============================================================= */
.collection {
  background: var(--cream);
  color: var(--ink);
}
.collection .section-eyebrow { color: var(--gold-deep); }
.collection .section-eyebrow::before { background: var(--gold-deep); }
.collection .section-title { color: var(--olive-darker); }
.collection .section-title em { color: var(--gold-deep); }

.collection-header {
  max-width: 1400px; margin: 0 auto 4rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.shop-controls { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.filter-row {
  display: flex; gap: 0.5rem;
  background: var(--cream-warm);
  padding: 0.4rem; border-radius: 999px;
}
.filter-btn {
  background: none; border: none;
  padding: 0.7rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--olive-darker);
  cursor: none; border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.filter-btn:hover { background: rgba(31,32,8,0.06); }
.filter-btn.active { background: var(--olive); color: var(--cream); }

.sort-select {
  background: var(--cream-warm);
  border: none; padding: 0.7rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--olive-darker);
  cursor: none; border-radius: 999px;
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231F2008' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.product-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
}
.product {
  position: relative;
  cursor: none;
  transition: opacity 0.4s, transform 0.4s;
  text-decoration: none;
  perspective: 1000px;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-soft);
  margin-bottom: 1rem;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease-out-expo);
}
.product:hover .product-img-wrap {
  /* tilt applied via JS */
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
  transform-style: preserve-3d;
}
.product:hover .product-img { transform: scale(1.08) translateZ(40px); }
.product-tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--cream); color: var(--olive-darker);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem; z-index: 2;
  transform: translateZ(60px);
}
.product-overlay {
  position: absolute; inset: auto 0 0 0;
  background: var(--olive-darker); color: var(--cream);
  padding: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; cursor: none;
  z-index: 3;
}
.product:hover .product-overlay { transform: translateY(0); }

.product-info { display: flex; justify-content: space-between; align-items: baseline; padding: 0 0.2rem; }
.product-name { font-family: 'Italiana', serif; font-size: 1.05rem; color: var(--olive-darker); letter-spacing: 0.02em; }
.product-price { font-family: 'Manrope', sans-serif; font-size: 0.85rem; color: var(--gold-deep); font-weight: 400; }
.product-cat { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--olive-darker); opacity: 0.5; margin-top: 0.3rem; }

/* =============================================================
   STORY BLOCK (REUSABLE)
   ============================================================= */
.story { padding: 9rem 2.5rem; }
.story-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
}
.story-visual { position: relative; aspect-ratio: 4/5; }
.story-visual-frame { position: absolute; inset: 0; border: 1px solid rgba(242,235,217,0.2); transform: translate(-15px, -15px); }
.story-visual-img { position: absolute; inset: 0; overflow: hidden; background: var(--cream-soft); }
.story-visual-img img { width: 100%; height: 100%; object-fit: cover; }
.story-meta {
  position: absolute; bottom: 1.5rem; right: -2rem;
  background: var(--cream); color: var(--olive-darker);
  padding: 1.2rem 1.8rem; z-index: 2; max-width: 240px;
}
.story-meta-num { font-family: 'Italiana', serif; font-size: 2.8rem; line-height: 1; color: var(--gold-deep); }
.story-meta-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--olive-darker); margin-top: 0.4rem; }

.story-text .section-title { margin-bottom: 2rem; }
.story-text p { font-size: 1rem; line-height: 1.85; color: var(--cream); opacity: 0.78; margin-bottom: 1.4rem; max-width: 520px; }
.story-text p strong { font-weight: 400; color: var(--cream); opacity: 1; }
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem; line-height: 1.5;
  color: var(--cream); margin: 2rem 0;
  padding-left: 1.5rem; border-left: 2px solid var(--gold);
}
.story-list {
  list-style: none; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(242,235,217,0.15);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.story-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.85rem; color: var(--cream); opacity: 0.85; }
.story-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }

/* =============================================================
   ATELIER STRIP
   ============================================================= */
.atelier {
  background: var(--cream-warm);
  color: var(--olive-darker);
  padding: 5rem 2.5rem;
  text-align: center;
}
.atelier-row {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
}
.at-item { position: relative; }
.at-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.3s;
}
.at-item:hover .at-icon { transform: rotate(20deg) scale(1.05); border-color: var(--olive); }
.at-title { font-family: 'Italiana', serif; font-size: 1.3rem; color: var(--olive-darker); margin-bottom: 0.5rem; font-weight: 400; }
.at-desc { font-size: 0.8rem; line-height: 1.6; color: var(--olive-darker); opacity: 0.7; max-width: 230px; margin: 0 auto; }

/* =============================================================
   CITIES SECTION
   ============================================================= */
.cities { padding: 9rem 0; position: relative; overflow: hidden; }
.cities-header { max-width: 1400px; margin: 0 auto 5rem; padding: 0 2.5rem; text-align: center; }
.cities-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(242,235,217,0.15); border-bottom: 1px solid rgba(242,235,217,0.15); }
.city-tile {
  padding: 4rem 2.5rem;
  border-right: 1px solid rgba(242,235,217,0.15);
  cursor: none; transition: background 0.4s;
  position: relative; overflow: hidden;
}
.city-tile:last-child { border-right: none; }
.city-tile:hover { background: var(--olive-deep); }
.city-tile.miami:hover { background: rgba(233,120,98,0.15); }
.city-num { font-family: 'Italiana', serif; font-size: 0.8rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.5rem; display: block; }
.city-name { font-family: 'Italiana', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--cream); line-height: 1; margin-bottom: 1rem; transition: transform 0.4s; font-weight: 400; }
.city-tile:hover .city-name { transform: translateX(8px); }
.city-region { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); opacity: 0.65; margin-bottom: 2rem; }
.city-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--cream); opacity: 0.7; max-width: 280px; }
.city-coord { margin-top: 2.5rem; font-size: 0.7rem; color: var(--gold); opacity: 0.7; font-family: 'Manrope', sans-serif; letter-spacing: 0.15em; }
.city-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid var(--gold);
  transition: gap 0.3s;
}
.city-link:hover { gap: 1rem; }

/* =============================================================
   NEWSLETTER
   ============================================================= */
.newsletter {
  padding: 8rem 2.5rem; text-align: center;
  background: var(--olive-deep); position: relative; overflow: hidden;
}
.newsletter::before {
  content: 'A·S·W·N';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Italiana', serif;
  font-size: clamp(10rem, 25vw, 22rem);
  color: rgba(242,235,217,0.04);
  letter-spacing: 0.1em; pointer-events: none; white-space: nowrap;
}
.newsletter-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.newsletter h2 { font-family: 'Italiana', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; color: var(--cream); margin-bottom: 1.5rem; font-weight: 400; }
.newsletter h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); }
.newsletter p { font-size: 0.95rem; line-height: 1.7; color: var(--cream); opacity: 0.7; margin-bottom: 2.5rem; }
.nl-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border: 1px solid rgba(242,235,217,0.3); }
.nl-form input { flex: 1; background: transparent; border: none; padding: 1.2rem 1.5rem; color: var(--cream); font-family: 'Manrope', sans-serif; font-size: 0.85rem; outline: none; cursor: none; }
.nl-form input::placeholder { color: rgba(242,235,217,0.5); }
.nl-form button { background: var(--cream); color: var(--olive-darker); border: none; padding: 1.2rem 1.8rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; cursor: none; transition: background 0.2s; }
.nl-form button:hover { background: var(--bone); }

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--cream); color: var(--olive-darker);
  padding: 5rem 2.5rem 2rem;
}
.footer-top {
  max-width: 1400px; margin: 0 auto 4rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name { font-family: 'Italiana', serif; font-size: 2rem; line-height: 1; color: var(--olive-darker); font-weight: 400; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--olive-darker); opacity: 0.7; line-height: 1.6; max-width: 320px; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.5rem; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--olive-darker); text-decoration: none; font-size: 0.85rem; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--gold-deep); }
.footer-col p { font-size: 0.85rem; color: var(--olive-darker); opacity: 0.75; line-height: 1.7; }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(31,32,8,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--olive-darker); opacity: 0.5; text-decoration: none; }

/* =============================================================
   PRODUCT DETAIL
   ============================================================= */
.product-detail {
  background: var(--cream); color: var(--olive-darker);
  padding: 140px 2.5rem 6rem;
}
.product-detail-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
}
.pd-gallery { position: sticky; top: 100px; align-self: start; }
.pd-main-image {
  aspect-ratio: 3/4;
  background: var(--cream-soft);
  overflow: hidden; margin-bottom: 1rem;
  perspective: 1200px;
  cursor: none;
}
.pd-main-image-inner {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out-expo);
}
.pd-main-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.pd-thumb {
  aspect-ratio: 1; background: var(--cream-soft);
  overflow: hidden; cursor: none;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pd-thumb.active { border-color: var(--gold-deep); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { padding-top: 1rem; }
.pd-cat { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.pd-title { font-family: 'Italiana', serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--olive-darker); margin-bottom: 1rem; }
.pd-price { font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 1.5rem; font-weight: 400; }
.pd-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; font-size: 0.8rem; color: var(--olive-darker); opacity: 0.7; }
.pd-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.95rem; }
.pd-desc { font-size: 0.95rem; line-height: 1.85; color: var(--olive-darker); opacity: 0.8; margin-bottom: 2rem; }
.pd-divider { height: 1px; background: rgba(31,32,8,0.1); margin: 2rem 0; }
.pd-options { margin-bottom: 2rem; }
.pd-options-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive-darker); margin-bottom: 1rem; }
.pd-swatches { display: flex; gap: 0.6rem; }
.pd-swatch {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: none; transition: border-color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.pd-swatch:hover { transform: scale(1.05); }
.pd-swatch.active { border-color: var(--olive-darker); }
.pd-swatch-inner { width: 100%; height: 100%; border-radius: 50%; }
.pd-qty { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.pd-qty-control { display: flex; align-items: center; border: 1px solid rgba(31,32,8,0.2); }
.pd-qty-control button { background: none; border: none; padding: 0.8rem 1rem; cursor: none; color: var(--olive-darker); font-size: 1rem; transition: background 0.15s; }
.pd-qty-control button:hover { background: rgba(31,32,8,0.06); }
.pd-qty-control input { width: 50px; text-align: center; border: none; background: transparent; color: var(--olive-darker); font-family: 'Manrope', sans-serif; outline: none; }
.pd-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.pd-actions .btn { flex: 1; justify-content: center; min-width: 180px; }
.pd-wishlist {
  width: 56px; height: 56px;
  border: 1px solid rgba(31,32,8,0.2);
  background: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.pd-wishlist:hover { background: rgba(31,32,8,0.05); border-color: var(--gold-deep); }
.pd-meta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pd-meta-row { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--olive-darker); }
.pd-meta-label { opacity: 0.5; min-width: 90px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; padding-top: 2px; }
.pd-accordion { margin-top: 2.5rem; border-top: 1px solid rgba(31,32,8,0.1); }
.pd-acc-item { border-bottom: 1px solid rgba(31,32,8,0.1); }
.pd-acc-trigger {
  width: 100%; background: none; border: none;
  padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-darker); cursor: none; font-weight: 400;
}
.pd-acc-trigger .icon { transition: transform 0.3s; }
.pd-acc-item.open .pd-acc-trigger .icon { transform: rotate(45deg); }
.pd-acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 0.88rem; line-height: 1.7; color: var(--olive-darker); opacity: 0.8; }
.pd-acc-item.open .pd-acc-content { max-height: 400px; padding-bottom: 1.2rem; }

.related {
  background: var(--cream-warm);
  padding: 5rem 2.5rem;
  color: var(--olive-darker);
}
.related-header { max-width: 1400px; margin: 0 auto 3rem; text-align: center; }
.related-header h3 { font-family: 'Italiana', serif; font-size: 2.5rem; color: var(--olive-darker); font-weight: 400; }

/* Confetti petals */
.confetti-petal {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50% 0 50% 0;
  background: var(--gold);
  z-index: 9000;
  pointer-events: none;
  will-change: transform;
}

/* =============================================================
   PORTFOLIO + IG STORIES
   ============================================================= */
.portfolio-intro {
  padding: 8rem 2.5rem;
  background: var(--olive-deep);
  position: relative;
}
.portfolio-intro-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.portfolio-intro h2 {
  font-family: 'Italiana', serif; font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.05;
  color: var(--cream); margin-bottom: 2.5rem;
}
.portfolio-intro h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-weight: 300; }
.portfolio-intro p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; line-height: 1.8;
  color: var(--cream); opacity: 0.85;
  max-width: 720px; margin: 0 auto;
}
.portfolio-french {
  margin-top: 3rem;
  font-family: 'Italiana', serif;
  font-size: 1rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
}

.ig-stories-section {
  background: var(--cream);
  padding: 5rem 2.5rem 4rem;
  color: var(--olive-darker);
}
.ig-stories-section .section-eyebrow { color: var(--gold-deep); justify-content: center; }
.ig-stories-section .section-eyebrow::before { display: none; }
.ig-stories-section .section-title { color: var(--olive-darker); text-align: center; }
.ig-stories-section .section-title em { color: var(--gold-deep); }
.ig-stories-header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}
.ig-stories-tip {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--olive-darker);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.ig-stories-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  scrollbar-width: thin;
}
.ig-story {
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  width: 92px;
}
.ig-story:hover { transform: translateY(-3px); }
.ig-story-ring {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3px;
}
.ig-story.viewed .ig-story-ring { background: rgba(31,32,8,0.25); }
.ig-story-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--cream);
  padding: 3px;
  overflow: hidden;
}
.ig-story-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-story-label {
  font-size: 0.72rem;
  color: var(--olive-darker);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
  font-weight: 400;
}

/* IG Story Viewer */
.story-viewer {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.story-viewer.open { display: flex; }
.sv-card {
  position: relative;
  width: min(100%, 420px);
  height: min(85vh, 760px);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sv-progress {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex;
  gap: 4px;
  z-index: 5;
}
.sv-bar {
  flex: 1; height: 3px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
  border-radius: 3px;
}
.sv-bar-fill { height: 100%; width: 0%; background: white; }
.sv-bar.complete .sv-bar-fill { width: 100%; }
.sv-bar.active .sv-bar-fill { animation: storyFill 4s linear forwards; }
@keyframes storyFill { to { width: 100%; } }
.sv-header {
  position: absolute;
  top: 28px; left: 14px; right: 14px;
  display: flex; align-items: center;
  gap: 0.7rem;
  z-index: 5;
  color: white;
}
.sv-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.sv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sv-name { font-size: 0.85rem; font-weight: 500; }
.sv-time { font-size: 0.75rem; opacity: 0.7; }
.sv-close {
  margin-left: auto;
  background: none; border: none;
  color: white; font-size: 1.6rem;
  cursor: none;
  width: 32px; height: 32px;
}
.sv-image-wrap { flex: 1; position: relative; overflow: hidden; }
.sv-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}
.sv-image.visible { opacity: 1; }
.sv-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.sv-caption {
  position: absolute;
  bottom: 90px; left: 18px; right: 18px;
  color: white;
  font-family: 'Italiana', serif;
  font-size: 1.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  z-index: 4;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.sv-cta {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: var(--cream);
  color: var(--olive-darker);
  padding: 0.95rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 4;
  border-radius: 6px;
  transition: background 0.2s;
}
.sv-cta:hover { background: var(--gold); }
.sv-zone-prev, .sv-zone-next {
  position: absolute;
  top: 70px; bottom: 130px;
  width: 30%;
  z-index: 3;
  cursor: none;
  background: transparent;
  border: none;
}
.sv-zone-prev { left: 0; }
.sv-zone-next { right: 0; }

.portfolio-gallery { background: var(--cream); color: var(--ink); padding: 6rem 2.5rem; }
.portfolio-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.pf-tile {
  position: relative; overflow: hidden;
  background: var(--cream-soft);
  cursor: none; aspect-ratio: 1;
  text-decoration: none;
}
.pf-tile.tall { grid-row: span 2; aspect-ratio: 1/2; }
.pf-tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
.pf-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out-expo); }
.pf-tile:hover img { transform: scale(1.06); }
.pf-tile-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,32,8,0.85), transparent 60%);
  padding: 1.5rem;
  transform: translateY(20px); opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.pf-tile:hover .pf-tile-cap { transform: translateY(0); opacity: 1; }
.pf-tile-cap h4 { font-family: 'Italiana', serif; color: var(--cream); font-size: 1.4rem; font-weight: 400; }
.pf-tile-cap span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }

/* =============================================================
   ABOUT - founder + timeline
   ============================================================= */
.founder-section { padding: 8rem 2.5rem; background: var(--olive); }
.founder-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}
.founder-image { position: relative; }
.founder-image-frame { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-soft); }
.founder-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-tag {
  position: absolute; top: 1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--olive-darker);
  padding: 0.5rem 1.2rem;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
}
.founder-text h3 {
  font-family: 'Italiana', serif; font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05;
  color: var(--cream); margin-bottom: 2rem;
}
.founder-text h3 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-weight: 300; }
.founder-text p { font-size: 1rem; line-height: 1.8; color: var(--cream); opacity: 0.78; margin-bottom: 1.4rem; }

.timeline-section { padding: 8rem 2.5rem; background: var(--olive-deep); }
.timeline-header { max-width: 1300px; margin: 0 auto 5rem; text-align: center; }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(242,235,217,0.2); }
.tl-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; position: relative; }
.tl-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; }
.tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.tl-dot { position: absolute; top: 0.5rem; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--olive-deep); z-index: 2; }
.tl-year { font-family: 'Italiana', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 0.5rem; line-height: 1; }
.tl-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: var(--cream); margin-bottom: 0.8rem; }
.tl-desc { font-size: 0.9rem; line-height: 1.7; color: var(--cream); opacity: 0.7; }

/* =============================================================
   JOURNAL — Dual feed (NYC + Miami)
   ============================================================= */
.journal-intro {
  padding: 8rem 2.5rem 3rem;
  text-align: center;
  background: var(--olive);
}
.ig-handle {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--cream); color: var(--olive-darker);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 2rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.ig-handle:hover { background: var(--bone); transform: translateY(-2px); }
.ig-handle svg { width: 16px; height: 16px; }
.ig-handle.miami {
  background: var(--miami-coral); color: var(--cream);
}
.ig-handle.miami:hover { background: var(--miami-deep); }

.journal-intro h1 { font-family: 'Italiana', serif; font-weight: 400; font-size: clamp(3rem, 7vw, 5.5rem); color: var(--cream); margin-bottom: 1.5rem; line-height: 1; }
.journal-intro h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); }
.journal-intro p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--cream); opacity: 0.75; max-width: 580px; margin: 0 auto; }

/* Feed toggle */
.feed-toggle {
  display: inline-flex;
  background: var(--olive-deep);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(242,235,217,0.15);
  margin: 3rem auto 0;
}
.feed-toggle button {
  background: none; border: none;
  padding: 0.7rem 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--cream);
  cursor: none; border-radius: 999px;
  transition: background 0.3s, color 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.feed-toggle button.active.nyc { background: var(--cream); color: var(--olive-darker); }
.feed-toggle button.active.miami { background: var(--miami-coral); color: var(--cream); }
.feed-toggle button .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}

.journal-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 2rem; }
.j-stat { text-align: center; }
.j-stat-num { font-family: 'Italiana', serif; font-size: 2rem; color: var(--gold); display: block; line-height: 1; }
.j-stat-num.miami { color: var(--miami-coral); }
.j-stat-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); opacity: 0.7; margin-top: 0.5rem; }

.journal-grid-wrap { background: var(--cream); padding: 5rem 2.5rem; }
.journal-grid-wrap.miami { background: var(--miami-sand); }
.journal-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.journal-feed {
  display: none;
}
.journal-feed.active {
  display: block;
}
.j-post {
  position: relative; aspect-ratio: 1;
  overflow: hidden; cursor: none;
  background: var(--cream-soft);
  text-decoration: none;
}
.j-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.6s; }
.j-post.miami img { filter: saturate(1.15) hue-rotate(-8deg) contrast(1.05); }
.j-post:hover img { transform: scale(1.05); }
.j-post-overlay {
  position: absolute; inset: 0;
  background: rgba(31,32,8,0.6);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
  color: var(--cream);
}
.j-post.miami .j-post-overlay { background: rgba(107,46,42,0.6); }
.j-post:hover .j-post-overlay { opacity: 1; }
.j-post-stat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; }
.j-post-stat svg { width: 18px; height: 18px; fill: var(--cream); }
.j-post-cap { position: absolute; top: 0.8rem; left: 0.8rem; background: rgba(31,32,8,0.6); backdrop-filter: blur(4px); color: var(--cream); padding: 0.3rem 0.7rem; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }
.j-post:hover .j-post-cap { opacity: 1; }

.journal-cta { text-align: center; padding: 5rem 2.5rem; background: var(--cream); }
.journal-cta h3 { font-family: 'Italiana', serif; font-size: 2.2rem; color: var(--olive-darker); margin-bottom: 1.5rem; font-weight: 400; }
.journal-cta p { font-size: 0.95rem; color: var(--olive-darker); opacity: 0.7; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section { padding: 7rem 2.5rem; background: var(--olive); }
.contact-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-info h3 { font-family: 'Italiana', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--cream); margin-bottom: 2rem; }
.contact-info h3 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); }
.contact-info p { font-size: 0.95rem; line-height: 1.7; color: var(--cream); opacity: 0.78; margin-bottom: 2.5rem; max-width: 420px; }
.contact-detail { margin-bottom: 1.8rem; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.contact-detail-value { font-size: 1.05rem; color: var(--cream); }
.contact-detail-value a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(242,235,217,0.3); transition: border-color 0.2s; }
.contact-detail-value a:hover { border-color: var(--gold); }

.contact-form {
  background: var(--cream); color: var(--olive-darker);
  padding: 3rem;
}
.contact-form h4 { font-family: 'Italiana', serif; font-size: 1.6rem; color: var(--olive-darker); margin-bottom: 0.5rem; font-weight: 400; }
.contact-form p { font-size: 0.85rem; color: var(--olive-darker); opacity: 0.7; margin-bottom: 2rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cf-field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.cf-field label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--olive-darker); opacity: 0.7; margin-bottom: 0.5rem; }
.cf-field input, .cf-field textarea, .cf-field select {
  background: var(--cream-warm); border: 1px solid rgba(31,32,8,0.1);
  padding: 0.9rem 1rem; color: var(--olive-darker);
  font-family: 'Manrope', sans-serif; font-size: 0.9rem;
  outline: none; cursor: none;
  transition: border-color 0.2s, background 0.2s;
}
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-color: var(--gold-deep); background: var(--bone); }
.cf-field textarea { resize: vertical; min-height: 120px; font-family: 'Manrope', sans-serif; }
.cf-submit {
  width: 100%; background: var(--olive); color: var(--cream);
  border: none; padding: 1.1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 500;
  cursor: none; transition: background 0.2s; margin-top: 1rem;
}
.cf-submit:hover { background: var(--olive-darker); }

.faq { background: var(--cream); padding: 6rem 2.5rem; color: var(--olive-darker); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq h3 { font-family: 'Italiana', serif; font-size: 2.5rem; text-align: center; margin-bottom: 3rem; color: var(--olive-darker); font-weight: 400; }
.faq-item { border-bottom: 1px solid rgba(31,32,8,0.12); }
.faq-q { width: 100%; background: none; border: none; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--olive-darker); cursor: none; text-align: left; }
.faq-q .icon { transition: transform 0.3s; font-size: 1.2rem; color: var(--gold-deep); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 0.9rem; line-height: 1.7; color: var(--olive-darker); opacity: 0.8; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.5rem; }

/* =============================================================
   GALLERY (vibe sections)
   ============================================================= */
.gallery-vibe { padding: 7rem 2.5rem; position: relative; overflow: hidden; }
.gallery-vibe.vibe-studio { background: var(--olive); }
.gallery-vibe.vibe-move { background: var(--olive-deep); }
.gallery-vibe.vibe-fashion { background: var(--olive-darker); }
.gv-header {
  max-width: 1400px; margin: 0 auto 4rem;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 3rem; align-items: end;
}
.gv-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem; line-height: 1.6;
  color: var(--cream); opacity: 0.75;
  max-width: 380px; justify-self: end;
}
.gv-vibe-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(242,235,217,0.1);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(182,139,59,0.3);
}
.gv-vibe-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.gv-feature-row {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
.gv-feature-row.reverse {
  grid-template-columns: 1fr 1.4fr;
  direction: rtl;
}
.gv-feature-row.reverse > * { direction: ltr; }
.gv-video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(242,235,217,0.1);
  cursor: none;
}
.gv-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; z-index: 3;
}
.gv-video > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gv-video:hover > img { transform: scale(1.04); }
.gv-video .vt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,32,8,0.2), rgba(31,32,8,0.5));
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.gv-video.playing > img,
.gv-video.playing .vt-overlay { display: none; }
.gv-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gv-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-soft);
  position: relative;
}
.gv-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gv-photo:hover img { transform: scale(1.06); }
.gv-photo.studio img { filter: contrast(1.05) saturate(0.85); }
.gv-photo.fashion img { filter: contrast(1.1) brightness(1.02); }
.gv-photo-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(31,32,8,0.5);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.7rem;
}
.gv-mosaic {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gv-mosaic .gv-photo:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

/* =============================================================
   MIAMI PAGE — tropical accent palette
   ============================================================= */
.miami-page { background: var(--miami-deep); color: var(--miami-sand); }
.miami-hero {
  min-height: 100vh;
  padding: 130px 2.5rem 4rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  background: linear-gradient(135deg, var(--miami-deep) 0%, var(--miami-night) 100%);
  overflow: hidden;
}
.miami-hero::before {
  content: ''; position: absolute;
  top: -25%; right: -10%;
  width: 80%; height: 150%;
  background: radial-gradient(circle, var(--miami-coral) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
  animation: miamiSun 20s ease-in-out infinite alternate;
}
@keyframes miamiSun { to { transform: translate(-5%, 5%) scale(1.1); } }
.miami-hero h1 {
  font-family: 'Italiana', serif; font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92; letter-spacing: -0.005em;
  color: var(--miami-sand);
  position: relative; z-index: 2;
}
.miami-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--miami-rose);
  font-weight: 300;
}
.miami-hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--miami-rose);
  margin-bottom: 2rem;
  position: relative; z-index: 2;
}
.miami-hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--miami-rose); }

.miami-hero-meta {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem; line-height: 1.6;
  color: var(--miami-sand); opacity: 0.85;
  max-width: 480px;
  position: relative; z-index: 2;
}
.miami-hero-actions {
  margin-top: 3rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.miami-hero-visual {
  position: relative;
  height: 70vh;
  z-index: 2;
}
.miami-hero-img {
  position: absolute; inset: 0;
  overflow: hidden;
  background: var(--miami-rose);
  border-radius: 4px;
}
.miami-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(1.05);
}
.miami-hero-img-1 {
  top: 0; right: 0;
  width: 70%; height: 80%;
}
.miami-hero-img-2 {
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  border: 6px solid var(--miami-deep);
}

.miami-section { padding: 7rem 2.5rem; }
.miami-divider {
  background: var(--miami-coral);
  color: var(--miami-deep);
  padding: 0;
  border: none;
  text-align: center;
}
.miami-divider .marquee-track { animation-duration: 30s; }
.miami-divider .marquee-item { color: var(--miami-deep); }
.miami-divider .marquee-item span { color: var(--miami-sand); }

.miami-products { background: var(--miami-sand); color: var(--miami-deep); }
.miami-products .section-eyebrow { color: var(--miami-coral); }
.miami-products .section-eyebrow::before { background: var(--miami-coral); }
.miami-products .section-title { color: var(--miami-deep); }
.miami-products .section-title em { color: var(--miami-coral); }
.miami-products .product-grid { grid-template-columns: repeat(3, 1fr); }
.miami-products .product-name { color: var(--miami-deep); }
.miami-products .product-price { color: var(--miami-coral); }
.miami-products .product-cat { color: var(--miami-deep); opacity: 0.55; }
.miami-products .product-img { filter: saturate(1.1); }
.miami-products .product-overlay { background: var(--miami-coral); color: var(--cream); }

/* Miami sticky scroll story */
.miami-story { background: var(--miami-rose); color: var(--miami-deep); padding: 8rem 2.5rem; }
.miami-story-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.miami-story h2 { font-family: 'Italiana', serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 2rem; }
.miami-story h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--miami-deep); }
.miami-story p { font-size: 1rem; line-height: 1.85; opacity: 0.85; margin-bottom: 1.4rem; }
.miami-story blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; padding-left: 1.5rem; border-left: 2px solid var(--miami-coral); margin: 2rem 0; }
.miami-story-image {
  aspect-ratio: 4/5;
  background: var(--miami-coral);
  overflow: hidden;
  border: 8px solid var(--miami-sand);
  box-shadow: 0 30px 60px rgba(43,26,31,0.3);
}
.miami-story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15); }

/* =============================================================
   MODAL
   ============================================================= */
.modal { position: fixed; inset: 0; background: rgba(31,32,8,0.85); backdrop-filter: blur(8px); z-index: 500; display: none; align-items: center; justify-content: center; padding: 2rem; }
.modal.open { display: flex; }
.modal-card { background: var(--cream); color: var(--olive-darker); max-width: 900px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative; animation: modalIn 0.5s var(--ease-out-expo); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-soft); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.modal-cat { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.modal-name { font-family: 'Italiana', serif; font-size: 2.5rem; color: var(--olive-darker); line-height: 1; margin-bottom: 1rem; font-weight: 400; }
.modal-price { font-size: 1.1rem; color: var(--gold-deep); margin-bottom: 1.5rem; }
.modal-desc { font-size: 0.9rem; line-height: 1.7; color: var(--olive-darker); opacity: 0.75; margin-bottom: 2rem; }
.modal-actions { display: flex; gap: 1rem; }
.modal-actions .btn { background: var(--olive); color: var(--cream); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; background: rgba(31,32,8,0.1); border: none; border-radius: 50%; cursor: none; display: flex; align-items: center; justify-content: center; color: var(--olive-darker); font-size: 1.2rem; transition: background 0.2s; z-index: 2; }
.modal-close:hover { background: rgba(31,32,8,0.2); }

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1s; }
.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; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 1s, transform 1s; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================================
   MOBILE NAV
   ============================================================= */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  cursor: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 95;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
  padding: 90px 2rem 2.5rem;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .mm-logo {
  width: 70px; height: 70px;
  border-radius: 50%; overflow: hidden;
  margin-bottom: 0.5rem;
  background: var(--cream-warm);
}
.mobile-menu .mm-logo img { width: 100%; height: 100%; object-fit: cover; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 1.4rem; margin: 1rem 0; }
.mobile-menu a {
  font-family: 'Italiana', serif;
  font-size: 2rem;
  color: var(--olive-darker);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 0.2rem 0;
  position: relative;
  background: none !important;
  border-radius: 0 !important;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-deep) !important; }
.mobile-menu a.active::after {
  content: '✦';
  position: absolute; left: 50%; bottom: -0.8rem;
  transform: translateX(-50%);
  color: var(--gold); font-size: 0.6rem;
}
.mobile-menu .mm-social { display: flex; gap: 2rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(31,32,8,0.1); }
.mobile-menu .mm-social a { font-family: 'Manrope', sans-serif !important; font-size: 0.7rem !important; letter-spacing: 0.25em !important; text-transform: uppercase; }
.mobile-menu .mm-footer { margin-top: 1.5rem; text-align: center; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive-darker); opacity: 0.5; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 968px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-text, .cursor-spotlight { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-bar { padding: 0.7rem 1rem; flex-wrap: wrap; gap: 0.8rem; }
  .nav-pills { display: none; }
  .nav-tagline { display: none; }
  .status-pill { top: 4.5rem; right: 1rem; padding: 0.4rem 0.8rem; }
  .status-text { min-width: 130px; font-size: 0.65rem; }
  .hero { grid-template-columns: 1fr; padding: 130px 1.5rem 4rem; gap: 3rem; }
  .hero-visual { height: 60vh; }
  .scroll-cue { display: none; }
  section { padding: 5rem 1.5rem; }
  .vs-header, .gv-header, .drag-header { grid-template-columns: 1fr; gap: 2rem; }
  .vs-intro, .gv-intro, .drag-intro { justify-self: start; max-width: 100%; }
  .vs-grid { grid-template-columns: 1fr; }
  .gv-feature-row, .gv-feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .gv-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gv-mosaic .gv-photo:first-child { grid-column: span 2; grid-row: span 1; }
  .sticky-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-story-visual { position: relative; top: 0; height: 60vh; }
  .sticky-story-content { gap: 3rem; padding-bottom: 0; }
  .sticky-story-step { min-height: auto; }
  .drag-card { width: 280px; height: 380px; }
  .story-inner, .founder-inner, .contact-inner, .miami-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .miami-hero { grid-template-columns: 1fr; padding: 130px 1.5rem 4rem; gap: 3rem; }
  .miami-hero-visual { height: 50vh; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .miami-products .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-row { grid-template-columns: 1fr; }
  .city-tile { border-right: none; border-bottom: 1px solid rgba(242,235,217,0.15); }
  .atelier-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
  .modal-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .marquee-item { font-size: 1.1rem; }
  .story-list { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; padding-top: 0; }
  .pd-gallery { position: static; }
  .portfolio-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 1fr; gap: 1rem; padding-left: 50px; }
  .tl-item:nth-child(even) .tl-content,
  .tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: left; }
  .tl-dot { left: 20px; }
  .cf-row { grid-template-columns: 1fr; }
  .journal-stats { gap: 2rem; }
  .nav-cart .cart-text { display: none; }
  .ig-stories-row { justify-content: flex-start; flex-wrap: nowrap; padding: 1rem 1rem; }
  .sv-card { width: 100%; height: 100%; border-radius: 0; }
}

/* ============================================================
   EXTRAVAGANCE LAYER v2 — additional luxury interactions
   ============================================================ */

/* === DARK + GOLDEN HOUR THEMES (set on <html>) === */
html[data-theme="golden"] {
  --olive: #8a6a1f;
  --olive-deep: #6e5418;
  --olive-darker: #4a3810;
  --cream: #fbeed1;
  --cream-soft: #f3e2bc;
  --cream-warm: #fff5dc;
  --gold: #e0a83a;
  --gold-deep: #b3801f;
  --ink: #2a1f08;
  --bone: #fffaec;
}
html[data-theme="midnight"] {
  --olive: #1a2412;
  --olive-deep: #0f180a;
  --olive-darker: #060a04;
  --cream: #d8d1bb;
  --cream-soft: #c0b89e;
  --cream-warm: #2a3422;
  --gold: #d4a544;
  --gold-deep: #a37f2b;
  --ink: #e6dec2;
  --bone: #1a2412;
}
html[data-theme="midnight"] body {
  background: var(--olive);
}
html[data-theme="midnight"] .nav-bar,
html[data-theme="midnight"] footer,
html[data-theme="midnight"] .lookbook,
html[data-theme="midnight"] .collection,
html[data-theme="midnight"] .related,
html[data-theme="midnight"] .product-detail,
html[data-theme="midnight"] .ig-stories-section,
html[data-theme="midnight"] .portfolio-gallery,
html[data-theme="midnight"] .journal-grid-wrap,
html[data-theme="midnight"] .journal-cta,
html[data-theme="midnight"] .faq,
html[data-theme="midnight"] .contact-form {
  background: var(--cream-warm);
  color: var(--ink);
}
html[data-theme="midnight"] .nav-pills { background: rgba(216,209,187,0.08); }
html[data-theme="midnight"] .nav-pills a { color: var(--ink); }
html[data-theme="midnight"] .filter-row { background: rgba(216,209,187,0.08); }

html, body, .nav-bar, footer, .hero, section, .lookbook, .collection,
.product-img-wrap, .pd-main-image, .pf-tile, .lb-tile, .j-post,
.cf-field input, .cf-field textarea, .cf-field select, .pd-thumb,
.atelier, .newsletter, .cities, .city-tile, .marquee, .video-tile,
.gv-photo, .gv-video, .product, .ig-story-img, .modal-card {
  transition: background 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

/* === FLOATING TOOLBOX (theme + cart + back-to-top) === */
.fab-stack {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 150;
  display: flex; flex-direction: column;
  gap: 0.7rem;
}
.fab {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--olive-darker);
  color: var(--cream);
  border: 1px solid rgba(242,235,217,0.18);
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(31,32,8,0.25);
}
.fab:hover {
  background: var(--gold-deep);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(31,32,8,0.35);
}
.fab svg { width: 20px; height: 20px; }
.fab-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--olive-darker);
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--olive-darker);
}
.fab-totop {
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.fab-totop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.fab-sound .ico-on,
.fab-sound .ico-off { width: 20px; height: 20px; }
.fab-sound .ico-off { display: none; }
.fab-sound.muted .ico-on { display: none; }
.fab-sound.muted .ico-off { display: inline-block; }
.fab-sound.muted { opacity: 0.7; }
@keyframes audioPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.fab-sound:not(.muted):hover svg { animation: audioPulse 1.4s ease-in-out infinite; }

/* === THEME SWITCHER MENU === */
.theme-menu {
  position: absolute;
  right: 60px; bottom: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex; flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 12px 32px rgba(31,32,8,0.3);
  opacity: 0; pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  min-width: 180px;
}
.theme-menu.open { opacity: 1; pointer-events: auto; transform: translateX(0); }
.theme-menu button {
  display: flex; align-items: center; gap: 0.7rem;
  background: none; border: none;
  padding: 0.6rem 0.8rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--olive-darker);
  cursor: none;
  border-radius: 6px;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}
.theme-menu button:hover, .theme-menu button.active {
  background: var(--cream-warm);
  color: var(--gold-deep);
}
.theme-swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(31,32,8,0.15);
}
.theme-swatch.day { background: linear-gradient(135deg, #6E7A2A 50%, #F2EBD9 50%); }
.theme-swatch.golden { background: linear-gradient(135deg, #8a6a1f 50%, #fbeed1 50%); }
.theme-swatch.midnight { background: linear-gradient(135deg, #1a2412 50%, #d8d1bb 50%); }

/* === CART DRAWER === */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--cream);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(31,32,8,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(31,32,8,0.45);
  backdrop-filter: blur(4px);
  z-index: 590;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }
.cd-head {
  padding: 1.5rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(31,32,8,0.1);
}
.cd-head h3 {
  font-family: 'Italiana', serif;
  font-size: 1.6rem;
  color: var(--olive-darker);
  font-weight: 400;
}
.cd-head button {
  background: rgba(31,32,8,0.06);
  border: none; cursor: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--olive-darker);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.cd-body { flex: 1; overflow-y: auto; padding: 1rem 1.8rem; }
.cd-empty {
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--olive-darker);
  opacity: 0.6;
  font-size: 1.05rem;
}
.cd-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31,32,8,0.08);
  align-items: center;
}
.cd-item-img {
  width: 70px; height: 80px;
  background: var(--cream-soft);
  overflow: hidden;
}
.cd-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cd-item-name {
  font-family: 'Italiana', serif;
  font-size: 1.05rem;
  color: var(--olive-darker);
}
.cd-item-meta {
  font-size: 0.7rem;
  color: var(--olive-darker);
  opacity: 0.6;
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}
.cd-item-price {
  font-size: 0.95rem;
  color: var(--gold-deep);
}
.cd-remove {
  background: none; border: none; cursor: none;
  color: var(--olive-darker);
  opacity: 0.4;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  text-align: right;
}
.cd-remove:hover { opacity: 1; color: var(--gold-deep); }
.cd-foot {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid rgba(31,32,8,0.1);
  background: var(--cream-warm);
}
.cd-total {
  display: flex; justify-content: space-between;
  margin-bottom: 1.2rem;
  font-family: 'Italiana', serif;
  font-size: 1.3rem;
  color: var(--olive-darker);
}
.cd-total span:last-child { color: var(--gold-deep); }
.cd-checkout {
  width: 100%; padding: 1rem;
  background: var(--olive-darker); color: var(--cream);
  border: none; cursor: none;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.2s;
}
.cd-checkout:hover { background: var(--gold-deep); }

/* === IMAGE LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 700;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes lbFadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lb-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; font-size: 1.4rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.5rem; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* === ATELIER STATUS BADGE === */
.atelier-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(110,122,42,0.1);
  border: 1px solid rgba(110,122,42,0.2);
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-darker);
}
.atelier-status .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6E7A2A;
  position: relative;
  flex-shrink: 0;
}
.atelier-status.open .pulse { background: #6e9c2c; }
.atelier-status.open .pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: #6e9c2c;
  opacity: 0.5;
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}
.atelier-status.closed .pulse { background: #b06d2c; }

/* === CONFETTI === */
.confetti {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  font-size: 1.2rem;
  animation: confettiFall 2.6s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
  will-change: transform, opacity;
}
@keyframes confettiFall {
  0% { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--tx, 80px), var(--ty, 400px)) rotate(var(--tr, 720deg)); opacity: 0; }
}

/* === PAGE TRANSITION CURTAIN === */
.page-curtain {
  position: fixed; inset: 0;
  z-index: 8500;
  pointer-events: none;
  background: var(--olive-darker);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.page-curtain.in { transform: scaleY(1); transform-origin: bottom; }
.page-curtain.out { transform: scaleY(0); transform-origin: top; }
.page-curtain::after {
  content: 'A·S·W·N';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Italiana', serif;
  font-size: 2.5rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.page-curtain.in::after { opacity: 1; }

/* === GREETING BAR === */
.greeting-bar {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  background: var(--olive-darker);
  padding: 0.5rem;
  opacity: 0.95;
}
.greeting-bar .accent { color: var(--gold); }

/* === ROTATING HERO TAGLINES === */
.hero-rotator {
  display: inline-block;
  position: relative;
  min-width: 4ch;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}
.hero-rotator-word {
  display: inline-block;
  animation: rotatorIn 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes rotatorIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* === MATERIAL TEXTURES STRIP (HOME) === */
.materials {
  background: var(--cream-warm);
  color: var(--olive-darker);
  padding: 6rem 2.5rem;
  text-align: center;
}
.materials .section-title { color: var(--olive-darker); }
.materials .section-title em { color: var(--gold-deep); }
.mats-row {
  max-width: 1300px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.mat {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-soft);
  cursor: none;
}
.mat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s, filter 0.4s;
}
.mat:hover img {
  transform: scale(1.08);
  filter: contrast(1.1) saturate(1.1);
}
.mat-label {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  font-family: 'Italiana', serif;
  font-size: 1.3rem;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  z-index: 2;
  text-align: left;
}
.mat-label small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

/* === STORY CHAPTERS (scroll cinema) === */
.chapters {
  background: var(--olive-darker);
  padding: 6rem 0;
  overflow: hidden;
}
.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
  align-items: center;
}
.chapter:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.chapter:nth-child(even) > * { direction: ltr; }
.chapter-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.chapter-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.chapter-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Italiana', serif;
  color: var(--cream);
  background: rgba(31,32,8,0.5);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  z-index: 2;
}
.chapter-text h3 {
  font-family: 'Italiana', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-weight: 400;
}
.chapter-text h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}
.chapter-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.78;
  margin-bottom: 1rem;
}
.chapter-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* === MIAMI CHAPTER (gallery) === */
.miami-chapter {
  background: linear-gradient(180deg, #b56a3f 0%, #d68a4d 50%, #f2c285 100%);
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.miami-chapter::before {
  content: 'MIAMI';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Italiana', serif;
  font-size: clamp(15rem, 35vw, 32rem);
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.15em;
  pointer-events: none; white-space: nowrap;
  line-height: 1;
}
.miami-header {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto 4rem;
  text-align: center;
}
.miami-header .gv-vibe-badge {
  background: rgba(255,255,255,0.15);
  color: #fff5dc;
  border-color: rgba(255,245,220,0.3);
  margin-bottom: 1rem;
}
.miami-header .gv-vibe-badge::before { background: #fff5dc; }
.miami-header h2 {
  font-family: 'Italiana', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff5dc;
  line-height: 1; font-weight: 400;
}
.miami-header h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #ffeac2;
}
.miami-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #fff5dc;
  opacity: 0.85;
  max-width: 600px;
  margin: 1.5rem auto 0;
}
.miami-handle {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  background: rgba(255,255,255,0.95);
  color: #b56a3f;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.2s;
}
.miami-handle:hover { transform: translateY(-2px); }
.miami-mosaic {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.miami-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.1);
}
.miami-tile.tall { grid-row: span 2; aspect-ratio: 1/2; }
.miami-tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
.miami-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
  transition: transform 0.7s, filter 0.4s;
}
.miami-tile:hover img { transform: scale(1.08); filter: saturate(1.4) contrast(1.1); }
.miami-tile-cap {
  position: absolute;
  bottom: 0.6rem; left: 0.8rem; right: 0.8rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.miami-tile:hover .miami-tile-cap { opacity: 1; transform: translateY(0); }
.miami-vibes {
  position: relative; z-index: 2;
  max-width: 900px; margin: 4rem auto 0;
  text-align: center;
  display: flex; justify-content: center; gap: 0.7rem;
  flex-wrap: wrap;
}
.miami-vibe-tag {
  background: rgba(255,255,255,0.15);
  color: #fff5dc;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,245,220,0.3);
}

/* === STICKY ADD-TO-CART BAR (product page) === */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid rgba(31,32,8,0.1);
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  z-index: 90;
  box-shadow: 0 -8px 30px rgba(31,32,8,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sc-thumb {
  width: 50px; height: 60px;
  overflow: hidden;
  background: var(--cream-soft);
}
.sc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sc-info { display: flex; flex-direction: column; gap: 0.2rem; }
.sc-name {
  font-family: 'Italiana', serif;
  font-size: 1.05rem;
  color: var(--olive-darker);
}
.sc-price { font-size: 0.85rem; color: var(--gold-deep); }
.sc-add {
  background: var(--olive); color: var(--cream);
  border: none; cursor: none;
  padding: 0.9rem 1.8rem;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.2s;
}
.sc-add:hover { background: var(--olive-darker); }

/* === CHIP TAGS / EYEBROW PILLS === */
.chip-row {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.chip {
  background: rgba(182,139,59,0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(182,139,59,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* === SCROLL VELOCITY MARQUEE (responds to scroll) === */
.velocity-marquee {
  background: var(--olive-darker);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(242,235,217,0.1);
  border-bottom: 1px solid rgba(242,235,217,0.1);
}
.velocity-track {
  display: flex; gap: 4rem;
  white-space: nowrap;
  width: max-content;
  font-family: 'Italiana', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  will-change: transform;
}
.velocity-item span {
  display: inline-block;
  margin: 0 1.5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.7em;
  vertical-align: middle;
}

/* === MOBILE TWEAKS for new components === */
@media (max-width: 968px) {
  .fab-stack { right: 1rem; bottom: 1rem; }
  .fab { width: 44px; height: 44px; }
  .theme-menu { right: 54px; min-width: 160px; }
  .mats-row { grid-template-columns: repeat(2, 1fr); }
  .chapter, .chapter:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .miami-mosaic { grid-template-columns: repeat(2, 1fr); }
  .miami-tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
  .sticky-cta {
    grid-template-columns: 1fr auto;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }
  .sticky-cta .sc-thumb { display: none; }
  .sc-add { padding: 0.7rem 1.2rem; font-size: 0.65rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-close { top: 0.5rem; right: 0.5rem; }
}
