:root {
  --color-burgundy: #560014;
  --color-burgundy-dark: #42000f;
  --color-red: #e7193a;
  --color-pink: #f7ddd8;
  --color-pink-soft: #fae9e5;
  --color-hero-glow: #f3f3df;
  --color-hero-peach: #f4d3ca;
  --color-ring-peach: #f2d4ca;
  --color-text: #4f1020;
  --color-muted: #5f3440;
  --color-white: #ffffff;
  --shadow-button: 0 14px 28px rgba(176, 0, 36, 0.2);
  --container: 1300px;
  --desktop-gutter: clamp(96px, 8vw, 160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "kern", "liga";
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* picture obal funguje "transparentne" — všetky existujúce
   img-selektory CSS pravidiel naďalej platia na <img> vnútri.
   Pre kontajnerové imageov override v sekciách nižšie. */
picture {
  display: contents;
}

/* Picture v grid/flex kontajneroch musí byť rendered block,
   aby fungoval ako grid/flex item (Safari fix). */
.brand > picture,
.problem-media > picture,
.why-media > picture,
.contact-note-inner > picture,
.product-card > picture,
.care-card > picture {
  display: block;
  width: 100%;
}

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

.problem-list,
.tasting-list {
  list-style: none;
}

.problem-list li::marker,
.tasting-list li::marker {
  content: "";
}

.problem-inner,
.care-inner,
.care-cards,
.care-card,
.tasting-panel,
.tasting-products,
.product-card,
.packages-inner,
.package-cards,
.package-card,
.why-inner,
.why-media,
.contact-note-inner,
.faq-inner {
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--color-burgundy);
}

.header-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  width: clamp(220px, 17vw, 255px);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

/* CTA šípka so subtle bounce animáciou raz za 5s */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  line-height: 0;
  animation: btnArrowBounce 5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  will-change: transform;
}

.btn-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Submit button — šípka smeruje doprava (forward action) */
.contact-submit .btn-arrow {
  animation-name: btnArrowBounceRight;
}

.contact-submit .btn-arrow svg {
  transform: rotate(-90deg);
}

@keyframes btnArrowBounceRight {
  0%, 78%, 100% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(4px);
  }
  92% {
    transform: translateX(-1px);
  }
}

@keyframes btnArrowBounce {
  0%, 78%, 100% {
    transform: translateY(0);
  }
  85% {
    transform: translateY(4px);
  }
  92% {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-arrow {
    animation: none;
  }
}

/* ============================================
   STICKY CTA — pravý dolný roh (desktop)
   plný spodný bar (mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  min-height: 56px;
  border-radius: 100px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 0 6px rgba(231, 25, 58, 0.14),
    0 0 30px 8px rgba(231, 25, 58, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 220ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: stickyPulse 3.6s ease-in-out infinite;
}

.sticky-cta:hover {
  background: #cf1331;
  transform: translateY(-2px) scale(1.02);
}

@keyframes stickyPulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(231, 25, 58, 0.14),
      0 0 30px 8px rgba(231, 25, 58, 0.32),
      0 12px 28px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(231, 25, 58, 0.10),
      0 0 38px 14px rgba(231, 25, 58, 0.42),
      0 12px 28px rgba(0, 0, 0, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta.is-visible {
    animation: none;
  }
}

@media (max-width: 640px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px 20px;
    min-height: 56px;
    border-radius: 12px;
    font-size: 13px;
  }
}

.header-cta {
  min-width: 306px;
  margin-top: 16px;
  padding: 0 28px;
  color: var(--color-red);
  background: var(--color-white);
}

.primary-button {
  width: min(410px, 100%);
  padding: 0 30px;
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: var(--shadow-button);
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  background: #fff7f5;
}

.primary-button:hover {
  background: #cf1331;
  box-shadow: 0 18px 34px rgba(176, 0, 36, 0.25);
}

.hero {
  overflow: hidden;
  background: radial-gradient(ellipse at top left, #f3e3df 0%, #f4d3ca 100%);
}

.hero-inner {
  position: relative;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: clamp(58px, 8.5svh, 104px) 0 0;
  display: flex;
  flex-direction: column;
}

.hero-copy {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 1220px;
  margin: 0 auto;
  color: var(--color-burgundy);
  font-size: clamp(42px, 3.75vw, 66px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--color-red);
}

.hero-copy p {
  max-width: 1120px;
  margin: clamp(14px, 2svh, 22px) auto 0;
  color: #4d1a27;
  font-size: clamp(16px, 1.24vw, 20px);
  line-height: 1.34;
}

.hero-description-mobile {
  display: none;
}

.hero-content {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 415px) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  min-height: clamp(430px, 40vw, 540px);
  margin-top: clamp(30px, 3.4vw, 54px);
}

.hero-actions {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(390px, 100%);
  padding-bottom: clamp(0px, 3svh, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits {
  display: grid;
  gap: clamp(10px, 1.5svh, 14px);
  margin: 0 0 clamp(18px, 2.8svh, 26px);
  padding: 0;
  list-style: none;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.18;
}

.benefits li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding-left: 42px;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  background: url("assets/check.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.benefits strong {
  margin-left: 0.22em;
}

.rating-badge {
  width: min(354px, 100%);
  margin-top: clamp(20px, 3svh, 30px);
  filter: drop-shadow(0 14px 24px rgba(94, 24, 34, 0.08));
}

/* Hero bonus link — clean single-line text link s underline + ↓ */
.hero-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 20px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--color-burgundy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.hero-bonus .bonus-gift {
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
}

.hero-bonus .bonus-text-link {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(86, 0, 20, 0.45);
  transition: text-decoration-color 200ms ease;
}

.hero-bonus:hover .bonus-text-link {
  text-decoration-color: #560014;
}

.hero-bonus .bonus-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  margin-left: -4px;
}

.hero-bonus .bonus-arrow svg {
  width: 100%;
  height: 100%;
  transform: translateY(1px);
}

/* Heureka rating — jemný border, pasívna */
.heureka-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 382px;
  margin: 32px auto 0;
  padding: 10px 14px;
  border: 1px solid #d2a69a;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: default;
  user-select: none;
}

.heureka-badge-img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: block;
}

.heureka-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.heureka-stars-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.heureka-stars {
  color: #008F34;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.heureka-score {
  font-weight: 800;
  color: var(--color-burgundy);
  font-size: 16px;
  line-height: 1;
}

.heureka-sep {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1;
  opacity: 0.65;
}

.heureka-reviews {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-burgundy);
  line-height: 1;
  white-space: nowrap;
}

.heureka-text {
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-muted);
}

.heureka-dot {
  color: var(--color-muted);
  opacity: 0.5;
  margin: 0 2px;
}

.heureka-brand {
  color: #008F34;
  font-weight: 700;
}

.hero-actions .primary-button {
  width: min(382px, 100%);
  min-height: 72px;
}

.hero-actions .rating-badge {
  width: min(284px, 100%);
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 40vw, 540px);
  transform: translateY(-34px);
}

.hero-ring {
  position: absolute;
  z-index: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(243, 222, 217, 0.68) 0%,
    rgba(244, 211, 202, 0.68) 100%
  );
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-person-group {
  position: absolute;
  right: 22%;
  bottom: -1px;
  width: min(515px, 38vw);
}

.hero-person-stage {
  position: relative;
  display: block;
  width: 100%;
  animation: heroPersonWiggle 7.5s ease-in-out infinite;
  transform-origin: 50% 82%;
  cursor: pointer;
  text-decoration: none;
}

.person {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.label-card {
  position: absolute;
  z-index: 4;
  right: -27%;
  bottom: 36%;
  width: 68%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(85, 0, 20, 0.06));
}

.hero-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(72, 21, 13, 0.08));
}

.hero-element-left {
  left: 0.8%;
  top: 106px;
  width: min(166px, 12.6vw);
  animation: heroElementLeftWiggle 8.5s ease-in-out infinite;
  transform-origin: 58% 58%;
}

.hero-element-right {
  right: 8%;
  top: 78px;
  width: min(153px, 11.4vw);
  animation: heroElementRightWiggle 9s ease-in-out infinite;
  transform-origin: 48% 52%;
}

.problem-section {
  overflow-x: hidden;
  background: var(--color-white);
}

.problem-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 92px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(420px, 565px);
  align-items: center;
  justify-content: space-between;
  gap: 96px;
}

.problem-copy {
  max-width: 590px;
}

.problem-copy h2 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0;
}

.problem-copy h2 span {
  color: var(--color-red);
}

.problem-list {
  display: grid;
  gap: 0;
  margin: 36px 0 40px;
  padding: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.5;
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(86, 0, 20, 0.1);
}

.problem-list li:last-child {
  border-bottom: 0;
}

.problem-list .list-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: #99304b;
}

.problem-list strong {
  font-weight: 400;
}

.problem-button {
  width: min(350px, 100%);
}

.problem-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.problem-media img {
  width: 100%;
  aspect-ratio: 565 / 508;
  object-fit: cover;
  object-position: center;
}

/* Speech bubble — "Aaah, došla káva!" pri žene s prázdnym pohárom */
.problem-bubble {
  position: absolute;
  top: 40%;
  left: 28%;
  z-index: 2;
  padding: 10px 18px;
  background: #560014;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 22px;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transform-origin: 30% 100%;
  opacity: 0;
}

.problem-bubble.is-visible {
  animation: problemBubble 7s ease-in-out 0.4s infinite;
}

.problem-bubble::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 28%;
  width: 16px;
  height: 14px;
  background: #560014;
  clip-path: polygon(0 0, 100% 0, 60% 100%);
  transform: rotate(-4deg);
}

@keyframes problemBubble {
  0%, 84%, 100% {
    opacity: 0;
    transform: translateY(6px) scale(0.85);
  }
  8%, 32% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  42% {
    opacity: 0;
    transform: translateY(0) scale(0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-bubble {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.care-section {
  overflow-x: hidden;
  background: var(--color-white);
}

.care-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 80px 0 86px;
}

.care-inner h2 {
  margin: 0 auto 48px;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.care-inner h2 span {
  color: var(--color-red);
}

.care-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.care-card {
  position: relative;
  min-height: 228px;
  padding: 28px 26px 26px;
  border: 1px solid rgba(86, 0, 20, 0.08);
  border-radius: 14px;
  background: var(--color-white);
  transition: border-color 220ms ease;
}

.care-card:hover {
  border-color: rgba(231, 25, 58, 0.22);
}

.care-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fae9e5 0%, #f3ded9 100%);
  margin: 0 0 22px;
}

.care-card img {
  width: 32px;
  height: 32px;
  margin: 0;
}

.care-card h3 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
}

.care-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 28px;
}

.tasting-section {
  overflow-x: hidden;
  background: var(--color-white);
  padding: 78px 0 88px;
}

.tasting-panel {
  position: relative;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 54px 64px 52px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7) 0 18%, rgba(255, 255, 255, 0.35) 50%, rgba(243, 214, 206, 0.6) 100%),
    linear-gradient(135deg, #f3d6ce 0%, #f7e0d9 48%, #f3d6ce 100%);
}

.tasting-copy {
  position: relative;
  z-index: 2;
}

.tasting-copy h2 {
  margin: 0 0 28px;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

.tasting-copy h2 span {
  color: var(--color-red);
}

.tasting-copy p {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 25px;
}

.tasting-copy strong {
  font-weight: 700;
}

.tasting-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 28px;
  padding: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 26px;
  list-style: none;
}

.tasting-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.tasting-list img {
  width: 30px;
  height: 30px;
}

.tasting-heureka {
  width: 122px;
  height: auto;
}

/* Floating Heureka — len mobile, default skrytá */
.tasting-heureka-float {
  display: none;
}

.tasting-products {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
  align-items: stretch;
}

.product-card {
  position: relative;
  min-height: 300px;
  padding: 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 36px rgba(86, 0, 20, 0.1);
  text-align: center;
}

.product-card img {
  width: min(190px, 78%);
  height: auto;
  margin: 0 auto 20px;
}

.product-card p {
  min-height: 44px;
  margin: 0;
  color: #1b1114;
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
}

.bestseller-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 134px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 18px rgba(86, 0, 20, 0.08));
}

.bestseller-label.is-wiggling {
  animation: bestsellerWiggle 5s ease-in-out 2s infinite;
}

@keyframes bestsellerWiggle {
  0%, 18%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  3% {
    transform: translate(-50%, -50%) rotate(-10deg);
  }
  6% {
    transform: translate(-50%, -50%) rotate(8deg);
  }
  10% {
    transform: translate(-50%, -50%) rotate(-6deg);
  }
  13% {
    transform: translate(-50%, -50%) rotate(4deg);
  }
  16% {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bestseller-label.is-wiggling {
    animation: none;
  }
}

.tasting-button {
  display: inline-flex;
  width: min(430px, 100%);
  margin: 28px 0 24px;
  background: var(--color-red);
  box-shadow: 0 18px 34px rgba(231, 25, 58, 0.28);
}

.tasting-button:hover {
  background: #cf1331;
  box-shadow: 0 22px 40px rgba(231, 25, 58, 0.35);
}

.packages-section {
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% 20%, #fae9e5 0%, #f8e8e3 100%);
}

.packages-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 84px 0 86px;
}

.packages-header {
  max-width: 940px;
  margin: 0 auto 52px;
  text-align: center;
}

.packages-header h2 {
  margin: 0 0 18px;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0;
}

.packages-header h2 span {
  color: var(--color-red);
}

.packages-header p {
  margin: 0 auto;
  max-width: 870px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 27px;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.package-card {
  position: relative;
  min-width: 0;
  min-height: 268px;
  padding: 30px 32px 32px;
  border: 1px solid rgba(86, 0, 20, 0.06);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow:
    0 1px 2px rgba(86, 0, 20, 0.03),
    0 6px 20px rgba(86, 0, 20, 0.04);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.package-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card.is-visible:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 25, 58, 0.14);
  box-shadow:
    0 1px 2px rgba(86, 0, 20, 0.04),
    0 10px 28px rgba(231, 25, 58, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .package-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 280ms ease, border-color 280ms ease;
  }
}

.package-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.package-name {
  width: 121px;
  height: auto;
}

.package-tier {
  position: absolute;
  top: 32px;
  right: 0;
  width: auto;
  height: 32px;
  filter:
    drop-shadow(0 0 0.6px rgba(0, 0, 0, 0.55))
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 25px;
}

.package-card li::marker {
  content: "";
}

.package-card li img {
  width: 36px;
  height: 36px;
  padding: 7px;
  margin: 0;
  background: linear-gradient(135deg, #fae9e5 0%, #f3ded9 100%);
  border-radius: 10px;
  box-sizing: border-box;
}

.package-card strong {
  font-weight: 700;
}

.packages-button {
  display: flex;
  width: min(420px, 100%);
  margin: 46px auto 0;
}

.why-section {
  overflow-x: hidden;
  background: var(--color-white);
}

.why-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 84px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(380px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 92px;
}

.why-copy h2 {
  margin: 0 0 42px;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0;
}

.why-copy h2 span {
  color: var(--color-red);
}

.why-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(86, 0, 20, 0.1);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.5;
}

.why-list li:last-child {
  border-bottom: 0;
}

.why-list li::marker {
  content: "";
}

.why-list .list-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--color-red);
}

.why-list strong {
  color: var(--color-red);
  font-weight: 700;
}

.why-media {
  overflow: hidden;
  border-radius: 12px;
}

.why-media img {
  width: 100%;
  aspect-ratio: 520 / 340;
  object-fit: cover;
  object-position: center;
}

.trust-section {
  overflow-x: hidden;
  background: #f8e9e6;
}

.problem-list,
.care-card,
.tasting-copy,
.product-card,
.package-card,
.why-list,
.review-card,
.faq-item {
  overflow-wrap: break-word;
}

/* Typografia — zabrániť orphan slovám.
   - balance: krátke list items (2-3 riadky) — vyrovná všetky riadky
   - pretty: dlhšie body texty — chráni len posledné riadky
   Fallback: normal text wrapping (žiadny regres). */
.problem-list li span,
.why-list li span,
.package-card li span,
.tasting-list li span {
  text-wrap: balance;
}

.tasting-copy p,
.problem-copy p,
.care-card p,
.contact-note-inner p,
.proposal-copy p,
.review-card p,
.faq-answer,
.packages-header p {
  text-wrap: pretty;
}

/* Headings — vyvážená šírka riadkov */
.problem-copy h2,
.care-inner h2,
.tasting-copy h2,
.packages-header h2,
.why-copy h2,
.trust-inner h2,
.faq-inner h2,
.contact-form-header h2,
.proposal-copy h2 {
  text-wrap: balance;
}

.trust-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 82px 0 78px;
}

.trust-inner h2 {
  margin: 0 0 46px;
  color: var(--color-burgundy);
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.trust-inner h2 span {
  color: var(--color-red);
}

.reviews-shell {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
}

.reviews-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 520ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 292px;
  padding: 30px 28px;
  border: 1px solid rgba(86, 0, 20, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
}

.review-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
}

.review-card strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.reviews-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-red);
  background: transparent;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
}

.reviews-arrow.is-disabled,
.reviews-arrow:disabled {
  opacity: 0.34;
  cursor: default;
}

.logo-marquee {
  margin-top: 54px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 34s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
}

.logo-set img {
  width: 118px;
  height: 58px;
  object-fit: contain;
  filter: saturate(0.95);
}

.trust-stats {
  width: min(560px, 100%);
  margin: 34px auto 0;
  padding: 17px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4vw, 56px);
  border: 1px solid rgba(86, 0, 20, 0.58);
  border-radius: 8px;
  background: transparent;
  color: var(--color-text);
}

.trust-stat {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.trust-stat strong {
  color: var(--color-red);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.trust-stat span {
  font-size: 18px;
  line-height: 1;
}

.contact-note-section {
  overflow-x: hidden;
  background: var(--color-white);
}

.contact-note-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 590px);
  align-items: center;
  justify-content: center;
  gap: clamp(52px, 6vw, 86px);
}

.contact-note-inner img {
  width: 100%;
  aspect-ratio: 420 / 275;
  border-radius: 14px;
  object-fit: cover;
}

.contact-note-inner p {
  margin: 0;
  color: var(--color-text);
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
}

.contact-note-inner a {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #fae9e5;
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.faq-inner h2 {
  margin: 0 0 38px;
  color: var(--color-red);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  counter-reset: faq-counter;
}

.faq-item {
  counter-increment: faq-counter;
  border-bottom: 1px solid rgba(86, 0, 20, 0.10);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 18px 10px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  border: 0;
  color: var(--color-burgundy);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 220ms ease, padding 220ms ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 16px;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(231, 25, 58, 0.28);
  outline-offset: 2px;
}

.faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-red);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: opacity 220ms ease;
}

.faq-question:hover::before {
  opacity: 0.75;
}

.faq-question[aria-expanded="true"]::before {
  opacity: 0.85;
}

.faq-question span:first-child {
  font-size: 17px;
  line-height: 1.42;
  font-weight: 700;
}

.faq-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: var(--color-red);
  opacity: 0.65;
  transition: transform 240ms ease, opacity 220ms ease;
}

.faq-question:hover .faq-arrow {
  opacity: 1;
}

.faq-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-question[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  padding: 0 56px 0 84px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
}

.faq-question[aria-expanded="true"] + .faq-panel .faq-answer {
  padding-bottom: 22px;
}

.faq-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.faq-leaf {
  left: -38px;
  top: 42%;
  width: min(210px, 11vw);
  opacity: 0.9;
}

.faq-bean {
  right: 6.8%;
  bottom: 25%;
  width: min(128px, 7vw);
  transform: rotate(-14deg);
  filter: drop-shadow(0 12px 18px rgba(72, 21, 13, 0.1));
}

.proposal-section {
  overflow-x: hidden;
  background: var(--color-white);
  padding: 70px 0 78px;
}

.proposal-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
}

.proposal-card {
  position: relative;
  min-height: 496px;
  border-radius: 12px;
  background: linear-gradient(108deg, #44020f 0%, #591724 100%);
  box-shadow: 0 22px 46px rgba(76, 0, 16, 0.16);
}

.proposal-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 54%);
  padding: 62px 0 0 60px;
  color: var(--color-white);
}

.proposal-copy h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 46px;
  line-height: 1.07;
  font-weight: 700;
}

.proposal-copy h2 span {
  color: var(--color-red);
}

.proposal-copy p {
  max-width: 515px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  line-height: 1.32;
}

.proposal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(416px, 100%);
  min-height: 60px;
  margin-top: 48px;
  border-radius: 6px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.proposal-button:hover {
  background: #f01e3f;
  box-shadow: 0 22px 38px rgba(231, 25, 58, 0.24);
  transform: translateY(-2px);
}

.proposal-checks {
  position: absolute;
  left: 60px;
  bottom: 58px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.35;
  list-style: none;
}

.proposal-checks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.proposal-checks img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.proposal-signature {
  position: absolute;
  top: 64px;
  right: 84px;
  z-index: 3;
  display: grid;
  gap: 4px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.22;
}

.proposal-signature strong {
  font-weight: 700;
}

.proposal-signature span {
  color: #c0919b;
  font-weight: 700;
}

.proposal-person {
  position: absolute;
  right: 210px;
  bottom: 0;
  z-index: 2;
  width: 370px;
  max-width: 32vw;
  pointer-events: none;
}

.proposal-leaf {
  position: absolute;
  right: -22px;
  bottom: -46px;
  z-index: 3;
  width: 168px;
  pointer-events: none;
  filter: drop-shadow(0 18px 18px rgba(20, 74, 22, 0.18));
}

.contact-form-section {
  background: #da1a32;
  padding: 80px 0 94px;
  color: var(--color-white);
}

.contact-form-bundle {
  display: block;
  width: min(300px, 88%);
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.22));
  animation: bundleLevitate 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes bundleLevitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form-bundle {
    animation: none;
  }
}

@media (max-width: 640px) {
  .contact-form-bundle {
    width: min(240px, 78%);
    margin-bottom: 24px;
  }
}

.contact-form-header {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto 70px;
  text-align: center;
}

.contact-form-header h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.contact-form-header p {
  margin: 22px auto 0;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-form-card {
  width: min(720px, calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 64px 70px 72px;
  border: 0;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(68, 2, 15, 0.18);
}

.form-field {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.form-field label,
.form-consent span {
  color: #44020f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #44020f;
  border-radius: 8px;
  background: var(--color-white);
  color: #44020f;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 56px;
  padding: 0 22px;
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: rgba(68, 2, 15, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 249, 0.98));
  box-shadow: 0 9px 20px rgba(68, 2, 15, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.form-field select:hover {
  box-shadow: 0 12px 26px rgba(68, 2, 15, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-field select option {
  color: #44020f;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 18px 22px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #c8b8a9;
  opacity: 0.4;
}

.form-field-select {
  position: relative;
}

.form-field-select.is-enhanced select {
  position: absolute;
  inset: auto 0 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field-select select {
  padding-right: 58px;
}

.form-field-select:not(.is-enhanced)::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 21px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #da1a32;
  border-bottom: 3px solid #da1a32;
  transform: rotate(45deg);
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 2;
}

.custom-select.is-open {
  z-index: 80;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px 0 22px;
  border: 1px solid #44020f;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 249, 0.99));
  color: rgba(68, 2, 15, 0.42);
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(68, 2, 15, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.custom-select-trigger::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-right: 3px solid #da1a32;
  border-bottom: 3px solid #da1a32;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(4px) rotate(225deg);
}

.custom-select-trigger:hover,
.custom-select-trigger:focus {
  border-color: #da1a32;
  box-shadow: 0 14px 30px rgba(68, 2, 15, 0.095), 0 0 0 3px rgba(218, 26, 50, 0.1);
  outline: 0;
}

.custom-select-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(68, 2, 15, 0.18);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(68, 2, 15, 0.18);
  list-style: none;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.custom-select.is-open .custom-select-options {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.custom-select-option {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 7px;
  color: #44020f;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option.is-selected {
  background: #f7ddd8;
  color: #da1a32;
  outline: 0;
}

.custom-select-option.is-selected {
  font-weight: 700;
}

.form-field.is-invalid .custom-select-trigger {
  border-color: #da1a32;
  background: #fff8f8;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #da1a32;
  box-shadow: 0 0 0 3px rgba(218, 26, 50, 0.14);
  outline: 0;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: #da1a32;
  background: #fff8f8;
}

.field-error {
  display: none;
  color: #da1a32;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.form-field.is-invalid .field-error,
.form-consent-error.is-visible {
  display: block;
}

/* Tasting checkbox — predškrtáva sa cez tasting CTA alebo URL ?balicek=1 */
.form-tasting-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px 0 28px;
  padding: 12px 16px;
  border: 1px solid rgba(68, 2, 15, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #44020f;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.form-tasting-check:hover {
  border-color: rgba(218, 26, 50, 0.32);
}

.form-tasting-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: #da1a32;
  cursor: pointer;
}

.form-tasting-check:has(input:checked) {
  background: #fff5f6;
  border-color: rgba(218, 26, 50, 0.42);
}

.form-tasting-check span {
  line-height: 1.35;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 0;
}

.form-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: #da1a32;
}

.form-consent span {
  font-weight: 400;
}

.form-consent.is-invalid span {
  color: #da1a32;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(416px, 100%);
  min-height: 68px;
  margin: 56px auto 0;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(108deg, #44020f 0%, #591724 100%);
  color: var(--color-white);
  font: inherit;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  box-shadow: 0 18px 34px rgba(68, 2, 15, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 40px rgba(68, 2, 15, 0.3);
}

.site-footer {
  background: #44020f;
  color: var(--color-white);
}

.site-footer-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 16px;
  line-height: 1.4;
}

.site-footer-inner a {
  position: relative;
}

.site-footer-inner a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 1px;
  height: 22px;
  background: #da1a32;
  transform: translateY(-50%);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroPersonWiggle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  35% {
    transform: translate3d(0, -4.4px, 0) rotate(-0.5deg);
  }

  70% {
    transform: translate3d(0, 3.3px, 0) rotate(0.4deg);
  }
}

@keyframes heroElementLeftWiggle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  42% {
    transform: translate3d(4px, -5px, 0) rotate(-1.2deg);
  }

  72% {
    transform: translate3d(-2px, 3px, 0) rotate(0.8deg);
  }
}

@keyframes heroElementRightWiggle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  38% {
    transform: translate3d(-4px, 4px, 0) rotate(1.1deg);
  }

  74% {
    transform: translate3d(3px, -3px, 0) rotate(-0.75deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    transition: none;
  }

  .faq-panel,
  .faq-arrow::before {
    transition: none;
  }

  .logo-track {
    animation: none;
  }

  .hero-person-stage,
  .hero-element {
    animation: none;
  }
}

/* ============================================
   HERO — UNIFIED DESKTOP SYSTEM (>=981px)
   Jeden proporčný systém založený na vw/clamp.
   Žiadne height-based media queries — hero
   vyzerá konzistentne na všetkých laptopoch
   a monitoroch 1024–1920px+.
   ============================================ */

@media (min-width: 981px) {
  .hero-content {
    grid-template-columns: minmax(320px, clamp(340px, 28vw, 415px)) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 32px);
    min-height: clamp(440px, 36vw, 580px);
    margin-top: clamp(28px, 3vw, 48px);
    align-items: end;
  }

  /* Hero actions block — posun vyššie, CTA button ako primary focal point */
  .hero-actions {
    transform: translateY(-25px);
  }

  .hero-actions .benefits {
    gap: 16px;
    margin-bottom: 34px;
  }

  .hero-actions .primary-button {
    width: clamp(280px, calc(100% - 32px), 420px);
    min-height: 66px;
    letter-spacing: 0.04em;
  }

  .hero-actions .hero-bonus {
    width: clamp(280px, calc(100% - 32px), 420px);
    max-width: none;
    margin-top: 26px;
  }

  .hero-actions .heureka-rating {
    max-width: clamp(280px, calc(100% - 32px), 420px);
    margin-top: 40px;
  }

  /* Trust badge — sekundárny, menší aby nesúťažil s CTA */
  .hero-actions .rating-badge {
    width: min(240px, 100%);
    opacity: 0.92;
  }

  .hero-visual {
    align-self: stretch;
    min-height: clamp(440px, 36vw, 580px);
    transform: translateY(-22px);
  }

  .hero-person-group {
    right: clamp(60px, 9vw, 180px);
    bottom: 0;
    width: clamp(360px, 32vw, 510px);
    transform: none;
  }

  .hero-ring {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
  }

  .label-card {
    right: -26%;
    bottom: 35%;
    width: 60%;
  }

  .hero-element-left {
    left: clamp(8px, 1.5vw, 28px);
    top: clamp(60px, 8vw, 120px);
    width: clamp(120px, 12vw, 170px);
  }

  .hero-element-right {
    right: clamp(40px, 6vw, 110px);
    top: clamp(20px, 3vw, 56px);
    width: clamp(110px, 11vw, 158px);
  }

  .problem-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 565px);
    gap: clamp(48px, 6vw, 96px);
  }

  .problem-copy h2 {
    font-size: clamp(36px, 3.2vw, 42px);
    line-height: 1.08;
  }

  .problem-list {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.4;
  }

  /* Tasting section — text column širší, karty zmenšené o ~10% */
  .tasting-panel {
    grid-template-columns: minmax(440px, 580px) minmax(0, 1fr);
    gap: 48px;
  }

  .tasting-copy h2 {
    font-size: 42px;
    line-height: 1.14;
  }

  .product-card {
    min-height: 270px;
    padding: 22px 16px;
  }

  .product-card img {
    width: min(170px, 72%);
    margin-bottom: 18px;
  }

  .bestseller-label {
    width: 120px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .care-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .care-card p {
    font-size: 18px;
    line-height: 26px;
  }

  .tasting-panel {
    width: min(1160px, calc(100% - var(--desktop-gutter)));
  }

  .package-card {
    min-height: 236px;
  }

  .why-media {
    width: 460px;
    justify-self: center;
  }

  .contact-note-inner {
    grid-template-columns: minmax(320px, 390px) minmax(0, 520px);
    gap: 52px;
  }

  .contact-note-inner p {
    font-size: 24px;
    line-height: 32px;
  }

  .faq-inner {
    width: min(820px, calc(100% - var(--desktop-gutter)));
  }
}

/* Hero height-based queries odstránené —
   nahradené jednotným proporčným systémom vyššie. */

@media (max-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .header-cta {
    min-width: 0;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    margin-top: 42px;
  }

  .hero-actions {
    order: 1;
    width: min(500px, 100%);
    margin: 0 auto;
    justify-self: center;
    padding: 0;
  }

  .benefits {
    font-size: 17px;
  }

  .hero-visual {
    order: 2;
    min-height: 560px;
    transform: none;
  }

  .hero-ring {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    transform: none;
  }

  .hero-person-group {
    right: 50%;
    width: min(390px, 72vw);
    bottom: 0;
    transform: translateX(50%);
  }

  .label-card {
    right: -8%;
    bottom: 34%;
    width: 66%;
  }

  .hero-element-left {
    left: calc(50% - 268px);
    top: 72px;
    width: 150px;
  }

  .hero-element-right {
    right: calc(50% - 264px);
    top: 58px;
    width: 122px;
  }

  .problem-inner {
    padding: 78px 0 82px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .problem-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .problem-media {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .care-inner {
    padding: 78px 0 84px;
  }

  .care-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .care-card {
    min-height: 0;
  }

  .tasting-section {
    padding: 82px 0 88px;
  }

  .tasting-panel {
    padding: 104px 42px 52px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Mobile reorder: nadpis → text 1 → produkty → text 2 → CTA.
     display: contents flatten-uje .tasting-copy children priamo do flex panelu,
     order property určí poradie. */
  .tasting-copy { display: contents; }

  .tasting-copy h2                 { order: 1; }
  .tasting-copy > p:nth-of-type(1) { order: 2; }
  .tasting-products                { order: 3; }
  .tasting-copy > p:nth-of-type(2) { order: 4; margin-top: 22px; }
  .tasting-button                  { order: 5; }

  /* Nadpis + texty: full width, žiadne auto-centering
     (zarovnané k ľavému okraju panelu) */
  .tasting-copy h2,
  .tasting-copy > p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Posunúť nadpis nižšie — breathing space pod Heureka badge */
  .tasting-copy h2 {
    margin-top: 8px;
  }

  /* Pôvodná Heureka v .tasting-copy → skrytá na mobile.
     Zobrazí sa .tasting-heureka-float v top-right rohu panela. */
  .tasting-copy > picture {
    display: none;
  }

  .tasting-heureka-float {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 69px;
    height: 69px;
    margin: 0;
    z-index: 4;
  }

  .tasting-heureka-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .tasting-products {
    width: min(620px, 100%);
    margin: 0 auto 12px;
  }

  .packages-inner {
    padding: 82px 0 88px;
  }

  .package-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(620px, 100%);
  }

  .package-card {
    padding: 26px 26px 28px;
  }

  .why-inner {
    padding: 82px 0 88px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .why-copy {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .why-media {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .trust-inner {
    padding: 82px 0 86px;
  }

  .reviews-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 16px;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .contact-note-inner {
    width: min(100% - 48px, 900px);
    padding: 66px 0;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
    gap: 36px;
  }

  .contact-note-inner img {
    border-radius: 12px;
  }

  .contact-note-inner p {
    font-size: 22px;
    line-height: 30px;
  }

  .faq-inner {
    width: min(100% - 48px, 720px);
    padding: 58px 0 64px;
  }

  .faq-inner h2 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.16;
  }

  .faq-question {
    padding: 16px 8px;
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    gap: 14px;
  }

  .faq-question:hover {
    padding-left: 12px;
  }

  .faq-question::before {
    font-size: 26px;
  }

  .faq-question span:first-child {
    font-size: 16px;
    line-height: 1.42;
  }

  .faq-arrow {
    width: 22px;
    height: 22px;
  }

  .faq-arrow::before {
    width: 8px;
    height: 8px;
    border-width: 2.2px;
  }

  .faq-answer {
    padding: 0 32px 0 70px;
    font-size: 14px;
    line-height: 1.55;
  }

  .faq-question[aria-expanded="true"] + .faq-panel .faq-answer {
    padding-bottom: 18px;
  }

  .faq-decor {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: calc(100% - 48px);
    max-width: var(--container);
    min-height: 72px;
    justify-content: center;
    gap: 0;
  }

  .brand {
    width: 216px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 48px);
    max-width: var(--container);
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .hero h1 {
    width: 100%;
    max-width: 308px;
    font-size: clamp(29px, 8.6vw, 38px);
    line-height: 1.08;
  }

  .hero-copy p {
    display: none;
  }

  .hero-content {
    margin-top: 18px;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-actions {
    order: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: min(328px, calc(100vw - 48px));
    margin-inline: auto;
    min-width: 0;
    transform: none;
  }

  .hero-visual {
    order: 1;
    min-height: 380px;
    margin-top: 0;
    min-width: 0;
  }

  .hero-person-group {
    width: min(326px, 82vw);
    bottom: 14px;
  }

  .hero-ring {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
  }

  .label-card {
    right: -4%;
    bottom: 33%;
    width: 56%;
  }

  .hero-element-left {
    display: none;
  }

  .hero-element-right {
    display: none;
  }

  .benefits {
    order: 3;
    width: clamp(280px, calc(100% - 32px), 420px);
    gap: 13px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.26;
  }

  .benefits li {
    min-height: 24px;
    padding-left: 34px;
  }

  .benefits li::before {
    width: 24px;
    height: 24px;
  }

  .primary-button {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-actions .primary-button {
    order: 1;
    width: clamp(280px, calc(100% - 32px), 420px);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .hero-bonus {
    order: 1;
    width: clamp(280px, calc(100% - 32px), 420px);
    max-width: none;
    margin-inline: auto;
    margin-top: 18px;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-bonus .bonus-gift {
    font-size: 13px;
  }

  .heureka-rating {
    order: 4;
    width: clamp(280px, calc(100% - 32px), 420px);
    max-width: none;
    margin-top: 26px;
    margin-inline: auto;
    gap: 10px;
  }

  .heureka-badge-img {
    width: 44px;
    height: 44px;
  }

  .heureka-stars,
  .heureka-score,
  .heureka-reviews {
    font-size: 12px;
  }

  .heureka-sep {
    font-size: 11px;
  }

  .heureka-text {
    font-size: 11px;
  }

  .hero-description-mobile {
    order: 2;
    display: block;
    width: clamp(280px, calc(100% - 32px), 420px);
    margin: 24px auto 28px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #4d1a27;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    text-align: left;
    text-wrap: pretty;
  }

  .rating-badge,
  .hero-actions .rating-badge {
    order: 4;
    width: min(284px, 100%);
    margin: 26px auto 0;
  }

  .problem-inner {
    width: min(100% - 48px, var(--container));
    padding: 58px 0 62px;
    gap: 34px;
  }

  .problem-copy h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .problem-list {
    gap: 0;
    margin: 28px 0 30px;
    font-size: 16px;
    line-height: 1.5;
  }

  .problem-list li {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .problem-list .list-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
  }

  .problem-button {
    width: 100%;
  }

  .problem-media {
    border-radius: 8px;
  }

  .problem-bubble {
    top: 38%;
    left: 26%;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 18px;
  }

  .problem-bubble::after {
    bottom: -6px;
    width: 14px;
    height: 12px;
  }

  .care-inner {
    width: min(100% - 48px, var(--container));
    padding: 56px 0 58px;
  }

  .care-inner h2 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 34px;
    text-align: left;
  }

  .care-cards {
    gap: 14px;
  }

  .care-card {
    padding: 24px 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(86, 0, 20, 0.07);
  }

  .care-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .care-card img {
    width: 28px;
    height: 28px;
    margin: 0;
  }

  .care-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 28px;
  }

  .care-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .tasting-section {
    padding: 58px 0 62px;
  }

  .tasting-panel {
    width: min(100% - 48px, var(--container));
    padding: 38px 30px 30px;
    gap: 0;
    border-radius: 10px;
  }

  .tasting-copy h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 34px;
  }

  .tasting-copy p {
    font-size: 17px;
    line-height: 26px;
  }

  .tasting-list {
    gap: 12px;
    margin: 24px 0 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .tasting-list li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
  }

  .tasting-list img {
    width: 26px;
    height: 26px;
  }

  .tasting-heureka {
    width: 64px;
  }

  /* Floating Heureka — tighter na úzkych telefónoch + menšia */
  .tasting-heureka-float {
    top: 14px;
    right: 14px;
    width: 57px;
    height: 57px;
  }

  /* Panel padding-top — Heureka 52 + top 14 = 66, plus 20px breathing = 86 */
  .tasting-panel {
    padding-top: 86px;
  }

  .tasting-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .product-card {
    min-width: 0;
    min-height: 186px;
    padding: 12px 8px 12px;
    border-radius: 10px;
  }

  .product-card img {
    width: min(112px, 86%);
    max-height: 136px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .product-card p {
    min-height: 32px;
    font-size: 13px;
    line-height: 17px;
  }

  .bestseller-label {
    width: 81px;
  }

  .tasting-button {
    margin: 20px 0 18px;
    min-height: 52px;
    font-size: 15px;
  }

  .packages-inner {
    width: min(100% - 48px, var(--container));
    padding: 58px 0 62px;
  }

  .packages-header {
    margin-bottom: 32px;
    text-align: left;
  }

  .packages-header h2 {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 34px;
  }

  .packages-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .package-cards {
    gap: 14px;
  }

  .package-card {
    padding: 22px 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(86, 0, 20, 0.08);
  }

  .package-card-top {
    margin-bottom: 18px;
  }

  .package-name {
    width: 112px;
  }

  .package-tier {
    top: 22px;
    height: 29px;
  }

  .package-card ul {
    gap: 12px;
  }

  .package-card li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .package-card li img {
    width: 36px;
    height: 36px;
    padding: 7px;
    margin: 0;
  }

  .packages-button {
    margin-top: 28px;
    min-height: 52px;
    font-size: 15px;
  }

  .why-inner {
    width: min(100% - 48px, var(--container));
    padding: 58px 0 62px;
    gap: 28px;
  }

  .why-copy h2 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 34px;
  }

  .why-list {
    gap: 0;
  }

  .why-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .why-list .list-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .why-media {
    border-radius: 10px;
  }

  .trust-inner {
    width: min(100% - 48px, var(--container));
    padding: 58px 0 62px;
  }

  .trust-inner h2 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 34px;
    text-align: left;
  }

  .reviews-shell {
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 16px 4px;
    align-items: center;
  }

  .reviews-arrow {
    display: inline-flex;
    width: 38px;
    height: 28px;
    border-radius: 0;
    color: var(--color-burgundy);
    font-size: 30px;
    line-height: 1;
  }

  .reviews-prev {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .reviews-next {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .reviews-viewport {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 250px;
    padding: 24px 20px;
    border-radius: 10px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .review-card strong {
    font-size: 12px;
    line-height: 18px;
  }

  .logo-marquee {
    margin-top: 34px;
  }

  .logo-set {
    gap: 34px;
    padding-right: 34px;
  }

  .logo-set img {
    width: 92px;
    height: 46px;
  }

  .trust-stats {
    width: min(326px, 100%);
    margin-top: 28px;
    padding: 15px 20px;
    display: grid;
    justify-content: center;
    gap: 10px;
  }

  .trust-stat {
    gap: 10px;
    justify-content: flex-start;
  }

  .trust-stat strong {
    font-size: 32px;
  }

  .trust-stat span {
    font-size: 16px;
  }

  .contact-note-inner {
    width: min(100% - 48px, 680px);
    padding: 52px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-note-inner p {
    font-size: 20px;
    line-height: 28px;
  }

  .faq-inner {
    width: min(100% - 48px, 720px);
    padding: 54px 0 60px;
  }

  .faq-inner h2 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.18;
    text-align: left;
  }

  .faq-list {
    border-radius: 0;
  }

  .faq-question {
    padding: 14px 4px;
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .faq-question:hover {
    padding-left: 8px;
  }

  .faq-question::before {
    font-size: 22px;
  }

  .faq-question span:first-child {
    font-size: 16px;
    line-height: 1.42;
  }

  .faq-arrow {
    width: 20px;
    height: 20px;
  }

  .faq-arrow::before {
    width: 7px;
    height: 7px;
    border-width: 2px;
  }

  .faq-answer {
    padding: 0 12px 0 54px;
    font-size: 16px;
    line-height: 1.55;
  }

  .faq-question[aria-expanded="true"] + .faq-panel .faq-answer {
    padding-bottom: 16px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 198px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-copy p {
    display: none;
  }

  .hero-visual {
    min-height: 372px;
    margin-top: 0;
  }

  .hero-person-group {
    width: min(314px, 82vw);
    bottom: 14px;
  }

  .hero-ring {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
  }

  .label-card {
    right: -4%;
    bottom: 33%;
    width: 56%;
  }

  .hero-element-left {
    display: none;
  }

  .hero-element-right {
    display: none;
  }

  .problem-inner,
  .care-inner,
  .tasting-panel,
  .packages-inner,
  .why-inner,
  .trust-inner {
    width: min(100% - 44px, var(--container));
  }

  .problem-copy h2,
  .care-inner h2,
  .tasting-copy h2,
  .packages-header h2,
  .why-copy h2,
  .trust-inner h2 {
    font-size: 25px;
    line-height: 31px;
  }

  .problem-list,
  .tasting-list {
    font-size: 16px;
    line-height: 24px;
  }

  .care-card {
    padding: 22px 18px 20px;
  }

  .care-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .care-card img {
    width: 26px;
    height: 26px;
  }

  .care-card h3 {
    font-size: 20px;
    line-height: 27px;
  }

  .care-card p {
    font-size: 14px;
    line-height: 21px;
  }

  .tasting-panel {
    padding: 82px 24px 26px;
  }

  /* Heureka float — tighter na úzkych telefónoch (~420px) */
  .tasting-heureka-float {
    top: 12px;
    right: 12px;
    width: 53px;
    height: 53px;
  }

  .tasting-products {
    gap: 10px;
  }

  .product-card {
    min-height: 172px;
    padding: 10px 6px 10px;
  }

  .product-card img {
    width: min(98px, 88%);
    max-height: 122px;
  }

  .bestseller-label {
    width: 71px;
  }

  .package-card {
    padding: 20px 16px 18px;
  }

  .package-name {
    width: 104px;
  }

  .package-tier {
    height: 27px;
  }
}

@media (max-width: 360px) {
  .problem-inner,
  .care-inner,
  .tasting-panel,
  .packages-inner,
  .why-inner,
  .trust-inner,
  .faq-inner {
    width: min(100% - 40px, var(--container));
  }

  .problem-copy h2,
  .care-inner h2,
  .tasting-copy h2,
  .packages-header h2,
  .why-copy h2,
  .trust-inner h2,
  .faq-inner h2 {
    font-size: 23px;
    line-height: 29px;
  }

  .problem-list,
  .tasting-list,
  .package-card li,
  .why-list li,
  .review-card p {
    font-size: 15px;
    line-height: 22px;
  }

  .care-card h3 {
    font-size: 19px;
    line-height: 26px;
  }

  .care-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .faq-question span:first-child {
    font-size: 17px;
    line-height: 24px;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 20px;
  }

  .tasting-products {
    gap: 8px;
  }

  .product-card {
    min-height: 162px;
  }

  .product-card img {
    width: min(88px, 86%);
    max-height: 112px;
  }

  .tasting-panel {
    padding: 74px 20px 24px;
  }

  /* Heureka float — najmenšia variant (≤360px) */
  .tasting-heureka-float {
    top: 10px;
    right: 10px;
    width: 49px;
    height: 49px;
  }

  .package-name {
    width: 96px;
  }

  .package-tier {
    height: 25px;
  }

  .logo-set {
    gap: 26px;
    padding-right: 26px;
  }

  .logo-set img {
    width: 82px;
    height: 42px;
  }

  .trust-stats {
    padding: 14px 16px;
    gap: 14px 22px;
  }

  .trust-stat strong {
    font-size: 30px;
  }

  .trust-stat span {
    font-size: 15px;
  }

  .contact-note-inner {
    width: min(100% - 40px, 680px);
    padding: 44px 0;
    gap: 20px;
  }

  .contact-note-inner p {
    font-size: 18px;
    line-height: 26px;
  }

  .faq-inner {
    width: min(100% - 40px, 760px);
    padding: 52px 0 58px;
  }

  .faq-inner h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .faq-question {
    padding: 19px 14px 18px;
    grid-template-columns: minmax(0, 1fr) 27px;
    gap: 12px;
  }

  .faq-question span:first-child {
    font-size: 18px;
    line-height: 25px;
  }

  .faq-arrow {
    width: 27px;
    height: 27px;
  }

  .faq-answer {
    padding-inline: 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .faq-question[aria-expanded="true"] + .faq-panel .faq-answer {
    padding-bottom: 18px;
  }
}

@media (max-width: 1180px) {
  .proposal-card {
    min-height: 456px;
  }

  .proposal-copy {
    width: min(560px, 52%);
    padding: 54px 0 0 44px;
  }

  .proposal-copy h2 {
    font-size: 40px;
  }

  .proposal-copy p {
    font-size: 20px;
  }

  .proposal-checks {
    left: 44px;
    right: 36px;
    gap: 16px;
    font-size: 15px;
  }

  .proposal-person {
    right: 150px;
    width: 342px;
  }

  .proposal-signature {
    right: 48px;
  }
}

@media (max-width: 980px) {
  .proposal-section {
    padding: 64px 0 72px;
  }

  .proposal-inner {
    width: min(680px, calc(100vw - 48px));
  }

  .proposal-card {
    overflow: hidden;
    min-height: auto;
    padding: 42px 28px 0;
  }

  .proposal-copy {
    width: 100%;
    padding: 0;
  }

  .proposal-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .proposal-copy p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.42;
  }

  .proposal-button {
    width: 100%;
    min-height: 56px;
    margin-top: 30px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.22;
    white-space: normal;
  }

  .proposal-checks {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    gap: 12px;
    margin-top: 26px;
    font-size: 15px;
  }

  .proposal-checks li {
    white-space: normal;
  }

  .proposal-signature {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 28px;
  }

  .proposal-person {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(330px, 82vw);
    max-width: none;
    margin: 10px auto 0;
  }

  .proposal-leaf {
    right: -28px;
    bottom: -26px;
    width: 130px;
  }

  .contact-form-section {
    padding: 66px 0 78px;
  }

  .contact-form-header {
    width: min(680px, calc(100vw - 40px));
    margin-bottom: 36px;
  }

  .contact-form-header h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .contact-form-header p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-form-card {
    width: min(680px, calc(100vw - 40px));
    padding: 34px 37px 42px;
    border-radius: 12px;
  }

  .form-field {
    gap: 11px;
    margin-bottom: 24px;
  }

  .form-field input,
  .form-field select {
    height: 52px;
    padding-inline: 16px;
  }

  .form-field textarea {
    min-height: 122px;
    padding: 15px 16px;
  }

  .form-consent {
    align-items: flex-start;
    margin-top: 8px;
  }

  .form-field-select select {
    padding-right: 48px;
  }

  .form-field-select:not(.is-enhanced)::after {
    right: 18px;
    bottom: 19px;
    width: 12px;
    height: 12px;
  }

  .custom-select-trigger {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 15px;
  }

  .custom-select-option {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 15px;
  }

  .contact-submit {
    min-height: 58px;
    margin-top: 34px;
    padding: 0 18px;
    font-size: 15px;
  }

  .site-footer-inner {
    width: min(680px, calc(100vw - 40px));
    min-height: 132px;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 30px 0;
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .proposal-inner {
    width: min(680px, calc(100vw - 40px));
  }

  .proposal-card {
    padding: 34px 22px 0;
    border-radius: 10px;
  }

  .proposal-copy h2 {
    font-size: 30px;
  }

  .proposal-copy p {
    font-size: 16px;
  }

  .proposal-checks {
    font-size: 14px;
  }

  .proposal-leaf {
    width: 112px;
  }

  .contact-form-header h2 {
    font-size: 30px;
  }

  .contact-form-card {
    width: min(680px, calc(100vw - 32px));
    padding: 30px 33px 38px;
  }

  .form-field label,
  .form-consent span,
  .form-field input,
  .form-field textarea,
  .form-field select,
  .custom-select-trigger,
  .custom-select-option {
    font-size: 15px;
  }

  .site-footer-inner {
    width: min(680px, calc(100vw - 32px));
    display: grid;
    font-size: 14px;
  }

  .site-footer-inner a::before {
    display: none;
  }
}

/* =====================================================
   ĎAKOVNÁ STRÁNKA (dakujeme.html)
   ===================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thanks-body {
  background: linear-gradient(160deg, #fdeee9 0%, #f6d8cf 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 60px;
  width: 100%;
  box-sizing: border-box;
}

.thanks-card {
  width: 100%;
  max-width: 640px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 44px 44px 36px;
  box-shadow:
    0 1px 2px rgba(86, 0, 20, 0.04),
    0 8px 28px rgba(86, 0, 20, 0.08),
    0 24px 64px rgba(86, 0, 20, 0.06);
  box-sizing: border-box;
}

/* Hero — check + title + SLA */
.thanks-hero {
  text-align: center;
  margin-bottom: 32px;
}

.thanks-check {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #0b8a3d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 138, 61, 0.28);
}

.thanks-check svg {
  width: 32px;
  height: 32px;
}

.thanks-title {
  margin: 0 0 12px;
  color: var(--color-burgundy);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.thanks-sla {
  margin: 0;
  max-width: 460px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}

.thanks-sla strong {
  color: var(--color-burgundy);
}

/* Block titles */
.thanks-block-title {
  margin: 0 0 18px;
  color: var(--color-burgundy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Steps */
.thanks-steps {
  margin: 0 0 28px;
  padding: 26px 24px 22px;
  background: #fff5f1;
  border-radius: 14px;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.step-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(231, 25, 58, 0.22);
}

.step-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  padding-top: 3px;
}

.step-text strong {
  color: var(--color-burgundy);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* Karta manažérky */
.thanks-manager {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(86, 0, 20, 0.08);
  border-radius: 14px;
  margin: 0 0 24px;
}

.manager-avatar {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(86, 0, 20, 0.12);
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manager-meta {
  min-width: 0;
}

.manager-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 3px;
}

.manager-position {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.manager-contact {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text);
}

.manager-contact a {
  color: var(--color-red);
  text-decoration: none;
}

.manager-contact a:hover {
  text-decoration: underline;
}

.manager-tip {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-muted);
}

.thanks-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 22px;
}

.thanks-trust strong {
  color: var(--color-burgundy);
  font-weight: 700;
}

.thanks-trust-sep {
  opacity: 0.5;
}

.thanks-urgent {
  text-align: center;
  padding-top: 20px;
  border-top: 1px dashed rgba(86, 0, 20, 0.14);
  font-size: 13.5px;
  color: var(--color-text);
  line-height: 1.55;
}

.thanks-urgent-text {
  display: inline;
}

.thanks-urgent-phone {
  display: inline;
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin: 0 4px;
}

.thanks-urgent-phone:hover {
  text-decoration: underline;
}

.thanks-urgent-hours {
  color: var(--color-muted);
  font-size: 12.5px;
}

/* Thanks page mobile */
@media (max-width: 640px) {
  .thanks-main {
    padding: 24px 16px 40px;
  }
  .thanks-card {
    padding: 30px 22px 26px;
    border-radius: 14px;
  }
  .thanks-check {
    width: 54px;
    height: 54px;
  }
  .thanks-check svg {
    width: 28px;
    height: 28px;
  }
  .thanks-title {
    font-size: 22px;
  }
  .thanks-sla {
    font-size: 14.5px;
  }
  .thanks-block-title {
    font-size: 13.5px;
  }
  .thanks-steps {
    padding: 22px 18px 18px;
    margin-bottom: 22px;
  }
  .step-text {
    font-size: 14px;
  }
  .thanks-manager {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 16px;
  }
  .manager-avatar {
    width: 64px;
    height: 64px;
  }
  .manager-name {
    font-size: 15.5px;
  }
  .manager-position {
    font-size: 12px;
  }
  .manager-contact {
    font-size: 12.5px;
  }
  .thanks-trust {
    font-size: 12.5px;
    gap: 8px 14px;
  }
  .thanks-urgent {
    font-size: 13px;
  }
}

/* =====================================================
   FORM SUBMISSION — Cloudflare Turnstile, error feedback,
   loading state, noscript fallback, honeypot (Krok 4)
   ===================================================== */

.form-noscript-warning {
  width: min(720px, calc(100% - var(--desktop-gutter)));
  margin: 0 auto 20px;
  padding: 14px 18px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 12px;
  color: #78350f;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  box-sizing: border-box;
}

.form-noscript-warning strong {
  color: #451a03;
  font-weight: 700;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 20px 0 6px;
  min-height: 65px;
}

.form-submission-error {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff5f5;
  border: 1px solid #f5c2c0;
  border-radius: 8px;
  color: #9d1f1c;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.contact-submit.is-loading {
  opacity: 0.78;
  cursor: progress;
  pointer-events: none;
}

.contact-submit.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-submit-spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes contact-submit-spin {
  to { transform: rotate(360deg); }
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Bug fix — hidden attribute musí override display: grid na step-item */
.step-item[hidden] {
  display: none;
}

/* ========================================================================
   Product profile modal — info ikona, pulse, lightbox
   ======================================================================== */

/* Make product-card clickable target (cursor + focus ring) */
.tasting-products .product-card {
  cursor: pointer;
  outline: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tasting-products .product-card:hover,
.tasting-products .product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(86, 0, 20, 0.10);
}

.tasting-products .product-card:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* Info badge (28×28 kruh + pulse) — mirror layout.
   Bestseller pečiatka je v strede gridu — preto:
   - Ľavé karty (product-one, product-three): badge v top-LEFT rohu (ďaleko od centra)
   - Pravé karty (product-two, product-four): badge v top-RIGHT rohu (ďaleko od centra) */
.product-info-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}

.product-two .product-info-badge,
.product-four .product-info-badge {
  left: auto;
  right: 10px;
}

.product-info-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 4px 10px rgba(225, 26, 69, 0.35));
  z-index: 2;
}

/* Pulse — 5s cycle (1s pulse + 4s pause = 1 pulse every 5s) */
.product-info-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #e11a45;
  opacity: 0;
  animation: product-info-pulse 5s ease-out infinite;
  z-index: 1;
}

@keyframes product-info-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  20%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .product-info-pulse {
    animation: none;
  }
  .profile-modal-content {
    animation: none;
  }
}

/* ========================================================================
   Modal — lightbox s profile obrázkom + CTA
   ======================================================================== */

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 4, 8, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: profile-backdrop-fade 220ms ease-out;
}

@keyframes profile-backdrop-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.profile-modal-content {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  animation: profile-modal-enter 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes profile-modal-enter {
  from { opacity: 0; transform: scale(0.94) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.profile-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: var(--color-burgundy, #560014);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  z-index: 4;
}

.profile-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.profile-modal-close:active {
  transform: scale(0.94);
}

.profile-modal-close:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.profile-modal-picture {
  display: block;
  width: 100%;
  margin: 4px 0 0;
}

.profile-modal-picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.profile-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 4px 0 4px;
}

.profile-modal-bonus {
  margin: 0;
  font-size: 14px;
  color: var(--color-text, #3D2A2C);
  line-height: 1.55;
}

.profile-modal-bonus strong {
  color: var(--color-red, #e11a45);
  font-weight: 700;
}

.profile-modal-cta {
  width: min(400px, 100%);
  margin: 0;
  background: var(--color-red);
  box-shadow: 0 14px 28px rgba(225, 26, 69, 0.28);
}

.profile-modal-cta:hover {
  background: #cf1331;
}

/* Body scroll lock helper */
body.profile-modal-open {
  overflow: hidden;
}

/* Mobile modal */
@media (max-width: 640px) {
  .profile-modal {
    padding: 14px;
  }

  .profile-modal-content {
    padding: 22px 18px 18px;
    border-radius: 12px;
    gap: 16px;
  }

  .profile-modal-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .profile-modal-bonus {
    font-size: 13px;
  }

  .profile-modal-cta {
    min-height: 52px;
    font-size: 13px;
  }

  /* Info badge mierne menší na úzkych telefónoch
     Mirror layout — left side cards = badge vľavo, right side = vpravo */
  .product-info-badge {
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
  }

  .product-two .product-info-badge,
  .product-four .product-info-badge {
    left: auto;
    right: 8px;
  }

  .product-info-icon {
    width: 24px;
    height: 24px;
  }
}

/* ---------- Video recenzie (sekcia Dôverujú nám firmy) ---------- */
/* Na desktope nadpis na jeden riadok (na mobile zalomenie cez <br> ostáva). */
@media (min-width: 901px) {
  #trust-title br {
    display: none;
  }
}

/* Mobil: nadpis má spodnú medzeru len 18px a je zarovnaný vľavo —
   preto žiadny záporný okraj a rovnaké zarovnanie ako nadpis. */
.video-reviews-lead {
  max-width: 100%;
  margin: 0 0 28px;
  text-align: left;
  color: var(--color-text);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
}

/* Desktop/tablet: nadpis je vycentrovaný a má 46px medzeru —
   záporný okraj podnadpis prisunie bližšie. */
@media (min-width: 641px) {
  .video-reviews-lead {
    margin: -30px auto 34px;
    text-align: center;
  }
}

.video-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  /* užšia mriežka — na plnú šírku kontajnera pôsobili karty príliš dominantne */
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.video-review {
  margin: 0;
}

/* Prirodzený pomer 4:5 priamo zo súboru — žiadny aspect-ratio ani
   object-fit, aby sa záber nikdy neorezal. */
.video-review-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 0;
  outline: 0;
  box-shadow: 0 18px 40px rgba(86, 0, 20, 0.12);
}

.video-review figcaption {
  padding: 14px 4px 0;
  text-align: center;
}

.video-review figcaption strong {
  display: block;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--color-burgundy);
  letter-spacing: 0.01em;
}

.video-review figcaption span {
  display: block;
  margin-top: 4px;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.5;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .video-reviews {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== FOOTER — kontakt + identifikácia firmy ===== */
.footer-top {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
  width: 190px;
  height: auto;
  display: block;
}
.footer-claim {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 30ch;
}
.footer-heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f08a9b;
}
.footer-col p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
}
.footer-person {
  font-weight: 600;
}
.footer-muted {
  color: rgba(255, 255, 255, 0.72);
}
.footer-hours {
  margin-bottom: 12px !important;
}
.footer-link {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease;
}
.footer-link:hover,
.footer-link:focus-visible {
  border-color: var(--color-white);
}
.site-footer .site-footer-inner {
  min-height: 0;
  padding: 22px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 44px 0 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    width: min(680px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 28px;
    text-align: center;
  }
  .footer-brand img {
    width: 160px;
    margin: 0 auto;
  }
  .footer-claim {
    max-width: none;
  }
  .site-footer .site-footer-inner {
    padding: 20px 0 24px;
  }
}
