:root {
  --bg: #7f2746; /* malinovy base (muted) */
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e8e0d0;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  --brand: #2e7d32;
  --brand-2: #f4c84a; /* wheat accent */
  --danger: #b91c1c;
  --radius: 18px;

  --wheat: #f6e7c2;
  --wheat-2: #ecd6a5;
  --on-bg: rgba(255, 255, 255, 0.92);
  --on-bg-muted: rgba(255, 255, 255, 0.78);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--on-bg);
  background: radial-gradient(
        900px 420px at 18% -10%,
        rgba(246, 231, 194, 0.22),
        transparent 55%
      )
      no-repeat,
    radial-gradient(
        900px 420px at 92% 10%,
        rgba(255, 255, 255, 0.12),
        transparent 55%
      )
      no-repeat,
    radial-gradient(
        1100px 600px at 50% 30%,
        rgba(255, 255, 255, 0.08),
        transparent 60%
      )
      no-repeat,
    var(--bg);
  line-height: 1.5;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #111827;
  color: white;
  padding: 10px 12px;
  border-radius: 999px;
  z-index: 9999;
}

.skip:focus {
  left: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.22);
  font-weight: 800;
  letter-spacing: 0.02em;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 231, 194, 0.62);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #1b5e20);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, #31a24c, var(--brand));
  color: white;
  box-shadow: 0 10px 18px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(46, 125, 50, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(232, 224, 208, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 34px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--on-bg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.lead {
  font-size: 16px;
  color: var(--on-bg);
  margin: 0 0 14px;
}

.bullets {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 16px;
  color: var(--on-bg);
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.fineprint {
  font-size: 12px;
  color: var(--on-bg-muted);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 224, 208, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-card figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 12px;
}

.trust-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 224, 208, 0.9);
}

.trust-title {
  font-weight: 800;
  font-size: 13px;
}

.trust-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.content {
  padding: 18px 0 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.article {
  padding: 18px 18px;
}

.article h2 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.article p {
  margin: 0 0 10px;
  color: rgba(31, 41, 55, 0.9);
}

.callout {
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(244, 200, 74, 0.16),
    rgba(244, 200, 74, 0.06)
  );
  border: 1px solid rgba(244, 200, 74, 0.38);
}

.callout-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.sidebar {
  padding: 16px 16px;
}

.sidebar h3 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.checklist {
  margin: 0 0 12px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(31, 41, 55, 0.9);
}

.mini-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.ingredients {
  padding: 18px 0 6px;
}

.ingredients-fancy {
  padding: 26px 0 14px;
}

.section-head-fancy {
  position: relative;
  padding: 18px 18px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
  overflow: hidden;
}

.section-head-fancy::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 220px;
  background: radial-gradient(
    closest-side,
    rgba(246, 231, 194, 0.35),
    transparent 68%
  );
  pointer-events: none;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.section-kicker-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
}

.section-head-fancy h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.section-head-fancy p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--on-bg);
}

.grid-ingredients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.ingredient {
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  border-radius: 0;
  border: 1px solid rgba(232, 224, 208, 0.9);
  background: rgba(255, 255, 255, 0.88);
  /* Wavy perimeter (sticker-like) */
  clip-path: polygon(
    6% 1%,
    12% 0%,
    18% 1.5%,
    24% 0.5%,
    30% 1.8%,
    36% 0.7%,
    42% 1.9%,
    48% 0.6%,
    54% 1.7%,
    60% 0.7%,
    66% 1.8%,
    72% 0.6%,
    78% 1.7%,
    84% 0.7%,
    90% 1.8%,
    95% 1%,
    99% 8%,
    98.5% 16%,
    99% 24%,
    98.2% 32%,
    99% 40%,
    98.3% 48%,
    99% 56%,
    98.2% 64%,
    99% 72%,
    98.4% 80%,
    99% 88%,
    95% 99%,
    88% 98.5%,
    80% 99%,
    72% 98.2%,
    64% 99%,
    56% 98.3%,
    48% 99%,
    40% 98.2%,
    32% 99%,
    24% 98.4%,
    16% 99%,
    8% 98.5%,
    1% 92%,
    1.6% 84%,
    1% 76%,
    1.8% 68%,
    1% 60%,
    1.7% 52%,
    1% 44%,
    1.8% 36%,
    1% 28%,
    1.6% 20%,
    1% 12%
  );
}

.ingredient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(246, 231, 194, 0.9),
    rgba(46, 125, 50, 0.28),
    rgba(255, 255, 255, 0.4)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}

.ingredient:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.ingredient-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.ingredient img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.ingredient:hover img {
  transform: scale(1.05);
}

.ingredient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 0%,
    rgba(17, 24, 39, 0.08) 45%,
    rgba(17, 24, 39, 0.22) 100%
  );
  pointer-events: none;
}

.ingredient-body {
  padding: 14px 14px 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(246, 231, 194, 0.85);
  border: 1px solid rgba(31, 41, 55, 0.12);
  color: rgba(31, 41, 55, 0.9);
}

.ingredient-body h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ingredient-body p {
  margin: 0 0 8px;
  color: rgba(31, 41, 55, 0.9);
}

.ingredient-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.form-section {
  padding: 22px 0 30px;
}

.offer-shell {
  /* Extra inner breathing room so clip-path won't cut content */
  padding: 0 26px 0 34px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    );
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.22);
  clip-path: polygon(2.2% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.offer-shell::before {
  content: "";
  position: absolute;
  inset: -140px -160px auto -160px;
  height: 260px;
  background: radial-gradient(
    closest-side,
    rgba(246, 231, 194, 0.32),
    transparent 70%
  );
  pointer-events: none;
}

.offer-shell::after {
  content: "";
  position: absolute;
  inset: auto -160px -200px -160px;
  height: 340px;
  background: radial-gradient(
    closest-side,
    rgba(46, 125, 50, 0.14),
    transparent 72%
  );
  pointer-events: none;
}

.offer-shell-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

.offer-shell-copy {
  padding: 18px 0;
}

.offer-shell-card {
  padding: 18px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.35)
  );
}

.offer-shell-copy h2 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.offer-shell-copy p {
  color: rgba(31, 41, 55, 0.9);
  margin: 0 0 10px;
}

.offer-shell-copy p:last-of-type {
  margin-bottom: 0;
}

.offer-shell-copy h2::after {
  content: "";
  display: block;
  height: 10px;
  width: 84px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(46, 125, 50, 0.85),
    rgba(246, 231, 194, 0.9)
  );
  opacity: 0.95;
}

.faq {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(232, 224, 208, 0.9);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.75);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 8px 0 0;
  color: rgba(31, 41, 55, 0.88);
}

form {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 6px;
}

input,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(232, 224, 208, 1);
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  font: inherit;
}

input:focus,
select:focus {
  border-color: rgba(46, 125, 50, 0.8);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: rgba(185, 28, 28, 0.8);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(31, 41, 55, 0.9);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-footnote {
  min-height: 18px;
  font-size: 13px;
  font-weight: 700;
}

.form-footnote.ok {
  color: var(--brand);
}

.form-footnote.err {
  color: var(--danger);
}

.micro {
  font-size: 12px;
  color: var(--muted);
}

.offer {
  display: grid;
  gap: 12px;
}

.offer-top {
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(246, 231, 194, 0.55),
    rgba(246, 231, 194, 0.22)
  );
  border: 1px solid rgba(31, 41, 55, 0.1);
}

.offer-top .pill {
  background: rgba(46, 125, 50, 0.16);
  border-color: rgba(46, 125, 50, 0.26);
}

.offer-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 20px;
}

.offer-sub {
  color: rgba(31, 41, 55, 0.84);
  font-size: 13px;
}

.offer-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.offer-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.offer-price {
  padding: 12px 12px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.12),
    rgba(246, 231, 194, 0.35)
  );
  border: 1px solid rgba(46, 125, 50, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-old {
  color: rgba(31, 41, 55, 0.6);
  text-decoration: line-through;
  font-weight: 800;
}

.price-now {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.price-note {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* Stronger CTA inside offer */
.offer .btn-primary {
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.28);
}

.offer .btn-primary:hover {
  box-shadow: 0 22px 44px rgba(46, 125, 50, 0.34);
}

.site-footer {
  background: radial-gradient(
        700px 240px at 20% 0%,
        rgba(127, 39, 70, 0.12),
        transparent 60%
      )
      no-repeat,
    radial-gradient(
        700px 240px at 85% 10%,
        rgba(46, 125, 50, 0.1),
        transparent 62%
      )
      no-repeat,
    linear-gradient(180deg, var(--wheat), var(--wheat-2));
  color: rgba(31, 41, 55, 0.92);
  padding: 26px 0 16px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.3fr;
  gap: 18px;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(127, 39, 70, 0.1);
  border: 1px solid rgba(31, 41, 55, 0.12);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
  color: rgba(31, 41, 55, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-bubble-link {
  color: rgba(31, 41, 55, 0.92);
  text-decoration: none;
}

a.footer-bubble.footer-bubble-link:hover,
.footer-bubble a.footer-bubble-link:hover {
  text-decoration: none;
}

a.footer-bubble.footer-bubble-link {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

a.footer-bubble.footer-bubble-link:hover {
  transform: translateY(-1px);
  background: rgba(127, 39, 70, 0.14);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
}

.footer-disclosures h3 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  font-size: 16px;
}

.footer-disclosures p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: rgba(31, 41, 55, 0.78);
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(31, 41, 55, 0.72);
}

.footer-disclaimer-bar {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(31, 41, 55, 0.7);
}

.footer-disclaimer-bar .disclaimer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.footer-disclaimer-bar .sep {
  opacity: 0.55;
}

.footer-disclaimer-bar strong {
  font-weight: 900;
}

.to-top {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.14);
  background: rgba(255, 255, 255, 0.35);
}

.to-top:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: min(440px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(232, 224, 208, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: none;
  color: var(--text);
}

.toast.show {
  display: block;
}

.toast strong {
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .grid-ingredients {
    grid-template-columns: 1fr;
  }
  .offer-shell-grid {
    grid-template-columns: 1fr;
  }
  .offer-shell-card {
    border-left: 0;
    border-top: 1px solid rgba(232, 224, 208, 0.9);
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .offer-shell {
    /* Reduce slant on very small screens */
    padding: 0 16px;
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  }
}

@media (min-width: 941px) {
  .grid-ingredients {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "p1 p1 p2 p2"
      ".  p3 p3 ."
      "p4 p4 p5 p5";
    gap: 18px;
  }

  .ingredient-pos-1 {
    grid-area: p1;
  }
  .ingredient-pos-2 {
    grid-area: p2;
  }
  .ingredient-pos-3 {
    grid-area: p3;
  }
  .ingredient-pos-4 {
    grid-area: p4;
  }
  .ingredient-pos-5 {
    grid-area: p5;
  }

  .ingredient-center {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
