/* ═══════════════════════════════════════════
   LUXE FORM — Premium Furniture CSS
   ═══════════════════════════════════════════ */

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --charcoal: #1A1814;
  --brown: #8B6F47;
  --gold: #C4A265;
  --gold-light: #D4B483;
  --dark: #0F0D0A;
  --text-muted: #6B6258;
  --border: rgba(139, 111, 71, 0.15);

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

  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
  --radius: 4px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* ═══════════ CUSTOM CURSOR ═══════════ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 162, 101, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

body:hover .cursor-follower { opacity: 1; }

a:hover ~ .cursor,
button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2.5); }

/* ═══════════ LOADER ═══════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.3em;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.loader-bar {
  width: 240px;
  height: 1px;
  background: rgba(245, 240, 232, 0.15);
  margin: 0 auto 20px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loader-count {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  transition: background var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo { display: flex; flex-direction: column; gap: 2px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { opacity: 1; color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-wishlist, .btn-cart {
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all var(--transition-fast);
  border-radius: var(--radius);
}

.btn-wishlist:hover, .btn-cart:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.mobile-menu-inner a:hover { color: var(--gold); }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-primary.large {
  padding: 18px 48px;
  font-size: 0.8rem;
}

.btn-primary.light {
  background: var(--cream);
  color: var(--dark);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(245, 240, 232, 0.35);
  color: var(--cream);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all var(--transition-fast);
  border-radius: var(--radius);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost.light { border-color: rgba(245,240,232,0.5); color: var(--cream); }

/* ═══════════ SECTION LABELS ═══════════ */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-label.light { color: rgba(245,240,232,0.7); }
.section-label.light::before { background: rgba(245,240,232,0.5); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* ─── Slider ─── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(0.77,0,0.18,1), transform 6s ease;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide.prev-out {
  opacity: 0;
  transform: scale(0.97);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10,8,6,0.82) 0%,
    rgba(10,8,6,0.45) 55%,
    rgba(10,8,6,0.25) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(10,8,6,0.2) 0%,
    rgba(10,8,6,0) 40%,
    rgba(10,8,6,0.65) 80%,
    rgba(10,8,6,1) 100%
  );
}

/* ─── Slide Counter ─── */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.slide-counter #slide-current {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
}

.counter-div {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(245,240,232,0.2);
}

/* ─── Progress Bar ─── */
.slide-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(245,240,232,0.08);
  z-index: 10;
}

.slide-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: none;
}

/* ─── Arrow Buttons ─── */
.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245,240,232,0.18);
  background: rgba(10,8,6,0.35);
  backdrop-filter: blur(6px);
  color: var(--cream);
  cursor: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.slide-arrow svg { width: 20px; height: 20px; }

.slide-prev { left: 3vw; }
.slide-next { right: 3vw; }

.slide-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.08);
}

/* ─── Dot Indicators ─── */
.slide-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(245,240,232,0.3);
  cursor: none;
  transition: all 0.4s ease;
  padding: 0;
}

.dot-btn.active {
  width: 28px;
  border-radius: 3px;
  background: var(--gold);
}

/* ─── Slide Labels ─── */
.slide-labels {
  position: absolute;
  top: 44%;
  right: 4vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.slide-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0);
  display: block;
  transition: color 0.5s ease;
  position: absolute;
  right: 0;
  top: 60px;
}

.slide-label.active {
  color: rgba(245,240,232,0.45);
}

/* ─── Hero Content ─── */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 8vw;
  padding-bottom: 130px;
  max-width: 850px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  overflow: hidden;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2.2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .italic {
  font-style: italic;
  color: var(--gold);
  padding-left: 0.12em;
}

.hero-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.6);
  max-width: 460px;
  margin-bottom: 2.8rem;
  letter-spacing: 0.03em;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-bottom {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 0;
  padding: 1.8rem 8vw;
  border-top: 1px solid rgba(196,162,101,0.12);
  background: rgba(10,8,6,0.55);
  backdrop-filter: blur(14px);
  align-items: center;
}

.hero-divider {
  width: 1px;
  height: 30px;
  background: rgba(245,240,232,0.1);
  margin: 0 3rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.scroll-indicator {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(245,240,232,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  to { left: 100%; }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee-section {
  background: var(--gold);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-items {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
}

.marquee-items span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 2rem;
  font-weight: 500;
}

.marquee-items .dot {
  font-size: 0.5rem;
  color: rgba(15,13,10,0.4);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════ STACK SECTION ═══════════ */
.stack-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
  color: var(--charcoal);
  min-height: 100vh;
}

.stack-left {
  position: relative;
}

.stack-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  padding: 8vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.stack-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stack-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--brown);
}

.stack-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.stack-heading em {
  font-style: italic;
  color: var(--brown);
}

.stack-subtext {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.stack-image-holder {
  position: absolute;
  bottom: -4vh;
  right: -40px;
  width: 55%;
  height: 300px;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  opacity: 0.15;
}

/* Right scrolling cards */
.stack-right {
  padding: 10vh 6vw;
  display: flex;
  flex-direction: column;
  gap: 6vh;
  background: var(--cream);
}

.stack-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(26,24,20,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
}

.stack-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(26,24,20,0.12);
}

.stack-card img {
  height: 280px;
  object-fit: cover;
}

.stack-card .card-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  font-weight: 300;
}

.stack-card { position: relative; }

.stack-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 1.5rem 1.5rem 0.5rem;
}

.stack-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.8;
}

/* ═══════════ COLLECTIONS ═══════════ */
.collections {
  background: var(--charcoal);
  padding: 10vh 5vw;
}

.collections-header {
  text-align: center;
  margin-bottom: 6vh;
}

.collections-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.collections-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.collections-header p {
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.col-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: none;
}

.col-card.large {
  grid-column: span 2;
}

.col-img {
  overflow: hidden;
  background: #1a1814;
}

.col-card.large .col-img { height: 520px; }
.col-card:not(.large) .col-img { height: 340px; }

.col-img img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-card:hover .col-img img {
  transform: scale(1.06);
}

.col-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(15,13,10,0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.col-card:hover .col-info {
  transform: translateY(0);
  opacity: 1;
}

/* Always show for large card */
.col-card.large .col-info {
  opacity: 1;
  transform: translateY(0);
}

.col-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.col-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
}

.col-price {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.1em;
}

.collections-footer {
  text-align: center;
  margin-top: 5vh;
}

/* ═══════════ CRAFT SECTION ═══════════ */
.craft-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  color: var(--cream);
}

.craft-left {
  position: relative;
}

.craft-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  padding: 8vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-sticky h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1.5rem 0 2rem;
  color: var(--cream);
}

.craft-sticky h2 em {
  font-style: italic;
  color: var(--gold);
}

.craft-sticky p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
  max-width: 380px;
  margin-bottom: 3rem;
}

.craft-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

.craft-stats div span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  font-weight: 300;
}

.craft-stats div p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin: 0;
  line-height: 1.5;
}

.craft-right {
  padding: 10vh 6vw;
  display: flex;
  flex-direction: column;
  gap: 5vh;
  background: #141210;
}

.craft-card {
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.craft-card img {
  height: 320px;
  object-fit: cover;
}

.craft-card-text {
  padding: 1.5rem;
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--border);
  border-top: none;
}

.craft-card-text h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.craft-card-text p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.8;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  background: var(--cream);
  color: var(--charcoal);
  padding: 10vh 5vw;
  overflow: hidden;
}

.test-header {
  margin-bottom: 5vh;
}

.test-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

.test-header h2 em {
  font-style: italic;
  color: var(--brown);
}

.test-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.test-card {
  min-width: calc(33.333% - 1.4rem);
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(26,24,20,0.06);
  border: 1px solid rgba(139,111,71,0.08);
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.test-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.test-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--charcoal);
}

.test-author span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.test-nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.test-nav button {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: none;
  cursor: none;
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.test-nav button:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.72);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 10vh 8vw;
  max-width: 700px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-content p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--dark);
  padding: 8vh 8vw 4vh;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-bottom: 5vh;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3vh;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.4);
  border-radius: 50%;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

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

.footer-addr {
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
  color: rgba(245,240,232,0.35);
}

.footer-phone {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  margin-top: 0.5rem !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.08em;
}

.footer-bottom div {
  display: flex;
  gap: 2rem;
}

.footer-bottom a {
  color: rgba(245,240,232,0.2);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: rgba(245,240,232,0.5); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .stack-section,
  .craft-section {
    grid-template-columns: 1fr;
  }

  .stack-sticky,
  .craft-sticky {
    position: relative;
    top: 0;
    height: auto;
    padding: 6vh 5vw;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-card.large { grid-column: span 2; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}

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

  .hero-content { padding: 0 6vw; padding-bottom: 100px; }
  .hero-bottom { gap: 1.5rem; flex-wrap: wrap; }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .col-card.large { grid-column: span 1; }
  .col-card.large .col-img,
  .col-card:not(.large) .col-img { height: 280px; }

  .test-card { min-width: calc(90vw); }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* ═══════════ ANIMATIONS (initial states) ═══════════ */
.hero-eyebrow,
.hero-title .line,
.hero-desc,
.hero-cta,
.hero-stat {
  opacity: 0;
}

.hero-title .line {
  transform: translateY(100%);
}




/* HERO CONTENT FIX */

.hero-content{
    position: relative;
    z-index: 5;
    padding: 0 8vw;
    padding-top: 140px;
    padding-bottom: 120px;
    max-width: 900px;
}

/* TITLE FIX */

.hero-title{
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title .line{
    display: block;
    overflow: visible;
}

/* ITALIC TEXT */

.hero-title .italic{
    font-style: italic;
    color: var(--gold);
    padding-left: 0.06em;
}

/* HERO SECTION FIX */

.hero{
    position: relative;
    height: 100vh;
    min-height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* SLIDER IMAGE FIX */

.slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition:
    opacity 1.2s ease,
    transform 6s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.slide.active{
    opacity: 1;
    transform: scale(1);
}

/* REMOVE BLACK FLASH GLITCH */

.hero-slider{
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #111;
}

/* BOTTOM BAR FIX */

.hero-bottom{
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 1.6rem 8vw;
    background: rgba(10,8,6,0.72);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* MOBILE FIX */

@media(max-width:768px){

    .hero{
        min-height: 760px;
    }

    .hero-content{
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .hero-title{
        font-size: clamp(3rem, 11vw, 4.8rem);
        line-height: 1.08;
    }

    .hero-desc{
        font-size: 14px;
        line-height: 1.8;
    }
}