/* ============================================================================
   Wine & Beer Georgia — styles.css
   Palette: burgundy #6B1A2A · gold #C9A84C · cream #F5F0E8 · charcoal #1C1C1C
   Fonts:   Playfair Display (headings) · Inter (body) · Noto Sans Georgian (KA)
   Mobile-first, responsive, B2B-premium aesthetic.
============================================================================ */

/* ---------------------------------- Tokens -------------------------------- */
:root {
  --burgundy: #6B1A2A;
  --burgundy-dark: #4E1220;
  --burgundy-deep: #2A0A12;
  --gold: #C9A84C;
  --gold-soft: #D9BE70;
  --cream: #F5F0E8;
  --cream-dark: #ECE3D4;
  --charcoal: #1C1C1C;
  --charcoal-soft: #2A2A2A;
  --ink: #20140F;
  --muted: #6E6258;
  --line: rgba(28, 28, 28, 0.10);
  --white: #ffffff;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-ka: "Noto Sans Georgian", "BPG Nino Mtavruli", var(--font-body);

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(28, 28, 28, 0.06);
  --shadow-md: 0 12px 34px rgba(28, 28, 28, 0.12);
  --shadow-lg: 0 26px 60px rgba(42, 10, 18, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

/* When Georgian is active, switch the whole UI to a Georgian-capable font. */
html[data-lang="ka"] {
  --font-head: "Noto Sans Georgian", "BPG Nino Mtavruli", "Playfair Display", serif;
  --font-body: "Noto Sans Georgian", "BPG Nino Mtavruli", "Inter", sans-serif;
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip; /* guard against any element causing horizontal page shift */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-locked { overflow: hidden; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.16;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

::selection { background: var(--gold); color: var(--charcoal); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------- Layout --------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 72px 0; }
.section--tight { padding: 52px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.section-head { max-width: 660px; margin: 0 0 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.section--dark .eyebrow,
.hero .eyebrow { color: var(--gold); }

.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin: 0; }
.section--dark .section-sub { color: rgba(245, 240, 232, 0.78); }

/* gold divider accent */
.accent-line {
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0 0 22px;
}
.section-head--center .accent-line { margin-left: auto; margin-right: auto; }

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--burgundy); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--burgundy-dark); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245, 240, 232, 0.55); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: var(--cream); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }

/* ------------------------------- Site header ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(245, 240, 232, 0.96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--burgundy), var(--burgundy-deep));
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
/* Emblem-only logo badge (the full logo's misspelled text is cropped out of frame). */
.brand-logo {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: #fff;
  background-image: url("../assets/logo-full.png");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: 188% auto;
  box-shadow: inset 0 0 0 1px rgba(28, 28, 28, 0.08);
}
.site-footer .brand-logo { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--burgundy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* nav menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 9px 11px;
  border-radius: 8px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav-menu a:hover { color: var(--burgundy); }
.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-menu a[aria-current="page"] { color: var(--burgundy); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(28, 28, 28, 0.06);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 9px;
  border-radius: 50px;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.lang-btn:hover { color: var(--burgundy); }
.lang-btn.is-active {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 1px 4px rgba(42, 10, 18, 0.3);
}

.nav-cta { display: inline-flex; padding: 12px 20px; font-size: 0.92rem; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--burgundy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 7px); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  color: var(--cream);
  padding: clamp(90px, 16vw, 168px) 0 clamp(80px, 12vw, 128px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  /* per-page: set --hero-img: url(...) inline on the .hero element */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(42, 10, 18, 0.92) 0%, rgba(42, 10, 18, 0.72) 45%, rgba(28, 28, 28, 0.55) 100%);
}
.hero-content { max-width: 720px; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  margin-bottom: 0.5em;
}
.hero p.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(245, 240, 232, 0.9);
  max-width: 600px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* compact page hero (interior pages) */
.page-hero { padding: clamp(76px, 12vw, 128px) 0 clamp(54px, 8vw, 84px); }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
.page-hero p.hero-sub { margin-bottom: 0.6em; }

/* ------------------------------ Advantage grid ---------------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }

.advantage {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.advantage:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.5);
}
.advantage .icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(107, 26, 42, 0.1), rgba(201, 168, 76, 0.16));
  color: var(--burgundy);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.advantage .icon svg { width: 26px; height: 26px; }
.advantage h3 { font-size: 1.22rem; margin-bottom: 0.35em; }
.advantage p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ------------------------------ Service cards ----------------------------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.3rem; }
.service-card p { color: var(--muted); flex: 1; }
.service-card .more {
  margin-top: 14px;
  font-weight: 600;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card .more svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ------------------------------ Product cards ----------------------------- */
.product-grid { grid-template-columns: 1fr; }
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,10,18,0) 55%, rgba(42,10,18,0.45) 100%);
}
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.product-body p { color: var(--muted); flex: 1; font-size: 0.97rem; }
.product-body .btn { margin-top: 18px; align-self: flex-start; }

.note-banner {
  margin-top: 38px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.note-banner .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.note-banner .icon svg { width: 26px; height: 26px; }
.note-banner p { margin: 0; color: rgba(245, 240, 232, 0.94); }

/* ------------------------------ Wine cards -------------------------------- */
.wine-grid { grid-template-columns: 1fr; }
.wine-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.wine-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wine-media {
  background: linear-gradient(180deg, #ffffff 0%, #f3eee4 100%);
  /* Definite height + object-fit:contain on the img = whole bottle always fits.
     (No grid here — a grid track sizes to the image's intrinsic height and
     breaks the 100% sizing.) */
  height: 400px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.wine-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* whole bottle always visible, scaled to fit the box */
  filter: drop-shadow(0 10px 18px rgba(28, 28, 28, 0.16));
  transition: transform 0.4s var(--ease);
}
.wine-card:hover .wine-media img { transform: translateY(-4px) scale(1.03); }
.wine-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.wine-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.wine-head h3 { font-size: 1.32rem; margin: 0; }
.wine-badge {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.wine-badge--red { background: rgba(107, 26, 42, 0.12); color: var(--burgundy); }
.wine-badge--amber { background: rgba(201, 168, 76, 0.18); color: #8a6d1f; }
.wine-badge--rose { background: rgba(214, 122, 140, 0.20); color: #a8455e; }
.wine-badge--brandy { background: rgba(150, 90, 40, 0.16); color: #8a5a1f; }
.wine-badge--lemon { background: rgba(170, 160, 40, 0.20); color: #78710f; }

/* Placeholder shown until a real product photo exists at assets/products/<slug>.png */
.wine-media.is-empty { position: relative; }
.wine-media.is-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 48'%3E%3Cpath d='M10 2h4v5.5c0 1.2 2 2.8 2 6V41a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V13.5c0-3.2 2-4.8 2-6V2z' fill='%236B1A2A'/%3E%3C/svg%3E") center / auto 52% no-repeat;
  opacity: 0.15;
}
.wine-note { color: var(--muted); font-size: 0.95rem; margin: 0 0 16px; }
.wine-specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}
.wine-specs li { display: flex; flex-direction: column; line-height: 1.3; }
.wine-specs li span { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.wine-specs li b { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.wine-body .btn { margin-top: auto; align-self: flex-start; }

/* ------------------------------ Coffee cards ------------------------------ */
.coffee-grid { grid-template-columns: 1fr; }
.coffee-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.coffee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.coffee-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.coffee-card:hover img { transform: scale(1.05); }
.coffee-card figcaption {
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
  text-align: center;
}

/* ------------------------------ Process steps ----------------------------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  color: var(--burgundy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.25em; }
.step p { color: var(--muted); margin: 0; }

/* --------------------------------- Stats ---------------------------------- */
.stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 18px;
  box-shadow: var(--shadow-sm);
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ----------------------------- Info / tour cards -------------------------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card h3 { font-size: 1.16rem; margin-bottom: 0.3em; color: var(--burgundy); }
.info-card p { margin: 0; color: var(--muted); }

/* --------------------------- Split (media + text) ------------------------- */
.split { display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr; }
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.lead { font-size: 1.12rem; color: var(--ink); }

/* placeholder blocks (certs / partners coming soon) */
.placeholder-box {
  border: 2px dashed rgba(107, 26, 42, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  padding: 34px 26px;
  text-align: center;
  color: var(--muted);
}
.placeholder-box h3 { color: var(--burgundy); margin-bottom: 0.3em; }
.placeholder-box p { margin: 0; }
.placeholder-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}
.placeholder-logos span {
  width: 96px; height: 52px;
  border-radius: 8px;
  background: rgba(28, 28, 28, 0.05);
  border: 1px solid var(--line);
}

/* -------------------------------- CTA band -------------------------------- */
.cta-band {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: clamp(64px, 10vw, 100px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--band-img);
  background-size: cover; background-position: center;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(42,10,18,0.93), rgba(28,28,28,0.82));
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.cta-band p { color: rgba(245, 240, 232, 0.88); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }

/* --------------------------------- Contact -------------------------------- */
.contact-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--ink);
}
.field label .req { color: var(--burgundy); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.22);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-status {
  display: none;
  margin-top: 6px;
  margin-bottom: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(107, 26, 42, 0.08);
  border: 1px solid rgba(107, 26, 42, 0.25);
  color: var(--burgundy);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: rgba(176, 0, 32, 0.07);
  border-color: rgba(176, 0, 32, 0.35);
  color: #9b1c1c;
}

/* Honeypot anti-spam field — visually hidden but present in the DOM. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* direct contact panel */
.contact-side h3 { font-size: 1.3rem; margin-bottom: 0.6em; }
.contact-links { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.contact-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.5); }
.contact-link .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-link .ic svg { width: 22px; height: 22px; }
.contact-link .ic--wa { background: #25D366; }
.contact-link .ic--tg { background: #2AABEE; }
.contact-link .ic--em { background: var(--burgundy); }
.contact-link .meta { display: flex; flex-direction: column; line-height: 1.25; }
.contact-link .meta small { color: var(--muted); font-weight: 500; font-size: 0.8rem; }

.contact-note {
  font-size: 0.92rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-note svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* --------------------------------- Footer --------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.78);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-mark { background: linear-gradient(150deg, var(--burgundy), var(--burgundy-deep)); }
.footer-tagline { margin-top: 16px; max-width: 320px; font-size: 0.95rem; }

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 0.95rem; }
.footer-col a { transition: color 0.18s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}
.footer-bottom .todo { color: rgba(245,240,232,0.45); font-size: 0.78rem; }

/* ----------------------------- Scroll reveal ------------------------------ */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .product-card:hover, .advantage:hover, .service-card:hover { transform: none; }
}

/* ------------------------------- Responsive ------------------------------- */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .wine-grid { grid-template-columns: repeat(2, 1fr); }
  .coffee-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .wine-grid { grid-template-columns: repeat(3, 1fr); }
  .coffee-grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.05fr 1fr; gap: 48px; }
  .split--reverse .split-media { order: 2; }
  .contact-grid { grid-template-columns: 1.25fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.4fr; }
}

/* Desktop nav vs. mobile nav.
   Breakpoint at 1100px: below it we use the compact hamburger dropdown so the
   full inline nav never overflows in RU/KA (longer labels) on small laptops. */
@media (max-width: 1240px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    /* Top dropdown panel (full width). No horizontal transform — a side
       off-canvas (translateX) extends the page width and makes mobile shift
       sideways, so we slide DOWN from the top instead. */
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    padding: 12px 22px 22px;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(28, 28, 28, 0.16);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s;
  }
  .nav-menu a { padding: 14px 12px; font-size: 1.08rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu a::after { display: none; }
  .nav-menu .btn { margin-top: 16px; }
  .nav-menu .nav-cta-mobile { display: inline-flex; }
}

@media (min-width: 1241px) {
  .nav-menu .nav-cta-mobile { display: none; }
}

/* Hide the tagline in the HEADER at all widths — it's the widest element in the
   brand block and pushes the inline nav (long in RU/KA) off-screen. The footer
   keeps the full tagline, where there's room. */
.site-header .brand-sub { display: none; }

/* Small screens: keep the header bar on a single line that fits the viewport.
   The brand tagline + 3-button lang switch + hamburger are too wide otherwise,
   which pushed the page sideways. */
@media (max-width: 560px) {
  .container { padding: 0 15px; }
  .site-header .brand-sub { display: none; }   /* hide tagline in header (footer keeps it) */
  .brand { gap: 9px; min-width: 0; }
  .brand-text { min-width: 0; }
  .brand-name { font-size: 0.98rem; white-space: nowrap; }
  .brand-logo { width: 40px; height: 40px; border-radius: 10px; }
  .nav { gap: 8px; }
  .nav-actions { gap: 8px; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 5px 7px; font-size: 0.72rem; letter-spacing: 0.02em; }
  .nav-toggle { width: 42px; height: 42px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 0.86rem; }
  .lang-btn { padding: 5px 6px; font-size: 0.68rem; }
}
