
  *, *::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: 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-links a.active { opacity: 1; color: var(--luxury-gold); }
  .nav-links a.active::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); }

  /* â”€â”€â”€ SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .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)); }
  .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); }
  .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; }

  /* â”€â”€â”€ PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .about-hero {
    padding: 160px 8vw 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
  }
  .about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(200,121,65,0.15), transparent);
  }
  .about-hero-bg {
    position: absolute;
    right: -3vw;
    bottom: -2vw;
    font-family: var(--font-display);
    font-size: clamp(140px, 20vw, 320px);
    color: rgba(200,121,65,0.03);
    letter-spacing: -0.01em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }
  .about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2.5rem;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .about-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .about-breadcrumb a:hover { color: var(--luxury-gold); }
  .about-breadcrumb .sep { color: rgba(212,175,55,0.3); }
  .about-breadcrumb .current { color: var(--luxury-gold); }
  .about-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
  }
  .about-hero-headline .accent { color: var(--luxury-gold); }
  .about-hero-sub {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: var(--fade);
    line-height: 1.8;
    max-width: 520px;
  }
  .about-hero-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.15));
    margin: 2.5rem 0;
  }
  .about-hero-year {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--muted);
  }

  /* â”€â”€â”€ PHILOSOPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .philosophy {
    padding: 140px 8vw;
    background: var(--black);
    position: relative;
  }
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 60px;
  }
  .philosophy-text p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: var(--fade);
    line-height: 1.9;
    margin-bottom: 1.75rem;
  }
  .philosophy-text p em {
    color: var(--luxury-gold);
    font-weight: 500;
  }
  .philosophy-image {
    position: relative;
  }
  .philosophy-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
  }
  .philosophy-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,121,65,0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
  }
  .philosophy-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1e1710 0%, #2a2318 50%, #1a150d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .philosophy-img-placeholder img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .philosophy-img-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-weight: 500;
    color: var(--fade);
    letter-spacing: 0.04em;
  }
  .philosophy-image::after {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    right: -16px; bottom: -16px;
    border: 1px solid rgba(212,175,55,0.08);
    pointer-events: none;
    z-index: -1;
  }

  /* â”€â”€â”€ TIMELINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .timeline-section {
    padding: 140px 8vw;
    background: var(--charcoal);
    position: relative;
  }
  .timeline-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }
  .timeline-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .timeline-header .section-eyebrow {
    justify-content: center;
  }
  .timeline-header .section-eyebrow::before {
    display: none;
  }
  .timeline {
    position: relative;
    padding-left: 80px;
    max-width: 700px;
    margin: 0 auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--luxury-gold), var(--luxury-gold), transparent);
    opacity: 0.2;
  }
  .timeline-item {
    position: relative;
    padding-bottom: 60px;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot {
    position: absolute;
    left: -56px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 2px solid var(--luxury-gold);
    transition: all 0.3s ease;
  }
  .timeline-item:hover .timeline-dot {
    background: var(--luxury-gold);
    box-shadow: 0 0 16px rgba(212,175,55,0.3);
  }
  .timeline-year {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 0.04em;
    color: var(--luxury-gold);
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  .timeline-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .timeline-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
  }
  .timeline-divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 60px -80px;
  }

  /* â”€â”€â”€ VALUES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .values {
    padding: 140px 8vw;
    background: var(--black);
  }
  .values-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .values-header .section-eyebrow { justify-content: center; }
  .values-header .section-eyebrow::before { display: none; }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .value-card {
    background: var(--black);
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 2px solid transparent;
  }
  .value-card:hover {
    background: var(--surface);
    border-top-color: rgba(212,175,55,0.4);
  }
  .value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .value-card:hover::before { width: 60%; }
  .value-num {
    font-family: var(--font-narrow);
    font-size: 56px;
    font-weight: 300;
    color: rgba(212,175,55,0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
  .value-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .value-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }
  .value-card::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 16px;
    height: 16px;
    border-right: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    transition: border-color 0.4s ease;
  }
  .value-card:hover::after {
    border-color: rgba(212,175,55,0.3);
  }

  /* â”€â”€â”€ GENERATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .generations {
    padding: 140px 8vw;
    background: var(--charcoal);
    position: relative;
  }
  .generations::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }
  .generations-header {
    max-width: 560px;
    margin-bottom: 80px;
  }
  .generations-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .generation-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-width: 0 1px 1px 0;
    transition: all 0.4s ease;
    position: relative;
  }
  .generation-card:nth-child(2n) { border-right: none; }
  .generation-card:nth-last-child(-n+2) { border-bottom: none; }
  .generation-card:hover {
    background: var(--surface);
    border-color: rgba(212,175,55,0.15);
    z-index: 1;
  }
  .gen-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(160deg, #1d1810, #241e14);
    border: 1px solid rgba(212,175,55,0.15);
    overflow: hidden;
    position: relative;
  }
  .gen-portrait img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .gen-portrait-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    color: rgba(212,175,55,0.2);
    letter-spacing: 0.05em;
  }
  .gen-roman {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--luxury-gold);
    margin-bottom: 0.3rem;
  }
  .gen-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }
  .gen-years {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }
  .gen-role {
    font-size: 13px;
    color: var(--fade);
    line-height: 1.6;
  }

  /* â”€â”€â”€ DISTILLERY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .distillery {
    padding: 140px 8vw;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .distillery-bg-text {
    position: absolute;
    left: -2vw;
    bottom: -4vw;
    font-family: var(--font-display);
    font-size: clamp(100px, 16vw, 240px);
    color: rgba(200,121,65,0.03);
    letter-spacing: -0.01em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .distillery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
    background: var(--border);
    position: relative;
    z-index: 2;
  }
  .distillery-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    border-top: 2px solid transparent;
  }
  .distillery-card:hover {
    background: var(--surface);
    border-top-color: rgba(212,175,55,0.3);
  }
  .distillery-card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--luxury-gold);
    font-size: 20px;
    transition: all 0.3s ease;
  }
  .distillery-card:hover .distillery-card-icon {
    background: rgba(212,175,55,0.1);
    border-color: var(--luxury-gold);
  }
  .distillery-card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .distillery-card-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }
  .distillery-card-stat {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--luxury-gold);
    letter-spacing: 0.04em;
    margin-top: 1.25rem;
    line-height: 1;
  }
  .distillery-card-stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  /* â”€â”€â”€ CTA BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .cta-band {
    padding: 100px 8vw;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    opacity: 0.3;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    opacity: 0.3;
  }
  .cta-band-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
  }
  .cta-band-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
  }
  .cta-band-headline .accent { color: var(--luxury-gold); }
  .cta-band-sub {
    font-family: var(--font-secondary);
    font-size: 17px;
    color: var(--fade);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
  }
  .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: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin-left: 2rem;
  }
  .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); }

  /* â”€â”€â”€ 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-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); }
  .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; }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 1024px) {
    .philosophy-grid { grid-template-columns: 1fr; }
    .philosophy-image { order: -1; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .generations-list { grid-template-columns: 1fr; }
    .generation-card { border-right: none !important; border-bottom: 1px solid var(--border); }
    .generation-card:last-child { border-bottom: none; }
    .distillery-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { padding: 8px 18px; font-size: 10px; }
    .about-hero { min-height: auto; padding: 130px 6vw 60px; }
    .values-grid { grid-template-columns: 1fr; }
    .distillery-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 48px; }
    .timeline::before { left: 16px; }
    .timeline-dot { left: -40px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .btn-ghost { margin-left: 0; margin-top: 1rem; }
  }

  ::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); }
