: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.25);
  --glass-border-strong: rgba(255, 255, 255, 0.4);
  --glass-blur: 20px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

  --ink: #1a1a2e;
  --ink-light: #16213e;
  --text: #2d2d3a;
  --text-light: rgba(255, 255, 255, 0.9);
  --muted: #6b6b80;
  --accent: #e94560;
  --accent-2: #c23152;
  --gold: #f5a623;
  --purple: #667eea;
  --pink: #f093fb;
  --blue: #4facfe;
  --green: #43e97b;

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

  --section-pad: 100px;
  --maxw: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  background-attachment: fixed;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #667eea, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f093fb, transparent 70%);
  top: 30%; right: -15%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4facfe, transparent 70%);
  bottom: 10%; left: 20%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #43e97b, transparent 70%);
  top: 60%; left: -5%;
  animation-delay: -15s;
  animation-duration: 30s;
}

.orb-5 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #f5576c, transparent 70%);
  bottom: -10%; right: 10%;
  animation-delay: -8s;
  animation-duration: 26s;
}

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

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; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

h2.section-title { font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 14px;
}

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

.lede { font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,0.65); max-width: 60ch; }

.text-white { color: #fff; }

.accent-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.accent-link:hover { color: var(--gold); }

/* Glass card base */
.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-dark {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.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);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-glass-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 30, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 30, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(233, 69, 96, 0.4));
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.1;
}

.brand-text small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 18px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

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

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
}

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

.fruit-svg {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 60%;
  max-width: 500px;
  opacity: 0.6;
  animation: fruitFloat 8s ease-in-out infinite;
}

@keyframes fruitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.slide-flourish {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: block;
}

.slide h1 {
  color: #fff;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.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 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.ratio-badge {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: clamp(80px, 10vw, 120px);
  z-index: 10;
  width: clamp(110px, 14vw, 160px);
  height: clamp(110px, 14vw, 160px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  animation: badgePulse 4s ease-in-out infinite;
}

.ratio-badge b {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  display: block;
  line-height: 1;
}

.ratio-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  opacity: 0.8;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 760px) {
  .ratio-badge { display: none; }
}

/* ============ FEATURES ============ */
.features {
  position: relative;
  z-index: 1;
  padding: 0;
  margin-top: -60px;
}

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

.feature {
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feature .big {
  font-family: var(--font-head);
  font-size: 38px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.feature .lbl {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.feature .sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 820px) {
  .features .wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features .wrap { grid-template-columns: 1fr; }
}

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

.block-alt {
  background: rgba(255, 255, 255, 0.03);
}

.block-dark {
  background: rgba(0, 0, 0, 0.2);
}

.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;
}

.glass-image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.glass-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.glass-image-frame img {
  width: 100%;
  display: block;
}

.glass-tag {
  position: absolute;
  left: -12px;
  bottom: 24px;
  background: rgba(233, 69, 96, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-size: 16px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.glass-tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.glass-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.glass-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.glass-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: 30px;
}

.tab-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.tab-panel h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #fff;
}

.tab-panel p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
  line-height: 1.7;
}

.cert-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.glass-cert {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-cert .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.glass-cert.bio .dot {
  background: var(--green);
}

/* ============ SORTIMENT ============ */
.sort-switch {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 46px;
}

.range-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.range-fact {
  padding: 24px;
  transition: transform 0.3s ease;
}

.range-fact:hover {
  transform: translateY(-4px);
}

.range-fact b {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 16px;
}

.range-fact p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 820px) { .range-intro { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .range-intro { grid-template-columns: 1fr; } }

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

@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 14px 18px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.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 16px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.product:hover .imgwrap img {
  transform: scale(1.08) rotate(-2deg);
}

.product .name {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.product .new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

.sort-view { display: none; }
.sort-view.active { display: block; animation: fadeUp 0.4s ease; }

.gastro-block { margin-top: 8px; }
.gastro-block + .gastro-block { margin-top: 64px; }
.gastro-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.gastro-head h3 { font-size: 24px; }

.glass-pill {
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gastro-block p.note {
  color: rgba(255, 255, 255, 0.6);
  max-width: 60ch;
  margin: 0 0 26px;
}

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

.map-stage {
  padding: 24px;
  position: relative;
}

.map-stage img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
}

.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 0.2s ease;
  outline: none;
}

.map-hit polygon:hover { fill: rgba(245, 166, 35, 0.25); }
.map-hit polygon.active { fill: rgba(245, 166, 35, 0.15); }

.map-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 14px;
}

.seller-panel {
  padding: 30px;
}

.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%;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.5);
}

.seller-count {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 8px 0 22px;
}

.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: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.seller-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

.seller-empty {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  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: 800; color: var(--gold); }
.seller-empty a { color: #fff; text-decoration: underline; }

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

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

.contact-col {
  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;
}

.contact-col h4 {
  font-size: 17px;
  margin-bottom: 16px;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item { margin-bottom: 18px; }
.contact-item .role { font-weight: 800; font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item .who { font-weight: 700; color: #fff; }
.contact-item a { color: rgba(255, 255, 255, 0.7); text-decoration: underline; text-underline-offset: 2px; }
.contact-item a:hover { color: var(--gold); }
.contact-item .line { color: rgba(255, 255, 255, 0.55); font-size: 14px; }

.addr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.addr {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.addr .t {
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.addr p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .addr-cards { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  padding: 54px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-footer .brand-text { color: #fff; }
.brand-footer .brand-text small { color: rgba(255,255,255,0.5); }

.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: color 0.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;
}

/* ============ MOBILE NAV ============ */
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 24px 22px;
    gap: 2px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: 0.25s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
  }

  .nav a {
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.8);
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* ============ RESPONSIVE FINE-TUNING ============ */
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  section.block { padding: 60px 0; }
  .features { margin-top: -40px; }
  .feature { padding: 24px 16px; }
  .feature .big { font-size: 30px; }
  .glass-panel { padding: 20px; }
  .brand-grid { grid-template-columns: 1fr; }
}