*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #1a1a1a;
    --bg2: #222222;
    --bg3: #2c2c2c;
    --gold: #B89C5D;
    --gold-light: #d4b97a;
    --gold-dim: #8a7444;
    --cream: #F5F0E8;
    --cream-dim: #c8c0b0;
    --maroon: #6B2737;
    --maroon-light: #8a3347;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --serif2: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
    --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --motion-ease-2: cubic-bezier(0.2, 0.9, 0.2, 1);
    --motion-slow: 900ms;
    --motion-medium: 520ms;
    --motion-fast: 280ms;
    --reveal-duration: 760ms;
  }

  html { scroll-behavior: smooth; }

@media (min-width: 900px) {
  html, body { scroll-behavior: smooth; scroll-snap-type: y proximity; }
  section { scroll-snap-align: start; }
}

  body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    cursor: auto;
  }

  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.6;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { transform: translate(-50%, -50%) scale(1.8); opacity: 0.3; }

  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    height: 80px;
    background: transparent;
    transition: background 0.5s ease, height 0.5s ease, border-color 0.5s ease;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(18,18,18,0.96);
    backdrop-filter: blur(12px);
    height: 64px;
    border-bottom-color: rgba(184,156,93,0.15);
  }

  .nav-logo {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative; z-index: 200;
    padding: 6px 8px; border-radius: 6px;
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
  }
  .nav-logo::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 70%);
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.8s ease;
    mix-blend-mode: overlay; opacity: 0.9;
  }
  .nav-logo:hover::after { transform: skewX(-20deg) translateX(150%); }

  .nav-logo-img {
    width: 48px; height: 48px; object-fit: contain;
    display: block; transform-origin: center; border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), filter 0.3s ease;
    animation: logoEntrance 900ms cubic-bezier(0.2,0.8,0.2,1) both;
  }

  .nav-logo-text {
    font-family: var(--serif); color: var(--gold); font-size: 1.25rem;
    letter-spacing: 0.25em; transform-origin: left center;
    text-shadow: 0 2px 0 rgba(0,0,0,0.35);
    animation: textPop 700ms cubic-bezier(0.2,0.8,0.2,1) both;
  }

  .nav-logo:hover .nav-logo-img { transform: translateY(-4px) rotate(-6deg) scale(1.05); filter: saturate(1.05); }
  .nav-logo:hover { transform: translateY(-2px); }

  @keyframes logoEntrance {
    from { transform: translateY(-8px) scale(0.9) rotate(-6deg); opacity: 0; }
    to { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
  }
  @keyframes textPop {
    from { transform: translateY(6px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cream-dim); text-decoration: none;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-icons { display: flex; gap: 1.5rem; align-items: center; }
  .nav-icons button {
    background: none; border: none; cursor: pointer;
    color: var(--cream-dim); transition: color 0.3s;
    padding: 4px;
  }
  .nav-icons button:hover { color: var(--gold); }
  .nav-icons svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  .nav-toggle {
    display: none; background: none; border: none; color: var(--gold);
    padding: 8px; margin-left: 0.5rem; cursor: pointer;
    align-items: center; justify-content: center;
  }
  @media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .nav-links { display: none; position: absolute; top: 80px; right: 1.25rem; background: rgba(12,12,12,0.98); padding: 1rem 1.25rem; border-radius: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.6); flex-direction: column; gap: 1rem; z-index: 110; }
    nav.open .nav-links { display: flex; }
    .nav-links a { font-size: 0.9rem; color: var(--cream); }
  }
  .nav-toggle svg { width: 22px; height: 22px; display: block; }

  .hero {
    position: relative; height: calc(var(--vh, 1vh) * 100);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(160deg, rgba(107,39,55,0.3) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%),
      #1a1a1a;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(184,156,93,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,156,93,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-orb:nth-child(1) { width: 500px; height: 500px; background: rgba(107,39,55,0.18); top: -100px; right: -100px; animation-delay: 0s; }
  .hero-orb:nth-child(2) { width: 400px; height: 400px; background: rgba(184,156,93,0.08); bottom: -80px; left: -80px; animation-delay: 3s; }
  @keyframes orbFloat { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(20px,-20px); } }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 2rem;
    animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
    opacity: 0; transform: translateY(30px);
  }
  @keyframes heroReveal { to { opacity:1; transform:translateY(0); } }

  .hero-eyebrow {
    font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: heroReveal 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700; color: var(--cream);
    letter-spacing: 0.1em; line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: heroReveal 1.4s 0.35s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero-slogan {
    font-family: var(--serif2); font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300; font-style: italic;
    color: var(--cream-dim); letter-spacing: 0.08em;
    margin-bottom: 3rem;
    animation: heroReveal 1.4s 0.5s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero-cta {
    animation: heroReveal 1.4s 0.65s cubic-bezier(0.16,1,0.3,1) both;
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gold); color: var(--bg);
    font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer;
    position: relative; overflow: hidden;
    transition: color var(--motion-fast) var(--motion-ease-2), transform var(--motion-fast) var(--motion-ease-2);
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--maroon);
    transform: scaleX(0); transform-origin: right;
    transition: transform var(--motion-fast) cubic-bezier(0.76,0,0.24,1);
  }
  .btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary:hover { color: var(--cream); transform: translateY(-2px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent; color: var(--cream);
    font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(245,240,232,0.3); cursor: pointer;
    position: relative; overflow: hidden;
    transition: color var(--motion-fast) var(--motion-ease-2), border-color var(--motion-fast) var(--motion-ease-2), transform var(--motion-fast) var(--motion-ease-2);
  }
  .btn-outline::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(245,240,232,0.06);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  }
  .btn-outline:hover::before { transform: scaleX(1); transform-origin: left; }
  .btn-outline:hover { border-color: rgba(245,240,232,0.6); color: var(--cream); transform: translateY(-2px); }
  .btn-outline span { position: relative; z-index: 1; }

  .btn-text {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--gold-dim);
    transition: border-color 0.3s, gap 0.3s;
  }
  .btn-text:hover { border-color: var(--gold); gap: 0.75rem; }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: heroReveal 1.4s 1s cubic-bezier(0.16,1,0.3,1) both;
  }
  .hero-scroll span { font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold-dim); text-transform: uppercase; }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:0.4; transform:scaleY(1);} 50%{opacity:1; transform:scaleY(0.8);} }

  section { position: relative; }
  .section-eyebrow {
    font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 1rem;
  }
  h2.section-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600; color: var(--gold);
    line-height: 1.15; letter-spacing: 0.02em;
  }
  .divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.5rem 0;
  }
  .divider.center { margin: 1.5rem auto; background: linear-gradient(to right, transparent, var(--gold), transparent); width: 120px; }

  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity var(--reveal-duration) var(--motion-ease), transform var(--reveal-duration) var(--motion-ease);
    will-change: transform, opacity;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 80ms; }
  .reveal-delay-2 { transition-delay: 160ms; }
  .reveal-delay-3 { transition-delay: 260ms; }
  .reveal-delay-4 { transition-delay: 360ms; }

  @media (prefers-reduced-motion: reduce) {
    :root { --reveal-duration: 120ms; }
    * { transition-duration: 0ms !important; animation-duration: 0ms !important; }
    .cursor, .cursor-ring { display: none !important; }
  }

  :root.reduced-motion * { transition-duration: 0ms !important; animation-duration: 0ms !important; }

  .story {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  @media (max-width: 900px) {
    .story { grid-template-columns: 1fr; }
    .story-image { min-height: 380px; }
    .story-text { padding: 3rem 1.5rem; }
  }
  .story-text {
    padding: 8rem 5rem 8rem 6rem;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--bg2);
    position: relative; overflow: hidden;
  }
  .story-text::before {
    content: '"';
    position: absolute; top: -2rem; left: 3rem;
    font-family: var(--serif); font-size: 20rem;
    color: rgba(184,156,93,0.04); line-height: 1;
    pointer-events: none;
  }
  .story-text p {
    font-size: 0.95rem; line-height: 1.95;
    color: var(--cream-dim); margin-bottom: 1.2rem;
  }
  .story-text p strong { color: var(--cream); font-weight: 500; }
  .story-image {
    position: relative; overflow: hidden;
    background: var(--bg3);
    min-height: 500px;
  }
  .story-image-inner {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(107,39,55,0.4) 0%, rgba(26,26,26,0.6) 100%),
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(184,156,93,0.03) 10px,
        rgba(184,156,93,0.03) 11px
      );
    display: flex; align-items: center; justify-content: center;
  }
  .craft-visual {
    text-align: center; padding: 2rem;
  }
  .craft-monogram {
    font-family: var(--serif); font-size: 8rem; font-weight: 700;
    color: var(--gold); opacity: 0.4; line-height: 1;
    letter-spacing: -0.05em;
  }
  .craft-label {
    font-size: 0.6rem; letter-spacing: 0.5em; color: var(--gold);
    text-transform: uppercase; margin-top: 1rem;
  }
  .story-badge {
    position: absolute; bottom: 3rem; right: 3rem;
    width: 100px; height: 100px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    animation: rotateBadge 20s linear infinite;
  }
  @keyframes rotateBadge { to { transform: rotate(360deg); } }
  .story-badge span { font-size: 0.55rem; letter-spacing: 0.2em; color: var(--gold-dim); }

  .collections { padding: 8rem 4rem; background: var(--bg); }
  .collections-header { text-align: center; margin-bottom: 4rem; }
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,156,93,0.1);
  }
  @media (max-width: 1100px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card { aspect-ratio: auto; min-height: 280px; }
  }
  .collection-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg3);
    cursor: pointer;
    transition: transform var(--motion-medium) var(--motion-ease-2), box-shadow var(--motion-medium) ease;
    will-change: transform;
  }
  .collection-card:first-child { grid-column: span 2; aspect-ratio: unset; min-height: 500px; }
  .collection-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .collection-card:hover .collection-bg { transform: scale(1.05); }
  .collection-bg-1 { background: linear-gradient(135deg, #3a1f28 0%, #1a1010 60%, #2c1a1a 100%); }
  .collection-bg-2 { background: linear-gradient(135deg, #1a1f2e 0%, #0d1320 60%, #1a1f28 100%); }
  .collection-bg-3 { background: linear-gradient(135deg, #1f2818 0%, #111a0d 60%, #1a2218 100%); }
  .collection-bg-4 { background: linear-gradient(135deg, #28201a 0%, #1a140d 60%, #221a12 100%); }

  .collection-pattern {
    position: absolute; inset: 0; opacity: 0.15;
  }
  .collection-pattern-1 {
    background:
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(184,156,93,0.3) 40px, rgba(184,156,93,0.3) 41px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(184,156,93,0.3) 40px, rgba(184,156,93,0.3) 41px);
  }
  .collection-pattern-2 {
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(184,156,93,0.2) 20px, rgba(184,156,93,0.2) 21px);
  }
  .collection-pattern-3 {
    background: radial-gradient(circle at 50% 50%, rgba(184,156,93,0.15) 0%, transparent 70%);
  }
  .collection-pattern-4 {
    background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(184,156,93,0.2) 20px, rgba(184,156,93,0.2) 21px);
  }

  .collection-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.2) 50%, transparent 100%);
    transition: background 0.5s;
  }
  .collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.5) 60%, rgba(18,18,18,0.2) 100%);
  }
  .collection-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .collection-tag {
    font-size: 0.55rem; letter-spacing: 0.35em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 0.75rem;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
  }
  .collection-card:hover .collection-tag { opacity: 1; transform: translateY(0); }
  .collection-name {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
    color: var(--cream); line-height: 1.2; margin-bottom: 0.5rem;
  }
  .collection-card:first-child .collection-name { font-size: 2.4rem; }
  .collection-sub {
    font-size: 0.75rem; color: var(--cream-dim); margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
  }
  .collection-card:hover .collection-sub { opacity: 1; transform: translateY(0); }
  .collection-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s 0.2s, transform 0.4s 0.2s, gap 0.3s;
  }
  .collection-card:hover .collection-cta { opacity: 1; transform: translateY(0); }
  .collection-cta:hover { gap: 0.75rem; }

  .collection-num {
    position: absolute; top: 2rem; right: 2rem;
    font-family: var(--serif); font-size: 4rem; font-weight: 700;
    color: rgba(184,156,93,0.08); line-height: 1;
    pointer-events: none;
  }
  .new-arrivals {
    padding: 6rem 4rem; background: linear-gradient(180deg, var(--bg) 0%, rgba(18,18,18,0.98) 100%);
  }
  .new-arrivals .collections-header { text-align: center; margin-bottom: 2.5rem; }
  .arrivals-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
  }
  .arrival-card {
    position: relative; overflow: hidden; border-radius: 8px; background: var(--bg3);
    min-height: 320px; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transition: transform var(--motion-medium) var(--motion-ease-2), box-shadow var(--motion-medium) ease;
  }
  .arrival-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    will-change: transform, filter; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s ease;
  }
  .arrival-card:hover img { transform: scale(1.04) translateY(-6px); filter: brightness(1.02); }
  .arrival-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end;
    padding: 1.5rem; background: linear-gradient(to top, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.22) 60%, transparent 100%);
    transition: background 0.3s ease;
  }
  .arrival-info { display: flex; flex-direction: column; gap: 0.35rem; }
  .arrival-name {
    font-family: var(--serif); font-size: 1.05rem; color: var(--cream); font-weight: 600;
  }
  .arrival-price { font-family: var(--sans); font-size: 0.9rem; color: var(--gold); }
  .new-arrivals .collection-cta { color: var(--gold); border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; margin-top: 0.25rem; display: inline-block; }

  @media (max-width: 1100px) { .arrivals-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 700px) { .arrivals-grid { grid-template-columns: 1fr; } .new-arrivals { padding: 3rem 1rem; } .arrival-card { min-height: 220px; } }

  .arrivals-scroll { position: relative; overflow: hidden; }
  .arrivals-grid.is-carousel {
    display: flex; flex-wrap: nowrap; align-items: stretch; gap: 1rem;
    transition: transform 400ms ease;
  }
  .arrivals-grid.is-carousel .arrival-card { flex: 0 0 calc(33.333% - 0.66rem); min-width: 280px; }
  .arrival-card { will-change: transform, opacity; }
  .arrival-card.anim-float { animation: floatUp 6s ease-in-out infinite; }
  @keyframes floatUp { 0%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} 100%{ transform: translateY(0);} }

  .arrivals-scroll:hover { cursor: grab; }

  .arrivals-controls {
    position: absolute; top: 50%; right: 2rem; transform: translateY(-50%); display: flex; gap: 0.5rem; z-index: 40;
  }
  .arrivals-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(245,240,232,0.06);
    background: rgba(18,18,18,0.6); color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; line-height: 1; transition: transform 0.18s ease, background 0.18s ease;
  }
  .arrivals-btn:hover { transform: translateY(-3px); background: rgba(184,156,93,0.08); }
  .arrivals-indicators { display:flex; gap: 0.5rem; justify-content:center; margin-top: 1rem; }
  .arrivals-indicators .indicator {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(245,240,232,0.08); cursor: pointer; transition: transform 160ms ease, background 160ms ease;
  }
  .arrivals-indicators .indicator.active { background: var(--gold); transform: scale(1.25); }

  @media (max-width: 900px) {
    .arrivals-controls { right: 1rem; }
    .arrivals-btn { width: 40px; height: 40px; }
  }

  .spotlight {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 90vh; background: var(--bg2);
  }
  @media (max-width: 900px) {
    .spotlight { grid-template-columns: 1fr; padding-bottom: 2rem; }
    .spotlight-image { min-height: 420px; }
    .spotlight-details { padding: 2.5rem 1.5rem; }
  }
  .spotlight-image {
    position: relative; overflow: hidden;
    background: var(--bg3); min-height: 600px;
  }
  .spotlight-image-inner {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2a1520 0%, #1a1010 50%, #0d0d0d 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .spotlight-image-inner {
    --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
    perspective: 1200px;
    transition: transform 700ms cubic-bezier(0.16,1,0.3,1);
    will-change: transform;
  }
  .spotlight-photo {
    position: relative; z-index: 1;
    max-width: 72%; height: auto; display: block; border-radius: 6px;
    transform-origin: center center;
    transition: transform 700ms cubic-bezier(0.2,0.9,0.2,1), filter 520ms ease, opacity 420ms ease;
    will-change: transform, filter, opacity;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 6px 18px rgba(0,0,0,0.6);
    object-fit: cover;
  }
  .spotlight-photo.overlay {
    position: absolute; inset: 0; width: 100%; height: 100%; top: 0; left: 0;
    opacity: 0; transition: opacity 480ms cubic-bezier(0.2,0.9,0.2,1);
    z-index: 2; pointer-events: none; border-radius: 6px;
  }
  .spotlight-photo.overlay.show { opacity: 1; }
  .spotlight-photo.base-anim { filter: blur(6px) saturate(0.92) contrast(0.98); transform: scale(0.995); }

  .spotlight-image-inner::after {
    content: '';
    position: absolute; inset: -30%; z-index: 0; pointer-events: none;
    background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.06), transparent 22%);
    transition: background-position 160ms linear, opacity 200ms ease;
    opacity: 1;
  }

  .spotlight-image-inner.animate-spotlight .spotlight-photo {
    transform: translateY(-8px) rotateX(calc(var(--rx))) rotateY(calc(var(--ry))) scale(1.04);
    opacity: 1;
  }

  .spotlight-mannequin {
    width: 280px; height: 480px;
    border: 1px solid rgba(184,156,93,0.2);
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .mannequin-label {
    writing-mode: vertical-rl; text-orientation: mixed;
    font-size: 0.55rem; letter-spacing: 0.4em; color: var(--gold-dim);
    text-transform: uppercase; position: absolute; right: -2rem;
  }
  .spotlight-num {
    position: absolute; top: 2rem; left: 2rem;
    font-family: var(--serif); font-size: 10rem; font-weight: 700;
    color: rgba(184,156,93,0.05); line-height: 1;
  }
  .spotlight-image-label {
    position: absolute; bottom: 3rem; left: 3rem;
    writing-mode: horizontal-tb;
  }
  .image-tag {
    display: inline-block;
    font-size: 0.6rem; letter-spacing: 0.3em;
    color: var(--gold); text-transform: uppercase;
    border: 1px solid var(--gold-dim);
    padding: 0.4rem 1rem;
  }

  .spotlight-details {
    padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center;
  }
  .spotlight-details h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600; color: var(--gold);
    line-height: 1.2; margin-bottom: 0.5rem;
  }
  .spotlight-price {
    font-family: var(--serif); font-size: 2.2rem;
    color: var(--gold); margin: 1.5rem 0;
  }
  .spotlight-price span {
    font-family: var(--sans); font-size: 0.75rem;
    color: var(--cream-dim); vertical-align: super;
  }
  .spotlight-desc {
    font-size: 0.85rem; line-height: 1.9;
    color: var(--cream-dim); margin-bottom: 2.5rem;
    border-left: 2px solid var(--gold-dim);
    padding-left: 1.5rem;
  }

  .selector-group { margin-bottom: 1.5rem; }
  .selector-label {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-dim); margin-bottom: 0.75rem; display: block;
  }
  .size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .size-btn {
    width: 44px; height: 44px; background: transparent;
    border: 1px solid rgba(245,240,232,0.15);
    color: var(--cream-dim); cursor: none;
    font-family: var(--sans); font-size: 0.75rem;
    transition: all 0.25s;
  }
  .size-btn { cursor: pointer; }
  .size-btn:hover, .size-btn.active {
    border-color: var(--gold); color: var(--gold);
    background: rgba(184,156,93,0.08);
  }
  .color-options { display: flex; gap: 0.75rem; }
  .color-swatch {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s;
    position: relative;
  }
  .color-swatch::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 1px solid transparent;
    transition: border-color 0.25s;
  }
  .color-swatch:hover::after, .color-swatch.active::after { border-color: var(--gold); }
  .c-cream { background: #F5F0E8; }
  .c-navy { background: #c66262; }
  .c-brown { background: #8B4513; }

  .spotlight-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .btn-cart {
    flex: 1; min-width: 200px;
    padding: 1rem 2rem; background: var(--maroon);
    border: 1px solid var(--maroon-light);
    color: var(--cream);
    font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    cursor: pointer; position: relative; overflow: hidden;
    transition: background 0.4s;
  }
  .btn-cart::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold); transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
  }
  .btn-cart:hover::before { transform: scaleX(1); transform-origin: left; }
  .btn-cart span { position: relative; z-index: 1; }
  .btn-cart:hover span { color: var(--bg); }

  .trust-badges {
    display: flex; gap: 2rem; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(184,156,93,0.1);
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; flex-direction: column; gap: 0.2rem;
  }
  .trust-item strong { font-size: 0.7rem; color: var(--cream); font-weight: 500; }
  .trust-item span { font-size: 0.6rem; color: var(--cream-dim); letter-spacing: 0.05em; }

.page-hero {
  padding: 6rem 4rem; background: linear-gradient(180deg, rgba(26,26,26,0.6), rgba(18,18,18,0.9));
  display:flex; align-items:center; gap:2rem; flex-wrap:wrap; justify-content:space-between;
}
.page-hero .hero-left { max-width: 720px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,3.6rem); color: var(--gold); margin-bottom: 0.5rem; }
.page-hero p { color: var(--cream-dim); line-height:1.8; }

.contact-grid { display:grid; grid-template-columns: 1fr 420px; gap:2rem; padding:4rem; }
@media (max-width:900px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-form { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding: 2rem; border-radius: 12px; border:1px solid rgba(184,156,93,0.06); }
.contact-form label{ display:block; font-size:0.75rem; color:var(--cream-dim); margin-bottom:0.35rem; }
.contact-form input, .contact-form textarea{ width:100%; padding:0.85rem 1rem; background:transparent; border:1px solid rgba(245,240,232,0.04); color:var(--cream); border-radius:8px; margin-bottom:0.9rem; }
.contact-form textarea{ min-height:140px; resize:vertical; }
.contact-form .form-row{ display:flex; gap:0.75rem; }
.contact-form .btn-submit{ background:var(--gold); color:var(--bg); border:none; padding:0.9rem 1.1rem; cursor:pointer; border-radius:8px; font-weight:600; letter-spacing:0.12em; }
.contact-form .btn-submit:active{ transform:translateY(1px) scale(0.995); }

.toast { position: fixed; right: 1.5rem; bottom: 1.5rem; background: rgba(34,34,34,0.95); color: var(--cream); padding: 0.9rem 1.2rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.6); opacity:0; transform: translateY(12px) scale(0.98); transition: all 420ms cubic-bezier(0.2,0.9,0.2,1); z-index:99999; }
.toast.show{ opacity:1; transform: translateY(0) scale(1); }

.faq-accordion { padding: 3rem 4rem; display:flex; gap:2rem; }
.faq-list { flex:1; }
.faq-item { background: var(--bg3); border:1px solid rgba(245,240,232,0.03); border-radius:10px; margin-bottom:0.8rem; overflow:hidden; }
.faq-q { padding: 1rem 1.25rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq-q h4{ font-size:0.95rem; color:var(--cream); }
.faq-a { padding: 0 1.25rem; height:0; overflow:hidden; transition: height 420ms cubic-bezier(0.2,0.9,0.2,1), padding 220ms ease; }
.faq-item.open .faq-a { padding: 1rem 1.25rem; }

.policy-article { padding: 3rem 4rem; max-width: 980px; margin: 0 auto; }
.policy-article h3 { color: var(--gold); margin-top:1.25rem; }
.toc { position: sticky; top: 100px; margin-left:2rem; background: transparent; }

.page-animate { opacity:0; transform: translateY(18px) scale(0.995); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.page-animate.visible { opacity:1; transform: translateY(0) scale(1); }

.social-section { padding: 4rem 2rem; background: linear-gradient(180deg, rgba(18,18,18,0.85), rgba(12,12,12,0.95)); }
.social-hero { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem 0 2rem; }
.social-hero h1 { font-family: var(--serif); color: var(--gold); margin:0; }
.social-hero p { color: var(--cream-dim); margin:0; }

.social-feed { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items:start; }
@media (max-width:1100px){ .social-feed{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:700px){ .social-feed{ grid-template-columns: 1fr; } }

.post-card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(184,156,93,0.04); padding:1rem; border-radius:14px; overflow:hidden; min-height:160px; display:flex; flex-direction:column; gap:0.6rem; transition: transform 420ms cubic-bezier(0.2,0.9,0.2,1), box-shadow 420ms ease, background 420ms ease; transform-origin:center; }
.post-card:hover{ transform: translateY(-8px) scale(1.02); box-shadow: 0 28px 60px rgba(0,0,0,0.6); }
.post-meta { display:flex; align-items:center; gap:0.75rem; }
.post-meta img{ width:44px; height:44px; border-radius:8px; object-fit:cover; }
.post-author { font-weight:700; color:var(--cream); }
.post-time { font-size:0.8rem; color:var(--cream-dim); }

.social-embed { margin-top:0.5rem; width:100%; }

.social-post { opacity:0; transform: translateY(20px) scale(0.995); transition: opacity 560ms cubic-bezier(0.16,1,0.3,1), transform 560ms cubic-bezier(0.16,1,0.3,1); }
.social-post.visible { opacity:1; transform: translateY(0) scale(1); }

.social-feed.masonry {
  display: block; column-gap: 1.25rem;
  column-fill: balance;
}
.social-feed.masonry .post-card { display: inline-block; width: 100%; margin: 0 0 1.25rem; }

.layout-controls { display:flex; gap:0.5rem; align-items:center; }
.layout-btn { background:transparent; border:1px solid rgba(245,240,232,0.04); color:var(--cream); padding:0.5rem 0.75rem; border-radius:8px; cursor:pointer; }
.layout-btn.active{ border-color:var(--gold); background:rgba(184,156,93,0.04); }

.post-skeleton{ height:220px; border-radius:12px; background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.035), rgba(255,255,255,0.02)); animation: shimmer 1.6s linear infinite; }
@keyframes shimmer{ 0%{background-position:-200px 0;} 100%{background-position:200px 0;} }

.lightbox { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(2,6,23,0.7); z-index:99999; }
.lightbox.show { display:flex; }
.lightbox-inner { width:min(900px,94vw); background:linear-gradient(180deg, #0f0f0f, #0b0b0b); border-radius:12px; padding:1rem; box-shadow:0 30px 80px rgba(0,0,0,0.8); }
.lightbox-close { position:absolute; right:1.25rem; top:1.25rem; background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--cream); padding:0.5rem 0.6rem; border-radius:8px; cursor:pointer; }
.lightbox-content { max-height:78vh; overflow:auto; }

  .newsletter {
    padding: 8rem 4rem;
    background: var(--bg);
    position: relative; overflow: hidden;
  }
  .newsletter::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184,156,93,0.06) 0%, transparent 70%);
  }
  .newsletter-inner {
    position: relative; z-index: 1;
    max-width: 600px; margin: 0 auto; text-align: center;
  }
  .newsletter h2 { margin-bottom: 1rem; }
  .newsletter p {
    font-size: 0.85rem; color: var(--cream-dim); line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .social-proof {
    font-size: 0.7rem; color: var(--gold-dim); margin-bottom: 2rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .social-proof::before, .social-proof::after {
    content: ''; flex: 1; max-width: 60px;
    height: 1px; background: rgba(184,156,93,0.2);
  }
  .newsletter-form {
    display: flex; gap: 0; max-width: 460px; margin: 0 auto 3rem;
  }
  .newsletter-form input {
    flex: 1; padding: 1rem 1.5rem;
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(184,156,93,0.2);
    border-right: none;
    color: var(--cream); font-family: var(--sans); font-size: 0.8rem;
    outline: none; transition: border-color 0.3s;
  }
  .newsletter-form input::placeholder { color: rgba(245,240,232,0.3); }
  .newsletter-form input:focus { border-color: var(--gold-dim); }
  .newsletter-form button {
    padding: 1rem 1.75rem;
    background: var(--gold); color: var(--bg);
    border: 1px solid var(--gold); cursor: none;
    font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
  }
  .newsletter-form button { cursor: pointer; }
  .newsletter-form button:hover { background: var(--gold-light); }
  .social-icons { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
  .social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(184,156,93,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dim); text-decoration: none;
    transition: all 0.3s;
  }
  .social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,156,93,0.08); }
  .social-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  footer {
    background: #111111;
    border-top: 1px solid rgba(184,156,93,0.1);
  }
  .footer-main {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding: 5rem 5rem 4rem;
  }
  .footer-brand h3 {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem;
  }
  .footer-brand p {
    font-size: 0.8rem; color: var(--cream-dim); line-height: 1.8;
    max-width: 260px; margin-bottom: 1.5rem;
  }
  .footer-col h4 {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-col ul li a {
    font-size: 0.8rem; color: var(--cream-dim); text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
  }
  .footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
  .footer-bar {
    border-top: 1px solid rgba(184,156,93,0.08);
    padding: 1.5rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.7rem; color: var(--cream-dim); opacity: 0.6; }
  .payment-icons { display: flex; gap: 0.75rem; align-items: center; }
  .payment-icon {
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 3px;
    font-size: 0.6rem; letter-spacing: 0.05em;
    color: var(--cream-dim); opacity: 0.5;
    font-weight: 500;
  }

  .hero-bg img.hero-image {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; filter: saturate(0.95) contrast(0.95) brightness(0.9);
    pointer-events: none; z-index: 1;
    will-change: transform, opacity;
    transform: translateY(var(--parallax,0px)) scale(1.02);
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
  }

  .collection-bg img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; border-radius: 6px; z-index: 0;
    will-change: transform, filter;
    transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1), filter 0.5s ease;
    filter: brightness(0.95) saturate(0.98);
  }

  .story-image-inner img.story-photo {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    border-radius: 6px; z-index: 0; opacity: 0.98;
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1), opacity 0.4s ease;
  }

  .spotlight-image-inner img.spotlight-photo {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    z-index: 0; opacity: 0.98; transform-origin: center;
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1), opacity 0.4s ease;
  }

    .spotlight-image-inner img.spotlight-photo.overlay {
      z-index: 2; opacity: 0; pointer-events: none;
      transform: scale(1.04) translateY(6px);
      transition: opacity 420ms cubic-bezier(0.22,1,0.36,1), transform 520ms cubic-bezier(0.22,1,0.36,1);
      filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6));
    }
    .spotlight-image-inner img.spotlight-photo.overlay.show {
      opacity: 1; transform: scale(1) translateY(0);
    }

    .spotlight-image-inner img.spotlight-photo.base-anim {
      transform: scale(0.99) translateY(-8px);
      transition: transform 520ms cubic-bezier(0.22,1,0.36,1), opacity 360ms ease;
    }

    /* Swatch active state polish */
    .color-swatch.active {
      box-shadow: 0 6px 18px rgba(0,0,0,0.5), 0 0 0 4px rgba(184,156,93,0.06) inset;
      transform: translateY(-2px) scale(1.04);
    }

    /* Accessibility: focus styles */
    .color-swatch:focus { outline: 2px solid rgba(184,156,93,0.18); outline-offset: 3px; }

  /* Image-protection helper (visuals unaffected) */
  .no-save { -webkit-user-drag: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; }
  .no-save img { -webkit-user-drag: none; user-drag: none; pointer-events: auto; }

  /* Intro overlay */
  #siteIntro {
    position: fixed; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,1), rgba(12,12,12,0.95));
    display: flex; align-items: center; justify-content: center; z-index: 99999; pointer-events: none;
  }
  #siteIntroInner { display:flex; align-items:center; justify-content:center; }
  #introLogo { width: 220px; height: auto; opacity: 0; transform: scale(0.76) rotate(-6deg); filter: drop-shadow(0 18px 44px rgba(0,0,0,0.6)); transition: transform 900ms cubic-bezier(0.2,0.9,0.2,1), opacity 900ms ease, filter 900ms ease; }
  #introLogo.animate-in { opacity: 1; transform: scale(1) rotate(0deg); }
  #siteIntro.hide { opacity: 0; transition: opacity 600ms ease; pointer-events: none; }

  /* small-screen adjustments for large tap targets */
  @media (max-width: 700px) {
    .btn-primary, .btn-outline, .btn-cart { padding: 0.9rem 1.25rem; font-size: 0.9rem; }
    .nav-logo-text { display: none; }
  }

  /* Intro word (VINTAGE) animation */
  #introWord {
    margin-top: 1rem; letter-spacing: 0.4em; color: var(--gold);
    font-family: var(--serif); font-size: 1.6rem; opacity: 0;
    display: flex; gap: 0.12rem; justify-content: center; align-items: center;
  }
  #introWord .letter {
    display: inline-block; transform: translateY(18px) scale(0.98); opacity: 0;
    transition: transform 520ms cubic-bezier(0.2,0.9,0.2,1), opacity 420ms ease;
  }
  #introWord .letter.in { transform: translateY(0) scale(1); opacity: 1; }

  .intro-center { display:flex; flex-direction:column; align-items:center; gap:0.4rem; }
  .intro-controls { display:flex; gap:0.6rem; align-items:center; margin-top:1rem; }
  .intro-checkbox { color: var(--cream); font-size: 0.95rem; display:flex; align-items:center; gap:0.4rem; }
  .intro-checkbox input { width:18px; height:18px; accent-color: var(--gold); }
  .skip-intro { margin-left: 0.4rem; background: transparent; border: 1px solid rgba(245,240,232,0.12); color: var(--cream); padding: 0.5rem 0.9rem; border-radius: 6px; cursor: pointer; transition: background 240ms ease, transform 200ms ease; }
  .skip-intro:hover { background: rgba(245,240,232,0.03); transform: translateY(-2px); }

  /* Peak intro animation for logo */
  @keyframes logoPeak {
    0% { transform: scale(0.78) rotate(-6deg); filter: blur(2px) drop-shadow(0 10px 30px rgba(0,0,0,0.45)); }
    30% { transform: scale(1.06) rotate(2deg); filter: blur(0px) drop-shadow(0 28px 48px rgba(0,0,0,0.6)); }
    60% { transform: scale(0.98) rotate(-1deg); }
    100% { transform: scale(1) rotate(0deg); filter: blur(0px) drop-shadow(0 18px 44px rgba(0,0,0,0.6)); }
  }
  #introLogo.animate-in { animation: logoPeak 2000ms cubic-bezier(0.22,0.7,0.2,1) both; }

  /* Letter peak bounce */
  #introWord .letter.in { animation: letterPop 1200ms cubic-bezier(0.2,0.9,0.2,1) both; }
  @keyframes letterPop { 0% { transform: translateY(18px) scale(0.98); opacity:0; } 50% { transform: translateY(-6px) scale(1.05); opacity:1; } 100% { transform: translateY(0) scale(1); opacity:1; } }

  

  /* Grand-scroll active subtle scale effect */
  .grand-scroll-active section { transition: transform 800ms cubic-bezier(0.2,0.9,0.2,1); }
  .grand-scroll-active .hero { transform: scale(1.02); }

  /* Ensure overlay covers fixed header for the intro */
  #siteIntro { padding-top: 40px; }

  /* Collection card polish */
  .collection-card { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
  .collection-card:hover { box-shadow: 0 16px 60px rgba(0,0,0,0.7); }
  .collection-card:hover .collection-bg img { transform: scale(1.06) translateY(-4px); filter: brightness(1); }
  .collection-card::before { content: ''; position: absolute; inset: 0; border-radius: 8px; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.02); }

  /* Subtle overlay adjustments for better legibility */
  .collection-overlay { background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.35) 55%, transparent 100%); }
  .collection-card:hover .collection-overlay { background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.45) 55%, transparent 100%); }

  /* Story & spotlight hover lift */
  .story-image-inner:hover img.story-photo { transform: scale(1.03) translateY(-6px); }
  .spotlight-image-inner:hover img.spotlight-photo { transform: scale(1.02) translateY(-8px); }

  /* Add subtle framed caption style for accessibility */
  .collection-content { background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%); }

  /* ── MARQUEE ── */
  .marquee-section {
    overflow: hidden; padding: 1.5rem 0;
    background: var(--gold);
    border-top: none;
  }
  .marquee-track {
    display: flex; width: max-content;
    animation: marqueeScroll 20s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marqueeScroll { to { transform: translateX(-50%); } }
  .marquee-item {
    display: flex; align-items: center; gap: 2rem;
    padding: 0 2rem; white-space: nowrap;
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--bg); font-weight: 600;
  }
  .marquee-dot {
    width: 4px; height: 4px; border-radius: 50%; background: var(--bg); opacity: 0.4;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .nav-icons { gap: 1rem; }
    .nav-toggle { display: inline-flex; }
    nav.open { background: rgba(18,18,18,0.98); backdrop-filter: blur(8px); }
    nav.open .nav-links {
      display: flex; position: fixed; left: 0; right: 0; top: 64px; z-index: 95;
      background: rgba(12,12,12,0.98); flex-direction: column; gap: 1rem;
      padding: 1.5rem 1.25rem; align-items: center; transform-origin: top center;
    }
    nav.open .nav-links a { font-size: 0.95rem; letter-spacing: 0.12em; padding: 12px 8px; }
    .story, .spotlight { grid-template-columns: 1fr; }
    .story-text { padding: 3.5rem 1.5rem; }
    .story-image { min-height: 320px; }
    .spotlight-details { padding: 2.5rem 1.5rem; }
    .collections { padding: 3.5rem 1rem; }
    .collections-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .collection-card:first-child { grid-column: span 2; min-height: 380px; }
    .collection-content { padding: 1.25rem; }
    .collection-tag { font-size: 0.55rem; }
    .collection-name { font-size: 1.25rem; }
    .collection-sub { font-size: 0.72rem; }
    .collection-cta { font-size: 0.65rem; }
    .footer-main { grid-template-columns: 1fr 1fr; padding: 2rem 1rem; }
    .footer-bar { padding: 1rem 1rem; }
    .newsletter { padding: 3.5rem 1rem; }
    .newsletter-form { flex-direction: column; gap: 0.75rem; }
    .newsletter-form input, .newsletter-form button { width: 100%; }
    .newsletter-form input { border-right: none; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 0.9rem 1rem; font-size: 0.85rem; }
    .nav-icons button { padding: 10px; }
  }

  @media (max-width: 600px) {
    .hero { height: calc(var(--vh, 1vh) * 70); }
    .hero-content { padding: 0 1rem; }
    .hero h1 { font-size: 2.2rem; line-height: 1.05; }
    .hero-slogan { font-size: 0.95rem; }
    .hero-bg img.hero-image { object-position: center 20%; transform: translateY(var(--parallax,0px)) scale(1.06); }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card:first-child { grid-column: span 1; min-height: 320px; }
    .collection-card { aspect-ratio: unset; padding-bottom: 0; }
    .collection-content { padding: 1rem; }
    .collection-name { font-size: 1.15rem; }
    .collection-num { font-size: 3.6rem; right: 1rem; top: 1rem; }
    .spotlight { grid-template-columns: 1fr; }
    .spotlight-image { min-height: 360px; }
    .spotlight-image-inner img.spotlight-photo { object-position: center; }
    .spotlight-details { padding: 2rem 1rem; }
    .btn-cart, .btn-outline { width: 100%; }
    .footer-main { grid-template-columns: 1fr; padding: 1.5rem; }
    .trust-badges { flex-direction: column; gap: 0.75rem; }
    .hero-scroll { display: none; }
    /* Mobile-specific hero adjustments */
    .hero-grid, .hero-orb { display: none !important; }
    .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.18em; margin-bottom: 0.8rem; }
    .hero h1 { font-size: 2.2rem; line-height: 1.02; letter-spacing: 0.02em; }
    .hero h1 em { font-size: 1.15em; }
    .hero-cta { gap: 0.75rem; }
    .btn-primary, .btn-outline { padding: 0.9rem 1rem; font-size: 0.85rem; }
    .hero-content { padding-top: 6vh; }
  }

  /* Touch and low-precision pointer devices */
  @media (hover: none), (pointer: coarse) {
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto; }
    .btn-primary, .btn-outline, .btn-cart, .collection-cta, .size-btn { touch-action: manipulation; }
    .btn-primary, .btn-outline, .btn-cart { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .collection-card { box-shadow: 0 6px 20px rgba(0,0,0,0.55); }
    .nav-toggle { cursor: pointer; }
  }
  @media (max-width: 380px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-slogan { font-size: 0.9rem; }
    .btn-primary, .btn-outline { padding: 0.8rem 0.9rem; font-size: 0.9rem; }
    .hero-cta { flex-direction: column; gap: 0.6rem; }
    .btn-primary, .btn-outline { width: 100%; }
    .hero-content { padding-top: 4vh; }
  }

  /* Product actions (like / comment) */
  .product-actions {
    display: flex; gap: 0.6rem; position: absolute; top: 12px; left: 12px; z-index: 6;
  }
  .product-actions .like-btn, .product-actions .comment-btn {
    background: rgba(0,0,0,0.45); border: 1px solid rgba(245,240,232,0.06);
    color: var(--cream); padding: 0.4rem 0.6rem; border-radius: 6px; cursor: pointer; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .product-actions .like-btn[aria-pressed="true"] { background: linear-gradient(90deg, rgba(184,156,93,0.12), rgba(184,156,93,0.06)); color: var(--gold); border-color: rgba(184,156,93,0.12); }
  .product-actions .like-count { font-weight: 700; min-width: 22px; text-align: right; display: inline-block; }

  /* Comments modal */
  .comments-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 99999; }
  .comments-modal[aria-hidden="false"] { display: flex; }
  .comments-modal::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
  .comments-panel { position: relative; width: min(720px, 96%); max-height: 80vh; overflow: auto; background: #0f0f0f; border: 1px solid rgba(184,156,93,0.06); padding: 1.25rem; border-radius: 10px; z-index: 2; }
  .comments-close { position: absolute; right: 12px; top: 12px; background: transparent; border: none; color: var(--cream-dim); font-size: 1.2rem; cursor: pointer; }
  .comments-title { font-family: var(--serif); color: var(--gold); margin-bottom: 0.75rem; }
  .comments-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.75rem; }
  .comment-item { background: rgba(245,240,232,0.02); border: 1px solid rgba(245,240,232,0.03); padding: 0.75rem; border-radius: 6px; }
  .comment-meta { font-size: 0.75rem; color: var(--cream-dim); margin-bottom: 0.35rem; }
  .comment-body { color: var(--cream); font-size: 0.95rem; line-height: 1.4; }
  .comments-form input, .comments-form textarea { width: 100%; padding: 0.75rem; background: rgba(245,240,232,0.03); border: 1px solid rgba(245,240,232,0.04); color: var(--cream); border-radius: 6px; margin-bottom: 0.6rem; }
  .comments-form textarea { min-height: 96px; resize: vertical; }
  .comments-form-row { display: flex; gap: 0.6rem; justify-content: flex-end; }
  .comments-cancel { background: transparent; border: 1px solid rgba(245,240,232,0.06); color: var(--cream); padding: 0.6rem 0.9rem; border-radius: 6px; cursor: pointer; }

  @media (max-width: 700px) {
    .product-actions { top: 8px; left: 8px; }
    .comments-panel { width: 96%; padding: 1rem; }
  }

  /* Small spacing for embedded tweets/X posts */
  .social-embed { margin-top: 1.5rem; display:flex; justify-content:center; }
  .social-embed blockquote { max-width: 680px; width: 100%; }

/* Tilt helper classes for pointer-based 3D interactions */
.tilt { transform-style: preserve-3d; }
.tilt-inner { transition: transform var(--motion-medium) var(--motion-ease); will-change: transform; }
