/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:    #C9A84C;
    --gold-lt: #E5C97A;
    --dark:    #0E0C0A;
    --dark2:   #1A1610;
    --dark3:   #252015;
    --text:    #D4CEBC;
    --text-lt: #F0EBD8;
    --border:  rgba(201,168,76,0.25);
    --radius:  6px;
    --font:    'Georgia', 'Times New Roman', serif;
    --font-ui: system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
h1,h2,h3,h4 { color: var(--text-lt); font-weight: normal; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 48px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-ui);
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); color: var(--dark); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(14,12,10,.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-text { font-size: 1.6rem; color: var(--gold); letter-spacing: .2em; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { font-family: var(--font-ui); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 50%, var(--dark) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
}
.hero-inner { text-align: center; position: relative; padding: 80px 0; }
.hero-title { font-size: clamp(3rem, 10vw, 7rem); color: var(--gold); letter-spacing: .3em; margin-bottom: 16px; }
.hero-tagline { font-size: 1.2rem; color: var(--text); margin-bottom: 40px; letter-spacing: .05em; }

/* ── Page hero (short) ──────────────────────────────────────────────────── */
.page-hero--short {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}
.page-hero--short h1 { color: var(--gold); }

/* ── Products grid ──────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
    background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; color: var(--text); transition: border-color .25s, transform .25s;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-card-img-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--dark3); display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .3; }
.product-card-img-placeholder::before { content: '🥃'; }
.product-card-body { padding: 20px; }
.product-card-body h2, .product-card-body h3 { font-size: 1.2rem; color: var(--text-lt); margin-bottom: 8px; }
.product-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.badge { font-family: var(--font-ui); font-size: .75rem; padding: 3px 10px; border: 1px solid var(--gold); color: var(--gold); border-radius: 20px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Product detail ─────────────────────────────────────────────────────── */
.product-page { padding: 60px 0; }
.product-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-top: 32px; }
.product-main-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.product-card-img-placeholder--large { aspect-ratio: 3/4; }
.product-name-en { color: var(--gold); letter-spacing: .15em; margin-bottom: 24px; font-style: italic; }
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.spec { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 20px; text-align: center; }
.spec span { display: block; font-family: var(--font-ui); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text); opacity: .7; }
.spec strong { display: block; font-size: 1.2rem; color: var(--gold); margin-top: 4px; }
.product-description, .product-tasting { margin: 32px 0; }
.product-description h2, .product-tasting h2 { font-size: 1.1rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.product-cta { margin-top: 40px; }

/* ── About teaser ───────────────────────────────────────────────────────── */
.about-teaser { background: var(--dark2); }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.img-placeholder { aspect-ratio: 4/3; background: var(--dark3); border-radius: var(--radius); border: 1px solid var(--border); }
.img-placeholder--wide { aspect-ratio: 16/9; margin-bottom: 40px; }
.about-teaser-text h2 { margin-bottom: 16px; }
.about-teaser-text p { margin-bottom: 24px; }

/* ── Values ─────────────────────────────────────────────────────────────── */
.values-section { background: var(--dark3); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-item { text-align: center; padding: 40px 24px; border: 1px solid var(--border); border-radius: var(--radius); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-item h3 { color: var(--gold); margin-bottom: 12px; }

/* ── CTA section ────────────────────────────────────────────────────────── */
.cta-section { background: var(--dark2); border-top: 1px solid var(--border); }
.cta-inner { text-align: center; }
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p { margin-bottom: 32px; color: var(--text); opacity: .8; }

/* ── News ───────────────────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.news-card { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; color: var(--text); transition: border-color .25s; }
.news-card:hover { border-color: var(--gold); }
.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card-img-placeholder { aspect-ratio: 16/9; background: var(--dark3); }
.news-card-body { padding: 20px; }
.news-card-body time { font-family: var(--font-ui); font-size: .8rem; color: var(--gold); opacity: .8; }
.news-card-body h2 { font-size: 1.15rem; margin: 8px 0; }

/* ── Article ────────────────────────────────────────────────────────────── */
.article-page { padding: 60px 0; }
.article-hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.article-date { font-family: var(--font-ui); font-size: .85rem; color: var(--gold); opacity: .8; }
.article-content { margin-top: 32px; line-height: 1.9; }
.article-content p { margin-bottom: 1.5em; }
.article-back { margin-top: 48px; }

/* ── Contacts ───────────────────────────────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contacts-info { padding-top: 24px; }
.contact-item { margin-bottom: 28px; }
.contact-item strong { display: block; font-family: var(--font-ui); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 4px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-ui); font-size: .85rem; color: var(--text); opacity: .8; }
.form-group input, .form-group textarea {
    background: var(--dark2); border: 1px solid var(--border); color: var(--text-lt);
    border-radius: var(--radius); padding: 12px 16px; font-size: 1rem; font-family: var(--font);
    outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.alert-success { background: rgba(100,200,100,.1); border: 1px solid rgba(100,200,100,.3); color: #8fca8f; padding: 16px; border-radius: var(--radius); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { font-family: var(--font-ui); font-size: .85rem; color: var(--text); opacity: .6; margin-bottom: 24px; }
.breadcrumb a { color: var(--text); }

/* ── Content narrow ─────────────────────────────────────────────────────── */
.content-narrow { max-width: 780px; margin: 0 auto; }

/* ── Placeholder text ───────────────────────────────────────────────────── */
.placeholder-text { color: var(--text); opacity: .4; font-style: italic; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark2); border-top: 1px solid var(--border); margin-top: auto; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; opacity: .6; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-social a { font-family: var(--font-ui); font-size: .85rem; color: var(--text); opacity: .7; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); opacity: 1; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-family: var(--font-ui); font-size: .8rem; opacity: .4; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: block; }
    .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark2); padding: 20px 24px; border-bottom: 1px solid var(--border); z-index: 99; }
    .about-teaser-grid, .product-detail, .contacts-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero-title { letter-spacing: .1em; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
