/* ============================================================
   Moštěnický sirup — Glassmorphism Redesign
   ============================================================ */

:root {
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-bg-strong: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass-blur: 20px;

  --paper: #f8f5f0;
  --paper-2: #f0ebe3;
  --card: rgba(255, 255, 255, 0.65);
  --ink: #1a1a2e;
  --ink-deep: #0f0f1e;
  --ink-70: #3a3a5e;
  --accent: #e8451c;
  --accent-2: #c73a18;
  --gold: #f4a261;
  --text: #2c2c3a;
  --muted: #6b6b80;
  --line: rgba(255, 255, 255, 0.18);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --section-pad: 100px;
  --gap: 28px;
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(135deg, #f8f5f0 0%, #e8e0d4 50%, #f0ebe3 100%);
  background-attachment: fixed;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 69, 28, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(30, 30, 46, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(244, 162, 97, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ============ GLASS CARD ============ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-card-inner {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 28px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.15; margin: 0; }
h2.section-title { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 14px;
}
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .25s ease; letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 69, 28, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 69, 28, 0.45); }
.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(26, 26, 46, 0.25); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 245, 240, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(248, 245, 240, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 9px 16px;
  border-radius: 999px; transition: .2s; position: relative;
}
.nav a:hover { background: rgba(26, 26, 46, 0.08); }
.lang { display: flex; gap: 6px; margin-left: 14px; padding-left: 16px; border-left: 1px solid rgba(26, 26, 46, 0.12); }
.lang a { font-size: 13px; font-weight: 700; color: var(--muted); padding: 5px 10px; border-radius: 8px; }
.lang a.active { background: var(--ink); color: #fff; }
.menu-toggle { display: none; }

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.slides-track {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float 15s infinite ease-in-out;
}
.p1 { width: 300px; height: 300px; top: 10%; left: 60%; animation-delay: 0s; }
.p2 { width: 200px; height: 200px; top: 60%; left: 10%; animation-delay: -3s; }
.p3 { width: 150px; height: 150px; top: 20%; left: 30%; animation-delay: -6s; background: rgba(244, 162, 97, 0.06); }
.p4 { width: 250px; height: 250px; top: 70%; left: 70%; animation-delay: -9s; }
.p5 { width: 180px; height: 180px; top: 40%; left: 80%; animation-delay: -12s; background: rgba(232, 69, 28, 0.05); }
.p6 { width: 120px; height: 120px; top: 80%; left: 40%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.05); }
}

.slide-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding-top: 76px;
  gap: 40px;
}

.slide-content {
  color: #fff;
  padding: 40px 0;
}

.slide-flourish {
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 2px 20px rgba(244, 162, 97, 0.3);
}

.slide-content h1 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 68px);
  letter-spacing: -.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.slide-content p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 32px;
  max-width: 46ch;
  line-height: 1.7;
}

.slide-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 69, 28, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 4s infinite ease-in-out;
}
.glow-green { background: radial-gradient(circle, rgba(45, 106, 79, 0.3) 0%, transparent 70%); }
.glow-orange { background: radial-gradient(circle, rgba(244, 162, 97, 0.3) 0%, transparent 70%); }
.glow-purple { background: radial-gradient(circle, rgba(123, 45, 142, 0.3) 0%, transparent 70%); }

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.bottle-img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: bottle-float 6s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all .3s ease;
}
.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(244, 162, 97, 0.5);
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  width: 0%;
  transition: width 50ms linear;
}

.ratio-badge {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(28px, 8vw, 80px);
  z-index: 10;
  width: clamp(110px, 13vw, 160px);
  height: clamp(110px, 13vw, 160px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8961c);
  color: var(--ink-deep);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(244, 162, 97, 0.4);
  transform: rotate(-8deg);
  border: 3px solid rgba(255, 255, 255, 0.6);
  animation: badge-pulse 3s infinite ease-in-out;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(244, 162, 97, 0.4); }
  50% { box-shadow: 0 12px 50px rgba(244, 162, 97, 0.6); }
}

.ratio-badge b { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 42px); display: block; line-height: 1; }
.ratio-badge span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; display: block; }

/* ============ FEATURE STRIP ============ */
.features {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-bottom: 20px;
}

.features .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  padding: 32px 24px;
  text-align: center;
  transition: all .3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }

.feature .big { font-family: var(--font-head); font-size: 36px; color: var(--accent); line-height: 1; font-weight: 700; }
.feature .lbl { margin-top: 10px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.feature .sub { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ============ SECTIONS ============ */
section.block {
  padding: var(--section-pad) 0;
  position: relative;
}

.block-alt {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-head { max-width: 70ch; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ O ZNAČCE ============ */
.brand-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.brand-media { position: relative; }
.brand-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.brand-media .tag {
  position: absolute; left: -12px; bottom: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-head); font-weight: 700;
  padding: 12px 20px; border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(232, 69, 28, 0.35);
  font-size: 16px;
}

.tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab {
  font-family: var(--font-body); font-weight: 700; font-size: 14px; cursor: pointer;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.15);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink); transition: .2s;
}
.tab[aria-selected="true"] {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.tab:hover:not([aria-selected="true"]) { border-color: var(--ink); background: rgba(255, 255, 255, 0.7); }

.tab-panel { display: none; animation: fade .35s ease; }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tab-panel h3 { font-size: 24px; margin-bottom: 12px; }
.tab-panel p { color: var(--text); margin: 0 0 16px; }

.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.cert {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: 13px; color: var(--ink);
}
.cert .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.cert.bio .dot { background: #4a9e3c; }

/* ============ SORTIMENT ============ */
.sort-switch { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; }
.sort-switch button {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer;
  padding: 12px 28px; border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.15);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink); transition: .2s;
}
.sort-switch button.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.range-intro { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.range-fact {
  padding: 22px;
  text-align: center;
}
.range-fact b { color: var(--accent); font-family: var(--font-head); font-size: 16px; }
.range-fact p { margin: 6px 0 0; font-size: 14px; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.product {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 20px 14px 16px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
}
.product .imgwrap { height: 140px; display: grid; place-items: center; margin-bottom: 12px; }
.product .imgwrap img {
  max-height: 140px; width: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
  transition: .3s;
}
.product:hover .imgwrap img { transform: scale(1.08) rotate(-2deg); }
.product .name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 15px; }
.product .new {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px;
}
.product.bio .name::after { content: " BIO"; color: #4a9e3c; font-size: 11px; vertical-align: super; }

.sort-view { display: none; }
.sort-view.active { display: block; animation: fade .35s ease; }

.gastro-block { margin-top: 8px; }
.gastro-block + .gastro-block { margin-top: 56px; }
.gastro-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.gastro-head h3 { font-size: 24px; }
.gastro-head .pill {
  background: linear-gradient(135deg, var(--gold), #e8961c);
  color: var(--ink-deep); font-weight: 800; font-size: 12px;
  padding: 4px 14px; border-radius: 999px;
}
.gastro-block p.note { color: var(--muted); max-width: 60ch; margin: 0 0 24px; }

/* ============ MAP ============ */
.map-section {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(26, 26, 46, 0.95));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(244, 162, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 69, 28, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.map-section .eyebrow { color: var(--gold); }
.map-section h2 { color: #fff; }

.map-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-top: 48px;
}

.map-stage {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-stage img {
  width: 100%; height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
}
.map-hit { position: absolute; inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); }
.map-hit polygon {
  fill: transparent; stroke: transparent; cursor: pointer; transition: fill .15s ease; outline: none;
}
.map-hit polygon:hover { fill: rgba(244, 162, 97, 0.25); }
.map-hit polygon.active { fill: rgba(244, 162, 97, 0.15); }
.map-hint { text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 13px; margin-top: 14px; }

.seller-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.seller-panel h3 {
  color: #fff; font-size: 22px; display: flex; align-items: center; gap: 12px;
}
.seller-panel h3 .gd { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; }
.seller-count { color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin: 6px 0 20px; }
.seller-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  max-height: 360px; overflow: auto;
}
.seller-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14.5px; color: rgba(255, 255, 255, 0.9);
  display: flex; gap: 11px; align-items: flex-start;
}
.seller-list li::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-top: 8px;
}
.seller-empty {
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.2);
  border-radius: var(--radius-sm); padding: 20px;
}
.seller-empty p { margin: 0 0 6px; color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.seller-empty .rep { font-weight: 700; color: var(--gold); }
.seller-empty a { color: #fff; text-decoration: underline; }

/* ============ KONTAKTY ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.contact-col {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-col h4 {
  font-size: 17px; margin-bottom: 16px; color: var(--ink);
  padding-bottom: 12px; border-bottom: 2px solid rgba(26, 26, 46, 0.1);
}
.contact-item { margin-bottom: 16px; }
.contact-item .role { font-weight: 700; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.contact-item .who { font-weight: 600; color: var(--ink); }
.contact-item a { color: var(--ink-70); text-decoration: underline; text-underline-offset: 2px; }
.contact-item .line { color: var(--muted); font-size: 14.5px; }

.addr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.addr {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.addr .t { font-weight: 700; color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.addr p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.55; }

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
  color: rgba(255, 255, 255, 0.75);
  padding: 54px 0 40px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-inner img { height: 40px; opacity: .95; filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-weight: 600; font-size: 14px; color: rgba(255, 255, 255, 0.7); transition: .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta {
  width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px; padding-top: 22px;
  font-size: 13px; color: rgba(255, 255, 255, 0.4);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); }
::-webkit-scrollbar-thumb { background: rgba(26, 26, 46, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26, 26, 46, 0.35); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .menu-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }
  .nav {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 24px 22px; gap: 2px;
    transform: scaleY(0); transform-origin: top; opacity: 0;
    transition: .25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  .nav.open { transform: scaleY(1); opacity: 1; }
  .nav a { padding: 13px 12px; }
  .lang { border-left: 0; padding-left: 0; margin-left: 0; margin-top: 8px; }

  .slide-inner { grid-template-columns: 1fr; text-align: center; }
  .slide-visual { display: none; }
  .slide-content p { max-width: none; }
  .slide-cta { justify-content: center; }

  .brand-grid { grid-template-columns: 1fr; }
  .brand-media { order: -1; }

  .map-layout { grid-template-columns: 1fr; }
  .map-stage { max-width: 540px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .features .wrap { grid-template-columns: 1fr 1fr; }
  .range-intro { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .wrap { padding: 0 20px; }
  .features .wrap { grid-template-columns: 1fr; }
  .range-intro { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .addr-cards { grid-template-columns: 1fr; }
  .ratio-badge { display: none; }
  .slider-controls { bottom: 24px; }
}

@media (max-width: 480px) {
  .features .wrap { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}
