/* ===== VARIJABLE ===== */
:root {
  --dark: #0e0d0c;
  --dark-soft: #1a1816;
  --cream: #f7f2ea;
  --cream-soft: #efe8db;
  --text: #211d18;
  --text-muted: #6b6357;
  --text-on-dark: #f5f0e6;
  --text-on-dark-muted: #b4a996;
  --gold: #c9a961;
  --gold-soft: #e4d4ab;
  --border: #e3dcca;
  --radius: 4px;
  --max-width: 1160px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: .01em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { padding: 0; margin: 0; list-style: none; }

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: .9em;
}

.accent-text { color: var(--gold); font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--gold);
  color: var(--dark);
}
.btn-accent:hover { background: var(--gold-soft); }

.btn-outline {
  border-color: currentColor;
  background: transparent;
}
.hero .btn-outline { color: var(--text-on-dark); }
.btn-outline:hover { background: rgba(0,0,0,.04); }
.hero .btn-outline:hover { background: rgba(255,255,255,.08); }

.btn-small { padding: 9px 20px; font-size: .8rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,242,234,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span { color: var(--gold); font-weight: 500; }

.main-nav {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

.nav-link {
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .02em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 140px 0 120px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,169,97,.16) 0%, rgba(201,169,97,0) 60%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: .01em;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-soft); }

.section-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-lead { color: var(--text-muted); }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.about-frame {
  background: var(--dark);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.bottle-icon-lg { width: 30%; height: 30%; }

/* ===== KATALOG ===== */
.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tab-btn:hover { border-color: var(--gold); }
.tab-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--text-on-dark);
}

.search-input {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .88rem;
  min-width: 240px;
}
.search-input:focus { outline: 1.5px solid var(--gold); }

.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.brand-group { margin-bottom: 56px; }
.brand-name {
  font-size: 1.6rem;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

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

.product-card {
  display: flex;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.section-alt .product-card { background: #fff; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20,16,8,.08);
}

.product-icon {
  width: 44px;
  min-width: 44px;
  height: 58px;
  color: var(--gold);
}

.product-info h4 {
  font-size: 1.15rem;
  margin-bottom: .2em;
}
.product-meta {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: .6em;
}
.product-note {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1em;
}
.product-info .btn { padding: 8px 20px; font-size: .78rem; }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-card svg { width: 30px; height: 30px; color: var(--gold); }
.contact-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.contact-value { font-family: var(--font-heading); font-size: 1.2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--text-on-dark-muted);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .logo { color: var(--text-on-dark); }
.site-footer .logo span { color: var(--gold); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: .85rem; }
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-copy { font-size: .78rem; width: 100%; text-align: center; margin: 0; }

@media (min-width: 640px) {
  .footer-copy { width: auto; text-align: right; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 320px; margin: 0 auto; order: -1; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 14px 0; width: 100%; text-align: center; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 70px; }
  .catalog-controls { flex-direction: column; align-items: stretch; }
  .search-input { min-width: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
