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

:root {
  --amber:      #d97706;
  --amber-dark: #92400e;
  --amber-deep: #78350f;
  --amber-light:#fbbf24;
  --amber-pale: #fffbeb;
  --amber-warm: #fef3c7;
  --brown:      #1c0f00;
  --brown-mid:  #3d1f00;
  --white:      #ffffff;
  --cream:      #fdf8f0;
  --text-dark:  #1c0f00;
  --text-mid:   #5c3d1e;
  --text-muted: #92714a;
  --border:     #e8d5b0;
  --nav-h:      68px;
  --section-pad: clamp(64px, 9vw, 108px);
  --radius:     12px;
  --shadow-sm:  0 2px 8px rgba(146,64,14,.1);
  --shadow-md:  0 8px 28px rgba(146,64,14,.15);
  --shadow-lg:  0 20px 60px rgba(146,64,14,.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(253,248,240,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(146,64,14,.12); }

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: -.03em;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.nav-back:hover { color: var(--amber-dark); background: var(--amber-warm); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--amber);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: background .18s, transform .18s;
}
.nav-cta:hover { background: var(--amber-dark); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 700px) {
  .nav-back, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  min-height: 100svh;
  background: linear-gradient(150deg, var(--amber-deep) 0%, var(--amber-dark) 45%, #b45309 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Honeycomb BG */
.hero-hc {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
}
.hero-hc svg { width: 100%; height: 100%; }

/* Drip effect */
.hero-drip {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}
.hero-drip svg { width: 100%; height: 100%; }

#hero .container {
  position: relative;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 7vw, 80px);
  max-width: 684px;
}

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.hero-text .eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--amber-light);
}

.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 36px;
}

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

.btn-honey {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--amber-light);
  color: var(--amber-deep);
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-honey:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-honey:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* Hero visual – jar of honey, emerges from right side */
.hero-visual {
  position: absolute;
  right: clamp(-440px, -32vw, -348px);
  bottom: clamp(-215px, -16vw, -154px);
  width: clamp(320px, 31vw, 500px);
  z-index: 1;
  pointer-events: none;
}

.honey-jar-wrap {
  position: relative;
  width: 100%;
  padding: 40px;
  margin: -40px;
  box-sizing: content-box;
}

.honey-jar {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.28));
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 90px; height: 90px;
  background: var(--amber-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-align: center;
}
.hero-badge strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--amber-deep);
  line-height: 1;
}
.hero-badge span {
  font-size: 10px;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 760px) {
  #hero {
    min-height: unset;
    align-items: flex-start;
    padding-bottom: 0;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    padding-block: 100px 0;
  }
  .hero-visual {
    position: relative;
    right: auto; bottom: auto;
    width: clamp(300px, 88vw, 460px);
    margin-inline: auto;
    margin-top: 100px;
    margin-bottom: -38vw;
    transform: none !important;
  }
}

/* ════════════════════════════════════
   ABOUT / STORY
════════════════════════════════════ */
#pribeh {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #fbbf24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-stat-bubble {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.story-stat-bubble strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.story-stat-bubble span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.story-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.story-text .eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--amber);
}

.story-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.story-text h2 em { font-style: italic; color: var(--amber-dark); }

.story-text p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.story-tag {
  padding: 6px 14px;
  background: var(--amber-warm);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
}

@media (max-width: 760px) {
  .story-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   DRUHY MEDU — bento redesign
════════════════════════════════════ */
#druhy {
  padding-block: var(--section-pad);
  background: var(--amber-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p { font-size: 15px; color: var(--text-mid); }

/* Regionálny produkt badge */
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: linear-gradient(90deg, #78350f 0%, #92400e 100%);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(120,53,15,.35);
}
.reg-badge svg {
  width: 14px; height: 14px;
  fill: #fbbf24;
  flex-shrink: 0;
}

/* Bento honey cards */
.honey-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hb-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .28s cubic-bezier(.34,1.26,.64,1), box-shadow .28s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.hb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(146,64,14,.2);
}
.hb-card:hover .hb-img-float {
  transform: translateY(-10px) scale(1.06);
}

/* ── Photo area ── */
.hb-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Per-type warm gradients (visible behind transparent PNGs) */
.hb-agatovy .hb-photo { background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 45%, #fde68a 100%); }
.hb-lipovy  .hb-photo { background: linear-gradient(160deg, #fefce8 0%, #fef9c3 45%, #fef08a 100%); }
.hb-lesny   .hb-photo { background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 45%, #fed7aa 100%); }
.hb-kvetovy .hb-photo { background: linear-gradient(160deg, #fff1f2 0%, #ffe4e6 45%, #fecdd3 100%); }
.hb-plastovy .hb-photo { background: linear-gradient(160deg, #fff8e1 0%, #fef3c7 45%, #fcd34d 100%); }

/* Honeycomb pattern always in background (z:1) */
.hb-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48'%3E%3Cpolygon points='14,2 42,2 56,26 42,50 14,50 0,26' fill='none' stroke='rgba(146,64,14,0.11)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 48px;
}

/* Standard full-bleed photo */
.hb-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 2;
}

/* Transparent-bg product PNG:
   oversized so bottom ~1/3 extends past container edge,
   white wave then hides that clipped portion */
.hb-photo img.hb-img-float {
  height: 200%;
  top: -35%;
  object-fit: contain;
  object-position: top center;
  padding-inline: 6%;
  filter: drop-shadow(0 14px 30px rgba(92,40,14,.28));
  transition: transform .35s cubic-bezier(.34,1.26,.64,1);
  transform-origin: center bottom;
}

.hb-photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: rgba(92, 40, 14, .82);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
}

/* White wave on top of jar (z:3) — hides bottom of jar */
.hb-photo::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -6%; right: -6%;
  height: 68px;
  background: var(--white);
  border-radius: 65% 65% 0 0 / 65% 65% 0 0;
  z-index: 3;
  pointer-events: none;
}

/* Season pill above wave (z:4) */
.hb-season-pill {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  white-space: nowrap;
  background: rgba(28,15,0,.52);
  color: rgba(255,255,255,.92);
  padding: 5px 14px;
  border-radius: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
}

/* Placeholder (shown when no real photo) */
.hb-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
}

.hb-jar-svg {
  position: relative;
  z-index: 1;
  width: 80px;
  opacity: .72;
}

.hb-photo-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Card body */
.hb-body {
  padding: 10px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hb-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}

.hb-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
  flex: 1;
  /* truncate to 3 lines by default */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}
.hb-desc.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.hb-read-more {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--amber-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  transition: color .18s;
  letter-spacing: .02em;
}
.hb-read-more:hover { color: var(--amber); }
.hb-read-more svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .22s;
}
.hb-read-more.open svg { transform: rotate(180deg); }

/* Tasting profile */
.hb-tasting {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hb-t-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-t-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  min-width: 68px;
  flex-shrink: 0;
}
.hb-t-track {
  flex: 1;
  height: 7px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.hb-t-fill {
  height: 100%;
  border-radius: 6px;
  transition: width .7s cubic-bezier(.16,1,.3,1);
}
/* Tasting bars — all warm tones, each slightly different */
.hb-agatovy .hb-t-fill { background: linear-gradient(90deg, #d97706, #fbbf24); }
.hb-lipovy  .hb-t-fill { background: linear-gradient(90deg, #ca8a04, #facc15); }
.hb-lesny   .hb-t-fill { background: linear-gradient(90deg, #b45309, #f97316); }
.hb-kvetovy .hb-t-fill { background: linear-gradient(90deg, #be185d, #f43f5e); }
.hb-plastovy .hb-t-track { background: #f3e2a6; }
.hb-plastovy .hb-t-fill {
  background: linear-gradient(90deg, #b7791f, #f5b942);
  box-shadow: 0 0 12px rgba(245, 185, 66, .35);
}

/* Kvetový med — soft pink gradient override */
.hb-kvetovy .hb-reg-tag { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }

/* Reg product badge */
.hb-reg-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 5px 11px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: .04em;
}
.hb-reg-tag svg { width: 11px; height: 11px; fill: var(--amber); }

/* 4 cards: 2×2 on tablet, 1 col on mobile */
@media (max-width: 900px) {
  .honey-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .honey-bento { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* Shorter photo area on smaller cards */
  .hb-photo { height: 200px; }
  /* Reduce float — less overshoot so image stays in frame */
  .hb-photo img.hb-img-float {
    height: 155%;
    top: -35%;
  }
  /* Disable card lift on hover — small screens have no room */
  .hb-card:hover { transform: none; box-shadow: none; }
  /* Keep subtle image float but smaller */
  .hb-card:hover .hb-img-float { transform: translateY(-6px) scale(1.03); }
}

/* ════════════════════════════════════
   CERTIFIKÁTY
════════════════════════════════════ */
.certs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--border);
}

.cert-thumb {
  position: relative;
  width: clamp(120px, 18vw, 180px);
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.34,1.26,.64,1), box-shadow .22s ease;
  background: var(--white);
}
.cert-thumb:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.cert-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(28,15,0,.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,.92);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: center;
  padding: 6px 8px;
  line-height: 1.3;
}
.cert-thumb-zoom {
  position: absolute;
  top: 6px; right: 6px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .18s;
}
.cert-thumb-zoom svg { width: 12px; height: 12px; stroke: var(--brown); fill: none; stroke-width: 2; stroke-linecap: round; }
.cert-thumb:hover .cert-thumb-zoom { opacity: 1; }

.certs-thumbs-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 640px) {
  .certs-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .certs-strip > div { /* text block */
    order: -1;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .certs-thumbs-row {
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  .cert-thumb {
    width: calc(50% - 6px);
    max-width: 180px;
  }
  .cert-thumb-zoom {
    opacity: 1; /* always visible on touch */
    background: rgba(255,255,255,.9);
  }
  .cert-thumb:hover { transform: none; box-shadow: var(--shadow-sm); }
}

/* Lightbox */
.cert-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cert-lightbox.open { display: flex; }
.cert-lightbox-img {
  max-width: min(680px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  object-fit: contain;
  display: block;
  animation: lbIn .22s cubic-bezier(.34,1.26,.64,1);
}
@keyframes lbIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cert-lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s;
}
.cert-lightbox-close:hover { background: rgba(255,255,255,.28); }
.cert-lightbox-close svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ════════════════════════════════════
   ĎALŠIE PRODUKTY
════════════════════════════════════ */
#produkty {
  padding-block: var(--section-pad);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.produkty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(32px, 5vw, 48px);
}

.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.34,1.26,.64,1), box-shadow .25s ease;
  cursor: default;
}
.prod-photo {
  position: relative;
  height: 180px;
  background: var(--amber-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.prod-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--amber-dark);
  opacity: .5;
}
.prod-photo-placeholder svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.prod-photo-placeholder span { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.prod-body {
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prod-icon {
  width: 52px; height: 52px;
  background: var(--amber-warm);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prod-icon svg { width: 26px; height: 26px; stroke: var(--amber-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.prod-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.prod-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.72;
  flex: 1;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--amber-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-start;
}

@media (max-width: 760px) {
  .produkty-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   KONTAKT
════════════════════════════════════ */
#kontakt {
  padding-block: var(--section-pad);
  background: linear-gradient(150deg, var(--amber-deep) 0%, #b45309 100%);
  position: relative;
  overflow: hidden;
}
#kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48'%3E%3Cpolygon points='14,2 42,2 56,26 42,50 14,50 0,26' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.kontakt-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.kontakt-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.kontakt-info h2 em { font-style: italic; color: var(--amber-light); }
.kontakt-info > p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
}
.kd-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kd-icon svg { stroke: var(--amber-light); width: 18px; height: 18px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.kd-text {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.5;
}
.kd-text strong { color: #fff; display: block; font-size: 13px; margin-bottom: 2px; }
.kd-text a { color: var(--amber-light); transition: color .18s; }
.kd-text a:hover { color: #fff; }

.kontakt-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.kontakt-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.kontakt-card-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.nasmed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--amber-light);
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 8px;
  transition: background .18s, transform .18s;
  text-decoration: none;
}
.nasmed-badge:hover { background: #fff; transform: translateY(-2px); }
.nasmed-badge svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

@media (max-width: 760px) {
  .kontakt-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   PREČO NÁŠ MED — editorial dark redesign
════════════════════════════════════ */
#preco {
  padding-block: var(--section-pad);
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
#preco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48'%3E%3Cpolygon points='14,2 42,2 56,26 42,50 14,50 0,26' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.preco-intro {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 64px);
}
.preco-intro .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
}
.preco-intro h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.preco-intro h2 em { font-style: italic; color: var(--amber-light); }
.preco-intro p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,.58);
  line-height: 1.72;
  max-width: 560px;
  margin-inline: auto;
}

/* Manifesto grid */
.preco-manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}

.pm-item {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .22s;
  cursor: default;
}
.pm-item:hover { background: rgba(255,255,255,.07); }

.pm-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: rgba(217,119,6,.3);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.pm-title {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pm-text {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
  max-width: 340px;
}

.pm-bar {
  width: 36px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 20px;
}

/* Stats strip */
.preco-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
}

.ps-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ps-cell:last-child { border-right: none; }

.ps-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 6px;
}

.ps-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .preco-manifesto { grid-template-columns: 1fr; }
  .preco-stats { grid-template-columns: 1fr 1fr; }
  .ps-cell:nth-child(2) { border-right: none; }
  .ps-cell:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .ps-cell:nth-child(1),
  .ps-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}


/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: var(--brown);
  padding-block: 40px 28px;
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}

.foot-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--amber-light);
  letter-spacing: -.03em;
}

.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .18s;
}
.foot-links a:hover { color: var(--amber-light); }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.made-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.made-by:hover { color: rgba(255,255,255,.7); }
.made-by:hover svg { opacity: 1 !important; }

.foot-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.foot-back {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.foot-back:hover { color: var(--amber-light); }

@media (max-width: 600px) {
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
