﻿
    :root {
      --black: #0a0a0a;
      --dark: #111111;
      --card: #161616;
      --border: #2a2a2a;
      --amber: #b87333;
      --amber-dark: #7a4a1e;
      --gold: #c9a84c;
      --white: #f0ece4;
      --grey: #888888;
      --light-grey: #aaaaaa;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--black);
      background-image: linear-gradient(180deg, #0d0805 0%, #0a0a0a 200px);
      color: var(--white);
      font-family: 'Vollkorn', Georgia, serif;
      font-size: 17px;
      line-height: 1.75;
      min-height: 100vh;
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10, 10, 8, 0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 4px;
      color: var(--white);
      text-decoration: none;
    }
    .logo span { color: var(--amber); }

    nav { display: flex; align-items: center; gap: 6px; }
    nav a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 2px;
      color: var(--grey);
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 3px;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--white); }
    nav a.active {
      color: var(--amber);
      border-bottom: 2px solid var(--amber);
    }

    .lang-switch {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--grey);
      text-decoration: none;
      padding: 5px 10px;
      border: 1px solid var(--border);
      border-radius: 3px;
      transition: all 0.2s;
    }
    .lang-switch:hover { border-color: var(--amber); color: var(--amber); }

    main { padding-top: 64px; }

    /* BREADCRUMB */
    .breadcrumb {
      padding: 16px 40px;
      border-bottom: 1px solid var(--border);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--grey);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--amber); }
    .breadcrumb .sep { color: var(--border); }
    .breadcrumb .current { color: var(--amber); }

    /* HERO */
    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px 40px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 60px;
      align-items: start;
    }

    .eyebrow {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      color: var(--amber);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--amber);
    }

    h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 64px;
      font-weight: 700;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .badge {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      padding: 5px 12px;
      border: 1px solid var(--amber);
      color: var(--amber);
      border-radius: 3px;
    }
    .badge.filled {
      background: var(--amber-dark);
      border-color: var(--amber-dark);
      color: var(--white);
    }

    .lead {
      font-size: 18px;
      color: var(--light-grey);
      line-height: 1.8;
      max-width: 600px;
    }

    /* SPEC TABLE */
    .spec-card {
      position: sticky;
      top: 84px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .spec-header {
      background: var(--amber-dark);
      border-bottom: 2px solid var(--amber);
      padding: 16px 20px;
    }
    .spec-header h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      color: var(--white);
    }
    .spec-table { width: 100%; border-collapse: collapse; }
    .spec-table tr { border-bottom: 1px solid var(--border); }
    .spec-table tr:last-child { border-bottom: none; }
    .spec-table td {
      padding: 11px 20px;
      font-size: 14px;
      line-height: 1.5;
    }
    .spec-table td:first-child {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1.5px;
      font-size: 12px;
      color: var(--grey);
      width: 110px;
    }
    .spec-table td:last-child { color: var(--light-grey); }
    .spec-table .highlight td:last-child { color: var(--amber); font-weight: 500; }

    /* CONTENT SECTIONS */
    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 80px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 60px;
      align-items: start;
    }

    section { margin-bottom: 60px; }

    .section-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--amber);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
      max-width: 60px;
    }

    h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 32px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
    }

    p {
      color: var(--light-grey);
      margin-bottom: 16px;
      line-height: 1.8;
    }

    strong { color: var(--gold); }

    /* TASTING GRID */
    .tasting-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .tasting-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-top: 3px solid var(--amber);
      border-radius: 4px;
      padding: 20px;
    }
    .tasting-card h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--amber);
      margin-bottom: 10px;
    }
    .tasting-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--light-grey);
      margin: 0;
    }

    /* EXPRESSIONS */
    .expressions-list { list-style: none; margin-top: 16px; }
    .expressions-list li {
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
    }
    .expressions-list li:last-child { border-bottom: none; }
    .expr-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
    }
    .expr-meta {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 1.5px;
      color: var(--amber);
      white-space: nowrap;
    }
    .expr-desc {
      font-size: 13px;
      color: var(--grey);
      margin-top: 4px;
    }

    /* SIDEBAR */
    .sidebar-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 24px;
      margin-bottom: 24px;
    }
    .sidebar-card h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .serving-option {
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .serving-option:last-child { border-bottom: none; padding-bottom: 0; }
    .serving-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--amber);
      margin-bottom: 4px;
    }
    .serving-desc {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.6;
    }

    .fact-item {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .fact-item:last-child { border-bottom: none; }
    .fact-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      margin-top: 8px;
      flex-shrink: 0;
    }
    .fact-text { font-size: 13px; color: var(--grey); line-height: 1.6; }

    /* SIMILAR DISTILLERIES */
    .similar-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 80px;
    }
    .similar-section h2 { margin-bottom: 32px; }
    .similar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .similar-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 24px;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.2s;
      display: block;
    }
    .similar-card:hover { border-color: var(--amber); transform: translateY(-2px); }
    .similar-region {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--amber);
      margin-bottom: 8px;
    }
    .similar-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .similar-desc {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.6;
    }

    .section-divider {
      max-width: 1200px;
      margin: 0 auto 40px;
      padding: 0 40px;
      border: none;
      border-top: 1px solid var(--border);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 40px;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 4px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-logo span { color: var(--amber); }
    .footer-tagline {
      font-family: 'Vollkorn', serif;
      font-style: italic;
      font-size: 14px;
      color: var(--grey);
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .footer-links a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--amber); }
    .footer-copy { font-size: 12px; color: var(--grey); opacity: 0.6; }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; gap: 40px; }
      .content-wrapper { grid-template-columns: 1fr; }
      .tasting-grid { grid-template-columns: 1fr; }
      .similar-grid { grid-template-columns: 1fr; }
      h1 { font-size: 44px; }
      .hero, .content-wrapper, .similar-section { padding-left: 20px; padding-right: 20px; }
      header { padding: 0 20px; }
      nav { display: none; }
      .breadcrumb { padding: 12px 20px; }
    }
  