/* ============================================================
   BRAND TOKENS — přizpůsob tyto hodnoty finálnímu designu
   ============================================================ */
:root {
    --accent:        #C9A84C;          /* zlato — BRAND */
    --accent-hover:  #dbc06a;
    --bg-dark:       #0B1D45;          /* tmavá navy — BRAND */
    --bg-menu:       #0d2154;          /* menu panel (trochu světlejší) */
    --bg-light:      #f0ece0;          /* světlé sekce */
    --text-on-dark:  #ffffff;
    --text-muted:    rgba(255,255,255,0.55);
    --text-body:     #505050;
    --font-heading:  'Bebas Neue', sans-serif;  
    --font-body:     'Arial', sans-serif;
    --max-width:     1420px; 
    --header-h:      100px;     
}  
    
/*  ============================================================  
   CSS RESET (přeneseno 1:1 z Crooked Eye) 
   ============================================================ */  
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; } 
img, picture, video, canvas, svg { display: block; max-width: 100%; max-height: 100%; } 
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }  
h2 {   
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;  
    font-weight: 400;
    line-height: 52px;
    color: #040309;
    text-transform: uppercase;
}
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ============================================================
   BASE
   ============================================================ */
html {
    font-size: 16px;
    background: #0B1D45;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: #0B1D45;
}
#site {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.section-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 1.75rem;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 3rem;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;  
    text-align: left;
}
main { 
    display: flex;
    flex-direction: column;
}  
section { padding: 20px 0; }
section.img img { width: 100%; height: auto; }  

/* ============================================================  
   AGE GATE (přeneseno z Crooked Eye, barvy aktualizovány)  
   ============================================================ */ 
#age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
#age-gate.hidden { display: none; }
.age-gate__box { text-align: center; max-width: 480px; }
.age-gate__brand {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent); 
    margin-bottom: 2rem;
}
.age-gate__headline {  
    font-family: var(--font-heading); 
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: normal;  
    color: var(--text-on-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;  
}
.age-gate__sub {
    font-size: 0.875rem;
    color: var(--text-muted); 
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.age-gate__sub a { color: var(--accent); text-decoration: underline; }
.age-gate__sub a:hover { color: #fff; }
.age-gate__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.age-gate__buttons button {
    padding: 0.75rem 2.5rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: background 0.2s, color 0.2s;
}
.age-gate__buttons button:first-child {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.age-gate__buttons button:first-child:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}
.age-gate__buttons button:last-child:hover { background: rgba(255,255,255,0.1); }
.age-gate__notice {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* ============================================================
   HEADER + HAMBURGER MENU (NOVÉ — nebylo v Crooked Eye)
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(2rem, calc((100% - 1920px) / 2 + 2rem));
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
    transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
    background: rgba(11, 29, 69, 0.78);
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 24px rgba(0,0,0,0.35);
}
.header__left { 
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.header__logo img {
    height: 90px;
    width: auto;
}
#menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
#menu-btn span {
    display: block;
    width: 32px;
    height: 3px;
    background: #b5a98e;
    border-radius: 2px;
    transition: background 0.2s;
}
#menu-btn:hover span { background: var(--accent); }
.header__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header__contact {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #001c48;
    text-decoration: none;
    background: #b5a98e;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    transition: background 0.2s;
}
.header__contact:hover {
    background: #c9bc9f;
}

/* Menu overlay */
#menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 599;
    background: rgba(0,0,0,0.5);
}
#menu-overlay.open { display: block; }

/* Slide-out menu panel */
#menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 600;
    width: min(380px, 85vw);
    background: var(--bg-menu);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}
#menu-panel.open { transform: translateX(0); }
.menu-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.menu-panel__logo img { height: 55px; width: auto; }
#menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s;
}
#menu-close:hover { color: var(--accent); }
.menu-panel__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}
.menu-panel__nav a {
    display: block;
    padding: 0.875rem 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}
.menu-panel__nav a:hover { color: var(--accent); }
.menu-panel__merch {
    display: block;
    margin-top: 2.5rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
    transition: background 0.2s, color 0.2s;
}
.menu-panel__merch:hover {
    background: var(--accent);
    color: #fff;
}
.menu-panel__merch-note {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.menu-panel__bottom {
    margin-top: auto;
    padding-top: 2rem;
}
.menu-panel__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.menu-panel__social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.menu-panel__social a:hover { color: #fff; }
.menu-panel__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   HERO (přizpůsobeno z Crooked Eye)
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: max(70vh, 600px);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
    padding-top: var(--header-h);
}

/* Hero badge — kruhový element s logem a CTA */
.hero__badge {
    position: relative;
    width: clamp(280px, 32vw, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 45%, #ffffff 45%, #e8e2d4 75%, rgba(220,214,200,0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 8% 8% 10%;
    flex-shrink: 0;
}
.hero__badge-animals {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    height: auto;
    object-fit: contain;
}
.hero__badge-logo {
    position: relative;
    z-index: 2;
    width: 72%;
    height: auto;
    margin-top: 6%;
}

/* Scroll offset pro fixed header */
section[id] { scroll-margin-top: var(--header-h); }

/* About sekce — centrovaný text s užším sloupcem */
.about__content { text-align: center; max-width: 800px; }

/* ============================================================
   SEKCE — SVĚTLÉ (light sections)
   ============================================================ */
.section-light {
    background: var(--bg-light);
    padding: 60px 0;
    position: relative;
}
.section-light::before,
.section-light::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    pointer-events: none;
    z-index: 1;
}
.section-light::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.22) 0%, transparent 100%);
}
.section-light::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.22) 0%, transparent 100%);
}
.section-light h2 {
    color: #040309;
}
.section-light p {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-body);
}
.two-col--history {
    grid-template-columns: auto auto 1fr;
    column-gap: 80px;
    align-items: center;
}
.two-col--product         { grid-template-columns: 3fr 2fr; }
.two-col--product-reverse { grid-template-columns: 2fr 3fr; }

.section-cocktails { text-align: center; }
.section-cocktails h2 { margin-bottom: 2rem; }
.cocktails__intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.cocktails__cta {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
}
.cocktails__cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.btn-pill-dark {
    display: inline-block;
    background: var(--bg-dark);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    transition: background 0.2s;
}
.btn-pill-dark:hover { background: #142d6e; }
.btn-pill-dark--disabled {
    background: #b0a898;
    color: rgba(255,255,255,0.55);
    cursor: not-allowed;
    pointer-events: none;
}
.cocktails__coming-soon {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a09888;
}
.cocktails__cta-right {
    border-left: 4px solid #6f0000;
    padding-left: 2rem;
}
.cocktails__cta-right p {
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-body);
}

/* ============================================================
   PRODUCT SECTIONS — bílé pozadí s dekoracemi
   ============================================================ */
.section-white {
    background: #fff;
    padding: 60px 0;
    position: relative;
}
.section-white::before,
.section-white::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    pointer-events: none;
    z-index: 1;
}
.section-white::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 100%);
}
.section-white::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.18) 0%, transparent 100%);
}
.section-white h2 { color: #b5a98e; }
.section-white p { line-height: 1.8; font-size: 1rem; color: var(--text-body); margin-bottom: 1.25rem; }
.section-white h2 + p { margin-top: 1.5rem; }

.products-group { position: relative; background: #fff; }

.products-group--bull::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: url('img/decorations/bg-bull.webp') right center / contain no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.products-group--bear::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: url('img/decorations/bg-bear.webp') left center / contain no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.products-group .section-white { background: transparent; }
.products-group .container { position: relative; z-index: 2; }
.two-col--history h2 { align-self: center; }
.section-divider {
    width: 6px;
    background: #6f0000;
    align-self: stretch;
}

/* ============================================================
   PARALLAX (přeneseno 1:1 z Crooked Eye)
   ============================================================ */
.parallax-full {
    position: relative;
    height: 500px;
    overflow: hidden;
    padding: 0;
}
.fullvh-img img {
    width: 100%;
    height: auto;
    display: block;
}
.parallax-full__bg {
    position: absolute;
    inset: -200px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}
.parallax-text {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    padding: 60px 0;
    background-color: var(--accent);
}
.parallax-text__bg {
    position: absolute;
    inset: -200px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}
.parallax-text__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.parallax-text__content {
    position: relative;
    z-index: 1;
}
.parallax-text__content h2 {
    color: #b5a98e;
    margin-bottom: 1.25rem;
}
.parallax-text__content p {
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* ============================================================
   PRODUCT SECTION (přizpůsobeno z Crooked Eye)
   ============================================================ */
section.product { padding: 0; }
.product__parallax {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.product__parallax-bg {
    position: absolute;
    inset: -200px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}
.product__body {
    padding: 60px 0;
    align-items: start;
    background: var(--bg-light);
}
.product__info .section-label { text-align: left; margin-bottom: 1.5rem; }
.product__info p { margin-bottom: 2rem; color: var(--text-body); line-height: 1.8; }
.product__links { display: flex; flex-direction: column; gap: 0.5rem; }
.product__links a {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--bg-dark);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    transition: background 0.2s;
    align-self: flex-start;
}
.product__links a:hover { background: var(--accent); }
.product__img { border: 1px solid rgba(0,0,0,0.15); padding: 6px; }
.product__img img { width: 100%; height: auto; }

/* ============================================================
   SLIDER (NOVÉ — nebylo v Crooked Eye)
   ============================================================ */
.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.slider__slide.active { opacity: 1; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider__prev,
.slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--accent);
    border: none;
    color: #001c48;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.slider__prev { left: 0.75rem; }
.slider__next { right: 0.75rem; }
.slider__prev:hover,
.slider__next:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================================
   RECIPES / COCKTAILS GRID (přizpůsobeno z Crooked Eye)
   ============================================================ */
.recipes {
    background: var(--bg-dark);
    padding: 60px 0;
}
.recipes .section-label { color: var(--accent); margin-bottom: 1.5rem; }
.recipes__intro {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.7;
}
.recipes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}
.recipe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.recipe-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}
.recipe-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    line-height: 1.3;
}
.recipe-card a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.recipe-card a:hover { color: #fff; border-color: #fff; }

/* ============================================================
   FAQ (přeneseno z Crooked Eye, barvy aktualizovány)
   ============================================================ */
.faq { padding: 60px 0; background: var(--bg-light); }
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.faq__download {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}
.faq__download a {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--bg-dark);
    color: var(--bg-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    transition: background 0.2s, color 0.2s;
}
.faq__download a:hover { background: var(--bg-dark); color: #fff; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    color: var(--text-body);
    text-align: left;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p, .faq-item ul {
    padding: 0 0 1.5rem;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.9375rem;
}
.faq-item ul { padding-left: 1.25rem; }
.faq-item ul li { list-style: disc; margin-bottom: 0.375rem; }

/* ============================================================
   CONTACT FORM (NOVÉ — Crooked Eye měl jen adresu/telefon)
   ============================================================ */
.contact {
    padding: 60px 0;
    background: var(--bg-light) url('img/decorations/bg-animals.webp') center center / 75% auto no-repeat;
    position: relative;
} 
.contact::before,
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    pointer-events: none;
    z-index: 1;
}
.contact::before { 
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.22) 0%, transparent 100%);
} 
.contact::after {
    right: 0; 
    background: linear-gradient(to left, rgba(0,0,0,0.22) 0%, transparent 100%);
}
.contact .container { position: relative; z-index: 2; }
.contact__heading {
    text-align: center;
    margin-bottom: 3rem;
}
.contact__layout {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem;
    align-items: center;
}
.contact__image img { width: 100%; height: auto; } 
.contact__info {
    display: flex; 
    flex-direction: column;  
    justify-content: center;
    gap: 3rem;
}
.contact__info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact__info-label { 
    font-family: var(--font-body); 
    font-size: 0.75rem;
    font-weight: 700;  
    letter-spacing: 0.2em;
    text-transform: uppercase; 
    color: var(--bg-dark);
    margin-bottom: 0.25rem;
}
.contact__info-value { 
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-body);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    line-height: 1.3;
}
.contact__info-value:hover { color: var(--bg-dark); }

/* ============================================================
   FOOTER (přizpůsobeno z Crooked Eye)
   ============================================================ */
footer {
    background: #040b1e;
    color: var(--text-muted);
    padding: 2.5rem 0;
}
footer .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem 4rem;
    align-items: center;
}
.footer__logo img { height: 110px; width: auto; }
.footer__middle { display: flex; flex-direction: column; gap: 1rem; }
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer__nav a {
    color: #b5a98e;
    text-decoration: none;
    padding: 0 1rem;
    transition: color 0.2s;
}
.footer__nav a:first-child { padding-left: 0; }
.footer__nav a:hover { color: #fff; }
.footer__nav a + a { border-left: 1px solid rgba(181,169,142,0.35); }
.footer__tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #b5a98e;
    font-weight: normal;
}
.footer__legal {
    display: flex;
    gap: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer__legal a {
    color: rgba(181,169,142,0.55);
    text-decoration: none;
    padding: 0 1rem;
    transition: color 0.2s;
}
.footer__legal a:first-child { padding-left: 0; }
.footer__legal a:hover { color: #fff; }
.footer__legal a + a { border-left: 1px solid rgba(181,169,142,0.25); }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.footer__faq {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border: 1px solid #b5a98e;
    border-radius: 999px;
    color: #b5a98e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    font-size: 0.7rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.footer__faq:hover { background: #b5a98e; color: #040b1e; }
.footer__copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}

/* ============================================================
   MODALS (přeneseno 1:1 z Crooked Eye, bg-light aktualizováno)
   ============================================================ */
#modal-terms, #modal-privacy, #modal-faq {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.75);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
#modal-terms.open, #modal-privacy.open, #modal-faq.open { display: flex; }
.modal__box {
    background: var(--bg-light);
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.modal__close:hover { color: var(--accent); }
.modal__body {
    overflow-y: auto;
    padding: 2.5rem 3rem 2.5rem 2.5rem;
}
.modal__body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--accent);
    font-weight: normal;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}
.modal__body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: normal;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.modal__body p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}
.modal__body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.modal__body ul li {
    list-style: disc;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 0.375rem;
}
.modal__body a { color: var(--accent); text-decoration: none; }
.modal__body a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
    h2 { font-size: 40px; line-height: 44px; }
    .two-col--history { column-gap: 40px; }
    .header__logo img { height: 72px; }
}

/* ---- tablet portrait (≤ 900px) ---- */
@media (max-width: 900px) {
    h2 { font-size: 34px; line-height: 38px; }

    /* grids → single column */
    .two-col,
    .two-col--product,
    .two-col--product-reverse,
    .contact__layout { grid-template-columns: 1fr; gap: 2rem; }

    /* slider always on top in collapsed product grids */
    .two-col--product .slider,
    .two-col--product-reverse .slider { order: -1; }

    /* history strip stays horizontal but tighter */
    .two-col--history { column-gap: 32px; }

    /* sections */
    .section-white { padding: 48px 0; }
    .section-light { padding: 48px 0; }

    /* cocktails CTA stacks and centers */
    .cocktails__cta { flex-direction: column; align-items: center; gap: 2rem; max-width: 100%; }
    .cocktails__cta-left { align-items: center; }
    .cocktails__cta-right { border-left: none; border-top: 4px solid #6f0000; padding-left: 0; padding-top: 1.5rem; text-align: center; }

    /* hero */
    .hero { height: max(60vh, 460px); }

    /* header */
    .header__logo img { height: 64px; }
    .header__contact { display: none; }

    /* footer */
    footer .container { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer__right { align-items: flex-start; }
    .footer__logo img { height: 80px; }

    /* parallax text heading */
    .parallax-text__content h2 { font-size: 2.5rem; line-height: 1.15; }
}

/* ---- mobile (≤ 600px) ---- */
@media (max-width: 600px) {
    h2 { font-size: 28px; line-height: 32px; }
    .container { padding: 0 1.25rem; }
    .section-label { font-size: 1.25rem; }

    /* sections */
    .section-white { padding: 36px 0; }
    .section-light { padding: 36px 0; }

    /* hero */
    .hero { height: max(50vh, 380px); }

    /* history strip — stack fully */
    .two-col--history { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-divider { display: none; }

    /* contact value font */
    .contact__info-value { font-size: 1.2rem; }
    .contact__info { gap: 2rem; }

    /* footer nav — vertical list */
    .footer__nav { flex-direction: column; gap: 0.4rem; }
    .footer__nav a { padding: 0; border: none !important; }
    .footer__nav a + a { border-left: none; }
    .footer__legal { flex-direction: column; gap: 0.4rem; }
    .footer__legal a { padding: 0; border: none !important; }
    .footer__legal a + a { border-left: none; }

    /* parallax text */
    .parallax-text__content h2 { font-size: 2rem; line-height: 1.15; }
    .parallax-text__content p { font-size: 0.9rem; }

    /* modal full-screen on small phones */
    .modal__box { max-height: 92vh; }
}

/* ============================================================
   ULTRA-WIDE SIDE TICKERS (> 1920px)
   ============================================================ */
.side-ticker { display: none; }

@media (min-width: 1921px) {
    .side-ticker {
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
        height: 100vh;
        overflow: hidden;
        z-index: 499;
        pointer-events: none;
    }
    .side-ticker--left {
        left: calc((100vw - 1920px) / 2 - 41px);
        width: 41px;
        border-left: 1px solid var(--accent);
    }
    .side-ticker--right {
        right: calc((100vw - 1920px) / 2 - 41px);
        width: 41px;
        border-right: 1px solid var(--accent);
    }
    .side-ticker__track {
        writing-mode: vertical-rl;
        white-space: nowrap;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 20px;
        letter-spacing: 0.3em;
        color: var(--accent);
        opacity: 0.45;
        text-transform: uppercase;
    }
    .side-ticker--left .side-ticker__track {
        animation: ticker-down 45s linear infinite;
    }
    .side-ticker--right .side-ticker__track {
        animation: ticker-up 45s linear infinite;
    }
    @keyframes ticker-down {
        from { transform: translateY(-50%); }
        to   { transform: translateY(0); }
    }
    @keyframes ticker-up {
        from { transform: translateY(0); }
        to   { transform: translateY(-50%); }
    }
}
