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

  :root {
    --black:      #0a0a0a;
    --charcoal:   #141415;
    --surface:    #1a1a1d;
    --dark-gold:  #2a2410;
    --border:     rgba(212,175,55,0.08);
    --primary:    #A0622A;
    --secondary:  #a0522d;
    --accent:     #A0622A;
    --offwhite:   #f5f1e8;
    --cream:      #e5ddd0;
    --muted:      #8a8478;
    --fade:       rgba(245,241,232,0.5);
    --luxury-gold: #A0622A;
    --rich-copper: #8b4513;
    --subtle-gold: rgba(212,175,55,0.06);

    --font-display:  'Bebas Neue', sans-serif;
    --font-serif:    'Barlow Condensed', sans-serif;
    --font-narrow:   'Cormorant Garamond', serif;
    --font-secondary: 'Barlow Condensed', sans-serif;
    --font-sans:     'Inter', sans-serif;
  }
  * { font-style: normal; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.6s ease, backdrop-filter 0.6s ease;
  }
  nav.scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--offwhite);
    text-decoration: none;
  }
  .nav-logo span { color: var(--luxury-gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
    position: relative;
  }
  .nav-links a:hover { opacity: 1; color: var(--luxury-gold); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.3));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 11px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  .nav-cta:hover { background: linear-gradient(135deg, var(--accent), var(--luxury-gold)); transform: translateY(-2px); }

  /* ─── HEADER SEARCH BAR ──────────────────────────────────────────────── */
  .nav-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-search-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 12px;
    padding: 8px 36px 8px 14px;
    width: 200px;
    outline: none;
    transition: border-color 0.2s, width 0.3s ease, background 0.2s;
    border-radius: 1px;
  }
  .nav-search-input::placeholder { color: rgba(255,255,255,0.4); }
  .nav-search-input:focus {
    border-color: rgba(212,175,55,0.6);
    background: rgba(255,255,255,0.10);
    width: 260px;
  }
  .nav-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    pointer-events: none;
  }
  .nav-search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    max-width: 90vw;
    background: var(--surface, #1a1a1a);
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    z-index: 9999;
    display: none;
    max-height: 360px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-search-results.open { display: block; }

  /* ─── SHARED SEARCH RESULT ITEMS (header + sidebar) ─────────────────── */
  .fsr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border, rgba(255,255,255,0.1));
    text-decoration: none;
    transition: background 0.2s;
  }
  .fsr-item:last-child { border-bottom: none; }
  .fsr-item:hover { background: rgba(160,98,42,0.08); }
  .fsr-thumb {
    width: 40px; height: 40px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border, rgba(255,255,255,0.1));
  }
  .fsr-thumb-placeholder {
    width: 40px; height: 40px;
    background: var(--charcoal, #222);
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted, #888);
    font-size: 18px;
  }
  .fsr-info { flex: 1; min-width: 0; }
  .fsr-title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--offwhite, #f5f5f5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fsr-price { font-size: 11px; color: var(--luxury-gold, #d4af37); margin-top: 2px; }
  .fsr-price ins { text-decoration: none; }
  .fsr-no-results, .fsr-loading {
    padding: 14px 12px;
    font-size: 12px;
    color: var(--muted, #888);
    font-family: var(--font-sans);
    text-align: center;
  }

  /* â”€â”€â”€ VERTICAL SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .vertical-slider {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .slider-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }
  .slider-number {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--muted);
    transition: all 0.3s ease;
    line-height: 1;
  }
  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.4;
  }
  .slider-item:hover .slider-number { color: var(--luxury-gold); font-size: 22px; }
  .slider-item:hover .slider-dot { background: var(--luxury-gold); width: 12px; height: 12px; opacity: 0.7; }
  .slider-item.active .slider-number { color: var(--luxury-gold); font-size: 22px; letter-spacing: 0.1em; }
  .slider-item.active .slider-dot { background: var(--luxury-gold); width: 14px; height: 14px; opacity: 1; }
  .slider-line {
    position: absolute;
    right: -20px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--luxury-gold), transparent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }
  .slider-item:hover .slider-line { opacity: 0.6; }
  .slider-item.active .slider-line { opacity: 1; }

  @media (max-width: 1024px) { .vertical-slider { display: none; } }

  /* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .hero {
    min-height: 100vh;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-text {
    position: absolute;
    bottom: -4vw; left: -2vw;
    font-family: var(--font-display);
    font-size: clamp(120px, 22vw, 280px);
    color: rgba(200,121,65,0.04);
    letter-spacing: -0.01em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    transition: opacity 0.5s ease;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 6vw 80px 8vw;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--luxury-gold); }

  /* Initial page-load animations â€” these only run once */
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 112px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    will-change: transform, opacity;
    /* Initial load animation */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s 0.3s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .hero-sub {
    font-family: var(--font-secondary);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 400;
    color: var(--fade);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 3rem;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.55s forwards ease;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 1s 0.75s forwards ease;
  }
  .hero-eyebrow {
    opacity: 0;
    animation: fadeUp 1s 0.15s forwards ease;
  }
  /* After slide-ready is set, disable initial animations entirely */
  .slide-ready .hero-headline,
  .slide-ready .hero-sub,
  .slide-ready .hero-actions,
  .slide-ready .hero-eyebrow {
    animation: none !important;
    /* keep whatever computed opacity/transform from the JS */
  }

  .btn-primary {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 14px 42px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232,181,71,0.8);
  }
  .btn-primary:hover { background: linear-gradient(135deg, var(--accent), var(--luxury-gold)); transform: translateY(-3px); border-color: rgba(232,181,71,1); }
  .btn-ghost {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }
  .btn-ghost::before { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.3)); transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .btn-ghost:hover { color: var(--luxury-gold); letter-spacing: 0.35em; }
  .btn-ghost:hover::before { width: 100%; }
  .btn-ghost::after { content: 'â†’'; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-bottle-wrap {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    animation: fadeUp 1.2s 0.4s forwards ease;
    will-change: transform, opacity;
  }
  /* Disable initial bottle animation once slide-ready */
  .slide-ready .hero-bottle-wrap {
    animation: none !important;
  }
  .hero-bottle { width: clamp(200px, 28vw, 400px); display: block; }
  .hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55vw; height: 55vw;
    max-width: 600px; max-height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.12);
    pointer-events: none;
  }
  .hero-ring::before { content: ''; position: absolute; inset: 18%; border-radius: 50%; border: 1px solid rgba(200,121,65,0.1); }
  .hero-year {
    position: absolute;
    bottom: 30%; left: 12%;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--luxury-gold);
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }
  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
  }
  .scroll-line { width: 2px; height: 48px; background: linear-gradient(to bottom, var(--luxury-gold), transparent); animation: scrollPulse 2s infinite; }
  .scroll-text { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

  /* â”€â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  section { position: relative; }
  .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.4)); }

  /* â”€â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .marquee-strip { background: linear-gradient(90deg, var(--luxury-gold), var(--accent)); overflow: hidden; padding: 16px 0; }
  .marquee-inner { display: flex; gap: 0; animation: marquee 28s linear infinite; white-space: nowrap; }
  .marquee-item { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.25em; color: #0a0a0a; padding: 0 3rem; display: inline-block; font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,0.1); }
  .marquee-sep { color: rgba(0,0,0,0.3); }

  /* â”€â”€â”€ STORY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .story { padding: 140px 8vw; background: var(--charcoal); }
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .story-image-wrap { position: relative; overflow: hidden; }
  .story-image-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,121,65,0.12), transparent 60%); z-index: 1; pointer-events: none; }
  .story-image { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.8s ease; background: #2a2318; }
  .story-image-wrap:hover .story-image { transform: scale(1.04); }
  .img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1e1710 0%, #2a2318 50%, #1a150d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .story-image-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); z-index: 2; font-family: var(--font-secondary); font-size: 13px; font-style: normal; font-weight: 500; color: var(--fade); letter-spacing: 0.04em; }
  .story-content { padding: 20px 0; }
  .story-headline { font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; line-height: 1.15; color: var(--offwhite); margin-bottom: 2rem; }
  .story-headline em { color: var(--luxury-gold); }
  .story-body { font-family: var(--font-secondary); font-size: 18px; font-weight: 400; color: var(--fade); line-height: 1.8; margin-bottom: 1.5rem; }
  .story-rule { width: 80px; height: 3px; background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.2)); margin: 2.5rem 0; }
  .story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .stat-item { border-top: 1px solid var(--border); padding-top: 1.25rem; }
  .stat-num { font-family: var(--font-display); font-size: 48px; letter-spacing: 0.02em; color: var(--luxury-gold); line-height: 1; margin-bottom: 0.4rem; }
  .stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

  /* â”€â”€â”€ COLLECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .collections { padding: 120px 8vw; background: var(--black); }
  .collections-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
  .section-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: 0.9; letter-spacing: 0.02em; color: var(--offwhite); }
  .section-title span { color: var(--luxury-gold); }
  .view-all-link { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--luxury-gold); text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 2px solid var(--luxury-gold); transition: all 0.3s ease; }
  .view-all-link:hover { gap: 14px; }
  .collections-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 2px; }
  .collection-card { position: relative; overflow: hidden; cursor: pointer; background: var(--surface); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(212,175,55,0.08); }
  .collection-card:hover { border-color: rgba(212,175,55,0.25); }
  .collection-card:first-child { grid-row: span 2; }
  .card-image { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, #1a1510 0%, #23190f 100%); position: relative; overflow: hidden; transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .collection-card:first-child .card-image { aspect-ratio: auto; height: 100%; }
  .collection-card:hover .card-image { transform: scale(1.08); }
  .card-image-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); transition: background 0.5s ease; }
  .collection-card:hover .card-image-overlay { background: linear-gradient(to top, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0.1) 40%, transparent 100%); }
  .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 2; }
  .card-tag { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--luxury-gold); margin-bottom: 0.5rem; display: block; font-weight: 600; }
  .card-name { font-family: var(--font-display); font-size: clamp(28px, 2.5vw, 40px); letter-spacing: 0.04em; color: var(--offwhite); line-height: 1; margin-bottom: 0.5rem; }
  .card-desc { font-family: var(--font-secondary); font-size: 14px; color: var(--fade); opacity: 0; transform: translateY(12px); transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease; margin-top: 0.75rem; line-height: 1.5; }
  .collection-card:hover .card-desc { opacity: 1; transform: translateY(0); }
  .card-cta { display: inline-block; margin-top: 1rem; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--luxury-gold); opacity: 0; transform: translateY(8px); transition: all 0.4s 0.15s ease; text-decoration: none; font-weight: 600; }
  .collection-card:hover .card-cta { opacity: 1; transform: translateY(0); }

  /* â”€â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .process { padding: 140px 8vw; background: var(--charcoal); overflow: hidden; }
  .process-header { max-width: 560px; margin-bottom: 80px; }
  .process-intro { font-family: var(--font-secondary); font-size: 18px; font-weight: 400; color: var(--fade); line-height: 1.8; margin-top: 1.5rem; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 48px; left: 10%; width: 80%; height: 1px; background: linear-gradient(to right, transparent, var(--luxury-gold), var(--luxury-gold), transparent); opacity: 0.2; }
  .process-step { padding: 0 2rem 0 0; position: relative; }
  .step-number { font-family: var(--font-display); font-size: 80px; line-height: 1; color: rgba(200,121,65,0.08); margin-bottom: 0.5rem; display: block; }
  .step-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--luxury-gold); margin-bottom: 1.5rem; position: relative; }
  .step-dot::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.25); }
  .step-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--offwhite); margin-bottom: 1rem; line-height: 1.2; }
  .step-body { font-size: 14px; color: var(--muted); line-height: 1.7; }
  .step-year { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.2em; color: var(--luxury-gold); margin-top: 1.5rem; display: block; font-weight: 600; }

  /* â”€â”€â”€ LIMITED RELEASE BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .limited-banner { min-height: 80vh; background: var(--black); display: flex; align-items: center; position: relative; overflow: hidden; padding: 50px 8vw; }
  .banner-bg-year { position: absolute; right: -2vw; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: clamp(200px, 28vw, 400px); color: rgba(200,121,65,0.04); line-height: 1; pointer-events: none; user-select: none; }
  .banner-amber-strip { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, var(--luxury-gold), var(--accent)); }
  .banner-content { position: relative; z-index: 2; max-width: 700px; }
  .banner-release-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 2rem; }
  .tag-pill { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--black); background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); padding: 6px 16px; font-weight: 600; }
  .tag-pill.ghost { color: var(--luxury-gold); background: transparent; border: 2px solid var(--luxury-gold); }
  .banner-headline { font-family: var(--font-display); font-size: clamp(64px, 9vw, 130px); line-height: 0.88; letter-spacing: 0.02em; color: var(--offwhite); margin-bottom: 1.5rem; }
  .banner-headline .accent { color: var(--luxury-gold); }
  .banner-sub { font-family: var(--font-secondary); font-size: 18px; font-weight: 400; color: var(--fade); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
  .banner-meta { display: flex; gap: 3rem; margin-bottom: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .meta-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; display: block; }
  .meta-value { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; color: var(--luxury-gold); }
  .banner-bottle { position: absolute; right: 10%; top: 50%; transform: translateY(-50%); width: clamp(140px, 16vw, 280px); opacity: 0.9; }

  /* â”€â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products { padding: 120px 8vw; background: var(--charcoal); }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--border); }
  .product-card { background: var(--charcoal); padding: 2rem; position: relative; cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border-top: 2px solid rgba(212,175,55,0); }
  .product-card:hover { background: var(--surface); border-top-color: rgba(212,175,55,0.4); transform: translateY(-4px); }
  .product-image-area { aspect-ratio: 2/3; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; overflow: hidden; position: relative; background: linear-gradient(160deg, #1d1710 0%, #211a0f 100%); }
  .product-bottle-img { height: 70%; width: auto; object-fit: contain; display: block; margin: auto; transition: transform 0.5s ease; background: linear-gradient(160deg, rgba(200,121,65,0.06), rgba(160,80,40,0.1)); min-width: 60px; border: 1px solid rgba(200,121,65,0.12); }
  .product-card:hover .product-bottle-img { transform: scale(1.05) translateY(-4px); }
  .product-actions { position: absolute; top: 1rem; right: 1rem; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(12px); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
  .action-btn { width: 40px; height: 40px; background: rgba(212,175,55,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--cream); font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
  .action-btn:hover { background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); color: var(--black); border-color: var(--luxury-gold); transform: scale(1.1); }
  .product-badge { position: absolute; top: 1rem; left: 1rem; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); padding: 5px 12px; font-weight: 600; }
  .product-category { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
  .product-name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--offwhite); line-height: 1.25; margin-bottom: 0.5rem; }
  .product-age { font-family: var(--font-secondary); font-size: 13px; color: var(--luxury-gold); font-style: normal; margin-bottom: 1rem; font-weight: 500; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
  .product-price { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.04em; color: var(--offwhite); }
  .add-to-cart { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--luxury-gold); background: transparent; border: 2px solid rgba(212,175,55,0.5); padding: 8px 18px; cursor: pointer; transition: all 0.3s ease; font-family: var(--font-sans); font-weight: 600; }
  .add-to-cart:hover { background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); color: var(--black); border-color: var(--luxury-gold); }

  /* â”€â”€â”€ WHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .why { padding: 140px 8vw; background: var(--black); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
  .why-headline { font-family: var(--font-display); font-size: clamp(56px, 6vw, 88px); line-height: 0.92; letter-spacing: 0.02em; color: var(--offwhite); margin-bottom: 2rem; }
  .why-headline .amber { color: var(--luxury-gold); }
  .why-body { font-family: var(--font-secondary); font-size: 18px; font-weight: 400; color: var(--fade); line-height: 1.8; }
  .why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); align-content: start; }
  .why-item { background: var(--charcoal); padding: 2.5rem 2rem; }
  .why-item-num { font-family: var(--font-serif); font-size: 64px; letter-spacing: 0.02em; color: rgba(212,175,55,0.2); line-height: 1; margin-bottom: 1rem; font-weight: 300; }
  .why-item-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--offwhite); margin-bottom: 0.75rem; line-height: 1.2; }
  .why-item-body { font-size: 13px; color: var(--muted); line-height: 1.65; }
  .why-divider { height: 1px; background: var(--border); margin: 3rem 0; }
  .why-awards { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .award-item { display: flex; flex-direction: column; gap: 4px; }
  .award-num { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.04em; color: var(--luxury-gold); }
  .award-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

  /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .testimonials { padding: 120px 8vw; background: var(--charcoal); overflow: hidden; }
  .testimonial-track { margin-top: 60px; position: relative; }
  .testimonial-slide { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .testimonial-portrait { aspect-ratio: 3/4; background: linear-gradient(160deg, #1d1810, #241e14); position: relative; overflow: hidden; }
  .testimonial-portrait-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .portrait-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%); }
  .portrait-name { position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; }
  .portrait-name strong { display: block; font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--offwhite); }
  .portrait-name span { font-size: 11px; letter-spacing: 0.2em; color: var(--luxury-gold); text-transform: uppercase; }
  .testimonial-content { padding-top: 1rem; }
  .quote-mark { font-family: var(--font-serif); font-size: 120px; line-height: 0.8; color: var(--luxury-gold); opacity: 0.2; margin-bottom: -20px; display: block; }
  .quote-text { font-family: var(--font-secondary); font-size: clamp(20px, 2vw, 30px); font-weight: 500; font-style: normal; color: var(--offwhite); line-height: 1.6; margin-bottom: 2.5rem; }
  .quote-rating { display: flex; gap: 4px; margin-bottom: 2rem; }
  .star { color: var(--luxury-gold); font-size: 16px; }
  .quote-source { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .testimonial-nav { display: flex; gap: 1rem; margin-top: 3rem; }
  .testi-btn { width: 48px; height: 48px; border: 2px solid rgba(212,175,55,0.3); background: transparent; color: var(--luxury-gold); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; font-weight: 600; }
  .testi-btn:hover { background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); border-color: var(--luxury-gold); color: var(--black); }

  /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  footer { background: var(--charcoal); border-top: 1px solid var(--border); padding: 80px 8vw 40px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-logo { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.18em; color: var(--offwhite); text-decoration: none; display: inline-block; margin-bottom: 1.25rem; }
  .footer-logo span { color: var(--luxury-gold); }
  .footer-tagline { font-family: var(--font-secondary); font-size: 15px; font-style: normal; font-weight: 500; color: var(--fade); line-height: 1.7; margin-bottom: 2rem; }
  .newsletter-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; display: block; }
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-input { flex: 1; background: var(--surface); border: 1px solid var(--border); border-right: none; padding: 12px 16px; color: var(--offwhite); font-family: var(--font-sans); font-size: 13px; outline: none; }
  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-btn { background: linear-gradient(135deg, var(--luxury-gold), var(--accent)); border: none; padding: 12px 20px; color: var(--black); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
  .newsletter-btn:hover { transform: translateY(-1px); }
  .banner-bottle-img { margin-left: 100px; width: 50%; }
  .footer-col-title { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; display: block; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-family: var(--font-secondary); font-size: 15px; color: var(--fade); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--luxury-gold); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); }
  .footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
  .social-links { display: flex; gap: 1.5rem; }
  .social-links a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .social-links a:hover { color: var(--luxury-gold); }
  .footer-age { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }

  /* â”€â”€â”€ CORE ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

  /* Gold sweep line */
  .hero-transition-line {
    position: absolute;
    left: 8vw; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(200,121,65,0.15), transparent);
    transform-origin: left;
    transform: scaleX(0);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: none;
  }
  @keyframes sweepLine {
    0%   { transform: scaleX(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
  }
  .hero-transition-line.sweep {
    animation: sweepLine 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.revealed { 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; }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
    .hero-left { padding: 60px 6vw 40px; }
    .hero-right { display: none; }
    .story-grid { grid-template-columns: 1fr; }
    .story-image-wrap { order: -1; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .process-steps::before { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { padding: 8px 18px; font-size: 10px; }
    .nav-search-input { width: 130px; font-size: 11px; }
    .nav-search-input:focus { width: 160px; }
    .nav-search-results { width: 240px; }
    .hero-headline { font-size: clamp(52px, 14vw, 80px); }
    .process-steps { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-right { grid-template-columns: 1fr; }
    .testimonial-slide { grid-template-columns: 1fr; }
    .testimonial-portrait { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .banner-bottle { display: none; }
    .limited-banner { padding: 80px 6vw; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }

  ::selection { background: rgba(200,121,65,0.3); }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--luxury-gold); }


/* === Home Products Slider + Overflow Fix === */
#products{
  overflow:hidden;
}
#products .products-grid{
  display:flex !important;
  gap:24px !important;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  padding:20px 0 15px;
  background:transparent !important;
}
#products .products-grid::-webkit-scrollbar{
  height:8px;
}
#products .products-grid .product-card{
  flex:0 0 320px;
  max-width:320px;
  scroll-snap-align:start;
}
#products .product-image-area{
  overflow:hidden;
}
#products .product-bottle-img{
  max-width:100%;
  width:auto;
  height:85%;
  object-fit:contain;
}
@media (max-width:768px){
  #products .products-grid .product-card{
    flex:0 0 260px;
    max-width:260px;
  }
}


/* Home shop - 3 products per row */
#products .products-grid{
display:grid !important;
grid-template-columns:repeat(3,minmax(0,1fr)) !important;
overflow:hidden !important;
}
#products .product-card{
max-width:100% !important;
width:100% !important;
}
@media(max-width:991px){
#products .products-grid{grid-template-columns:repeat(2,1fr)!important;}
}
@media(max-width:767px){
#products .products-grid{grid-template-columns:1fr!important;}
}
