﻿
  :root {
    --black: #0a0a0a;
    --dark: #111111;
    --card: #161616;
    --border: #2a2a2a;
    --red: #c8102e;
    --red-dark: #8b0b1f;
    --gold: #c9a84c;
    --white: #f0ece4;
    --grey: #888888;
    --light-grey: #aaaaaa;
  }

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

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Vollkorn', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
  }

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

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo span { color: var(--red); }

  .logo-sub {
    font-family: 'Vollkorn', serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--grey);
    text-transform: uppercase;
    border-left: 1px solid var(--border);
    padding-left: 12px;
    line-height: 1.3;
  }

  nav { display: flex; align-items: center; gap: 36px; }

  nav a {
    font-family: 'Vollkorn', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover, nav a.active { color: var(--white); }

  .lang-switch {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 4px 12px;
    transition: all 0.2s;
  }
  .lang-switch:hover { background: var(--gold); color: var(--black); }

  /* BREADCRUMB */
  .breadcrumb {
    padding: 88px 80px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
  }
  .breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb-sep { color: var(--border); }
  .breadcrumb-current { color: var(--red); }

  /* PAGE HERO */
  .page-hero {
    padding: 48px 80px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    border-bottom: 1px solid var(--border);
  }

  .page-hero-left {}

  .category-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .category-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--red);
  }

  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 32px;
  }
  .page-title .italic { font-style: italic; color: var(--red); }

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

  .page-hero-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fact-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .fact-card:first-child { background: var(--red-dark); border-color: var(--red); }

  .fact-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
    min-width: 80px;
  }
  .fact-text { font-size: 13px; letter-spacing: 1px; color: var(--light-grey); line-height: 1.4; }
  .fact-card:first-child .fact-text { color: rgba(240,236,228,0.75); }

  /* CONTENTS NAV */
  .contents-nav {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 0 80px;
    display: flex;
    gap: 0;
    overflow-x: auto;
  }
  .contents-nav a {
    padding: 18px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--grey);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  .contents-nav a:hover { color: var(--white); border-bottom-color: var(--red); }

  /* SECTIONS */
  .section {
    padding: 80px 80px;
    border-bottom: 1px solid var(--border);
  }
  .section:last-child { border-bottom: none; }

  .section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--red);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
  }

  /* HISTORY LAYOUT */
  .history-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
  }

  .prose p { margin-bottom: 20px; color: var(--light-grey); line-height: 1.85; }
  .prose p:last-child { margin-bottom: 0; }
  .prose strong { color: var(--white); font-weight: 600; }

  .history-sidebar {}

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .timeline-item:last-child { border-bottom: none; }

  .timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--red);
    letter-spacing: 1px;
    padding-top: 2px;
  }

  .timeline-text {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.6;
  }

  /* PRODUCTION */
  .production-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 48px;
  }

  .step-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 28px;
    position: relative;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(200,16,46,0.12);
    position: absolute;
    top: 16px;
    right: 20px;
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
  }

  .step-text {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.7;
  }

  /* RAW MATERIALS */
  .materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 40px;
  }

  .material-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px;
  }

  .material-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
  }

  .material-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .material-text {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.6;
  }

  /* CLASSIFICATION */
  .class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .class-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px 32px;
  }

  .class-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
  }
  .class-card-title span { color: var(--gold); font-style: italic; }

  .class-card-text {
    font-size: 15px;
    color: var(--light-grey);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .class-examples {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
  }
  .class-examples strong { color: var(--red); }

  /* BRANDS GRID */
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .brand-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, background 0.2s;
  }
  .brand-card:hover {
    border-color: var(--red);
    background: #1a0d0f;
  }

  .brand-country {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--grey);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .brand-country::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--border);
  }

  .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
  }

  .brand-since {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 16px;
  }

  .brand-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.6;
    flex: 1;
  }

  .brand-link {
    margin-top: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .brand-link::after { content: '→'; }

  /* COCKTAILS GRID */
  .cocktails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .cocktail-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, background 0.2s;
  }
  .cocktail-card:hover { border-color: var(--gold); background: #151208; }

  .cocktail-strength {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--grey);
    margin-bottom: 16px;
  }

  .cocktail-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .cocktail-en {
    font-family: 'Vollkorn', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--grey);
    margin-bottom: 16px;
  }

  .cocktail-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.6;
    flex: 1;
  }

  .cocktail-ingredients {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .ingredient-tag {
    background: rgba(42,42,42,0.8);
    border: 1px solid var(--border);
    padding: 3px 10px;
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  .cocktail-link {
    margin-top: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cocktail-link::after { content: '→'; }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

  .footer-links {
    display: flex;
    gap: 32px;
  }
  .footer-links a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-copy {
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 900px) {
    header { padding: 0 24px; }
    .page-hero, .section { padding-left: 24px; padding-right: 24px; }
    .breadcrumb { padding-left: 24px; padding-right: 24px; }
    .contents-nav { padding: 0 24px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 24px; text-align: center; }
    .page-hero { grid-template-columns: 1fr; gap: 40px; }
    .history-grid { grid-template-columns: 1fr; }
    .production-steps { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .cocktails-grid { grid-template-columns: repeat(2, 1fr); }
    .class-grid { grid-template-columns: 1fr; }
    nav { display: none; }
  }
