  :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 { color: var(--white); }

  .lang-switch {
    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);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 80px;
    position: relative;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red), var(--red), transparent);
    opacity: 0.4;
  }

  .hero-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--red);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--red);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: -2px;
  }

  .hero-title .accent {
    color: var(--red);
    font-style: italic;
  }

  .hero-desc {
    font-size: 18px;
    color: var(--light-grey);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.8;
  }

  .hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 14px 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--red-dark); }

  .btn-outline {
    color: var(--white);
    text-decoration: none;
    padding: 14px 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }

  .btn-outline:hover { border-color: var(--white); }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
  }

  .hero-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 240px;
    color: rgba(200,16,46,0.05);
    letter-spacing: -10px;
    user-select: none;
    white-space: nowrap;
  }

  .hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
  }

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

  .stat-card:first-child {
    grid-column: 1 / -1;
    background: var(--red-dark);
    border-color: var(--red);
  }

  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-grey);
  }

  .stat-card:first-child .stat-label { color: rgba(240,236,228,0.7); }

  /* STATS BAR */
  .stats-bar {
    background: var(--red);
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stats-bar-item {
    text-align: center;
  }

  .stats-bar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
  }

  .stats-bar-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .stats-bar-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
  }

  /* SECTIONS */
  section { padding: 100px 80px; }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .section-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--red);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
  }

  .section-link {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--red);
  }

  /* CATEGORIES */
  .categories {
    background: var(--dark);
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .cat-card {
    background: var(--card);
    padding: 48px 36px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .cat-card:hover::before { transform: scaleX(1); }
  .cat-card:hover { background: #1e1e1e; }

  .cat-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .cat-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
  }

  .cat-count {
    margin-top: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--red);
  }

  /* FEATURED ARTICLES */
  .articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
  }

  .article-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: border-color 0.3s;
    cursor: pointer;
  }

  .article-card:hover { border-color: var(--red); }

  .article-card.featured {
    grid-row: span 2;
  }

  .article-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-card.featured .article-img {
    aspect-ratio: 4/3;
  }

  .article-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.15;
  }

  .article-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  }

  .article-body {
    padding: 28px 28px 32px;
  }

  .article-tag {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .article-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .article-card.featured .article-title {
    font-size: 32px;
  }

  .article-excerpt {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .article-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  /* BRANDS */
  .brands { background: var(--dark); }

  .brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .brand-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    cursor: pointer;
    transition: border-color 0.3s;
    text-decoration: none;
    color: var(--white);
  }

  .brand-card:hover { border-color: var(--gold); }

  .brand-logo {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
  }

  .brand-info {}

  .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .brand-origin {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

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

  .brand-rating {
    margin-top: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
  }

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

  .cocktail-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }

  .cocktail-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }

  .cocktail-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
  }

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

  .cocktail-base {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .cocktail-ingredients {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.7;
  }

  .cocktail-strength {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
  }

  /* HISTORY SECTION */
  .history {
    background: var(--red-dark);
    position: relative;
    overflow: hidden;
  }

  .history::before {
    content: 'ИСТОРИЯ';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px;
    color: rgba(0,0,0,0.2);
    letter-spacing: 10px;
    user-select: none;
  }

  .history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

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

  .timeline-item {
    display: flex;
    gap: 28px;
    padding-bottom: 40px;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 48px;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.2);
  }

  .timeline-item:last-child::before { display: none; }

  .timeline-year {
    width: 80px;
    flex-shrink: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: rgba(255,255,255,0.9);
    line-height: 1;
    padding-top: 4px;
  }

  .timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    margin-top: 8px;
    flex-shrink: 0;
  }

  .timeline-text {
    flex: 1;
  }

  .timeline-event {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .timeline-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
  }

  .history-text .section-eyebrow { color: rgba(255,255,255,0.6); }
  .history-text .section-title { font-size: 48px; }
  .history-text p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  /* GLOSSARY */
  .glossary { background: var(--black); }

  .glossary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .glossary-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .glossary-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--red);
    line-height: 1;
    width: 48px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .glossary-content {}

  .glossary-term {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

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

  /* NEWSLETTER */
  .newsletter {
    background: var(--dark);
    padding: 80px;
    text-align: center;
    border-top: 1px solid var(--border);
  }

  .newsletter .section-eyebrow {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .newsletter p {
    color: var(--light-grey);
    max-width: 520px;
    margin: 0 auto 40px;
  }

  .newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
  }

  .newsletter-form input {
    flex: 1;
    background: var(--black);
    border: 1px solid var(--border);
    border-right: none;
    padding: 14px 20px;
    color: var(--white);
    font-family: 'Vollkorn', serif;
    font-size: 15px;
    outline: none;
  }

  .newsletter-form input::placeholder { color: var(--grey); }

  .newsletter-form button {
    background: var(--red);
    border: none;
    padding: 14px 28px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .newsletter-form button:hover { background: var(--red-dark); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 80px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand .logo {
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-flex;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--grey);
  }

  .footer-bottom a {
    color: var(--grey);
    text-decoration: none;
  }

  .age-warning {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ANIMATIONS */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeInUp 0.6s ease forwards; }
  .hero-title { animation: fadeInUp 0.6s 0.1s ease forwards; opacity: 0; }
  .hero-desc { animation: fadeInUp 0.6s 0.2s ease forwards; opacity: 0; }
  .hero-cta { animation: fadeInUp 0.6s 0.3s ease forwards; opacity: 0; }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    section { padding: 80px 48px; }
    .hero-left { padding: 60px 48px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cocktails-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 900px) {
    header { padding: 0 24px; }
    nav { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 24px; }
    section { padding: 60px 24px; }
    .stats-bar { padding: 20px 24px; flex-wrap: wrap; gap: 20px; }
    .articles-grid { grid-template-columns: 1fr; }
    .history-content { grid-template-columns: 1fr; gap: 40px; }
    .glossary-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .newsletter { padding: 60px 24px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; }
  }
