:root {
  --bg: #f5f2e9;
  --bg-soft: #fbf9f3;
  --card: rgba(255,255,255,0.68);
  --card-solid: #fffdf8;
  --text: #26472f;
  --muted: #5c6d5d;
  --line: rgba(38, 71, 47, 0.12);
  --accent: #8cae67;
  --accent-strong: #2f5f35;
  --accent-light: #e4ecd7;
  --red: #e73b32;
  --shadow: 0 20px 60px rgba(34, 57, 35, 0.08);
  --radius: 28px;
  --radius-lg: 40px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(148,177,111,.08), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(148,177,111,.08), transparent 18%),
    linear-gradient(180deg, #f8f5ee 0%, #f3efe5 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(38,71,47,.18) 0.55px, transparent 0.55px);
  background-size: 16px 16px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.05));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

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

.page-shell { position: relative; overflow-x: clip; }
.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50% 50% 50% 50% / 42% 58% 42% 58%;
  background: radial-gradient(circle at 30% 30%, rgba(148,177,111,.24), rgba(148,177,111,0));
  filter: blur(10px);
  z-index: 0;
}
.page-shell::before { top: 220px; left: -120px; }
.page-shell::after { top: 1200px; right: -120px; }


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

.page-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.page-watermark-face {
  top: 760px;
  right: -120px;
  width: clamp(220px, 26vw, 440px);
  opacity: .07;
  filter: saturate(.78) brightness(1.02);
  transform: rotate(-7deg);
}

@media (max-width: 980px) {
  .page-watermark-face {
    top: 980px;
    right: -80px;
    width: clamp(180px, 34vw, 300px);
    opacity: .055;
  }
}

@media (max-width: 640px) {
  .page-watermark-face {
    top: 1120px;
    right: -60px;
    width: 220px;
    opacity: .05;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 245, 238, 0.76);
  border-bottom: 1px solid rgba(38, 71, 47, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: 0;
}

.brand-badge img {
  width: clamp(152px, 14vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero::before,
.section-heading h2::before {
  content: "";
  position: absolute;
  width: 148px;
  height: 42px;
  border: 2px solid rgba(148,177,111,.56);
  border-radius: 50%;
}

.hero::before {
  top: 92px;
  left: calc(50% - 560px);
  opacity: .35;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-copy h1,
.section-heading h2,
.grow-copy h2,
.career-box h2,
.site-footer h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 62ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-marks,
.hero-actions,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-marks {
  margin: 30px 0 18px;
  align-items: center;
}
.hero-actions { margin-top: 24px; }


.mark-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mark-badge-img img {
  display: block;
  width: 100%;
  height: auto;
}

.mark-badge-pesticide {
  width: clamp(84px, 9vw, 118px);
}

.mark-badge-poland {
  width: clamp(106px, 12vw, 156px);
}


.mark-badge-poland span {
  padding: 9px 12px 8px;
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  border-bottom: 0;
  font-size: 1rem;
  letter-spacing: .03em;
}

.mark-badge-poland strong {
  padding: 8px 12px 10px;
  background: var(--red);
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}


.pill,
.category-pill,
.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 40px;
  padding: 8px 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1;
  background: rgba(148,177,111,.14);
  color: var(--accent-strong);
}

.pill-outline,
.category-pill {
  color: var(--accent-strong);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(38,71,47,.12);
}

.pill-red {
  background: var(--red);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(46,90,52,.22);
}

.button-secondary {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,71,47,.14);
  color: var(--accent-strong);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-photo-card,
.about-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: absolute;
  inset: 24px 0 110px 80px;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,245,238,.15), rgba(248,245,238,.35));
}

.hero-photo-card img,
.about-card img,
.grow-gallery img,
.cut-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card img {
  transform: scale(1.18);
  transform-origin: center 44%;
}

.hero-packshot {
  position: absolute;
  width: clamp(214px, 21.8vw, 286px);
  filter: drop-shadow(0 30px 30px rgba(38,71,47,.14));
}

.hero-packshot img,
.product-image-wrap img { width: 100%; height: auto; object-fit: contain; }
.hero-packshot-a {
  left: 2px;
  bottom: 26px;
  z-index: 2;
}
.hero-packshot-b {
  left: 214px;
  bottom: -8px;
  width: clamp(186px, 19.6vw, 252px);
  z-index: 3;
}
.hero-packshot-c {
  right: 6px;
  bottom: 26px;
  z-index: 2;
}

.hero-note {
  position: absolute;
  right: 40px;
  top: 12px;
  width: 230px;
  padding: 18px 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(38,71,47,.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--muted);
}
.hero-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.36));
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}
.section-heading.centered .section-kicker,
.section-heading.centered .hero-actions { justify-content: center; }
.section-heading.centered .section-kicker::before { display: none; }
.section-heading.centered .section-kicker::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.section-heading h2,
.grow-copy h2,
.career-box h2 {
  position: relative;
  margin: 16px 0 14px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading h2::before {
  top: -16px;
  left: -8px;
  opacity: .55;
}

.section-heading p,
.grow-copy p,
.career-box p,
.footer-brand p {
  color: var(--muted);
  max-width: 70ch;
}

.steps-grid,
.products-grid,
.benefits-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 40px 0 24px; }
.products-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefits-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 34px; }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }

.step-card,
.product-card,
.benefit-card,

.career-box,
.cut-card,
.about-card,
.grow-gallery,
.hero-note {
  backdrop-filter: blur(12px);
}

.step-card,
.product-card,
.benefit-card,
.cut-card,

.career-box {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(38,71,47,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-card {
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(250,249,244,.72));
}
.step-card::after,
.product-card::after,
.cut-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -36px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at center, rgba(148,177,111,.18), rgba(148,177,111,0));
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), #ffffff);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(38,71,47,.08);
}

.step-illus {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.step-illus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(47,95,53,.08));
}

.step-card h3,
.step-card p {
  max-width: calc(100% - 182px);
}


.step-card h3,
.product-card h3,
.cut-card h3,
.benefit-card h3,
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.step-card:nth-child(1)::after {
  background: radial-gradient(circle at center, rgba(140,174,103,.22), rgba(140,174,103,0));
}

.step-card:nth-child(2)::after {
  background: radial-gradient(circle at center, rgba(47,95,53,.16), rgba(47,95,53,0));
}

.step-card:nth-child(3)::after {
  background: radial-gradient(circle at center, rgba(161,191,116,.22), rgba(161,191,116,0));
}

.category-pills { justify-content: center; margin-top: 28px; }
.category-pill:hover { background: #fff; }

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  padding: 24px 20px 0;
  min-height: 280px;
}


.product-content,
.cut-card-body { padding: 22px 24px 24px; }

.product-tag {
  margin-bottom: 14px;
}

.cut-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.cut-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cut-card > img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  object-position: center bottom;
  padding: 24px 18px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.12));
}

.cut-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section-grow {
  overflow: clip;
}

.grow-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}


.grow-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  min-height: 430px;
}

.grow-media {
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}

.grow-media-large {
  grid-row: span 2;
}

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

.grow-media-last img {
  object-position: center top;
}

.benefit-card {
  padding: 24px 20px;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefit-card h3 { font-size: 1.15rem; }
.benefit-card p { color: var(--muted); margin: 0; }

.about-card { height: 460px; }
.about-card img { height: 100%; }

.career-box {
  padding: 36px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 52px 0 26px;
  background: linear-gradient(180deg, rgba(38,71,47,.97), rgba(30,53,35,.98));
  color: rgba(255,255,255,.92);
}
.site-footer .footer-badge { background: none; }
.site-footer .footer-badge img {
  width: 190px;
  filter: drop-shadow(0 10px 18px rgba(255,255,255,.06));
}
.footer-brand { max-width: 360px; }
.footer-brand .brand-badge { margin-bottom: 16px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer-list { list-style: none; padding: 0; margin: 0; color: rgba(255,255,255,.78); }
.footer-list li + li { margin-top: 8px; }
.footer-list a { color: #fff; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.6);
  font-size: .94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .hero-grid,
  .grow-grid,
  .about-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; margin-top: 12px; }

  .cut-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cut-card > img { height: 280px; }
  .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    width: min(340px, calc(100vw - 40px));
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(38,71,47,.1);
  }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .steps-grid,
  .products-grid-3,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cut-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cut-card > img { height: 260px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 76px; }
  .brand-badge img { width: 148px; }

.hero-marks { gap: 12px; }
.mark-badge-pesticide { width: 86px; }
.mark-badge-poland { width: 120px; }
  .hero { padding-top: 30px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-visual { min-height: 480px; }
  .hero-photo-card { inset: 10px 0 100px 0; }
  .hero-packshot { width: 176px; }
  .hero-packshot-a { left: 0; bottom: 18px; z-index: 2; }
  .hero-packshot-b { left: 112px; bottom: -8px; width: 162px; z-index: 3; }
  .hero-packshot-c { right: 0; bottom: 18px; z-index: 2; }
  .hero-note { top: -8px; right: 12px; width: 200px; padding: 14px 16px; }
  .section { padding: 78px 0; }
  .steps-grid,
  .products-grid-3,
  .cut-grid,
  .benefits-grid,
  .footer-grid { grid-template-columns: 1fr; }

    .grow-gallery { grid-template-columns: 1fr; grid-template-rows: none; min-height: auto; }
  .grow-media-large { grid-row: auto; }
  .cut-card > img { height: 300px; }
  .about-card { height: 320px; }
  .footer-bottom { flex-direction: column; }
}


@media (max-width: 720px) {
  .step-illus {
    width: 112px;
    height: 112px;
    top: 18px;
    right: 16px;
  }

  .step-card h3,
  .step-card p {
    max-width: calc(100% - 138px);
  }
}


/* Hero-only decorative motif */
.page-watermark-face { display: none !important; }
.hero { overflow: hidden; }
.hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-watermark img {
  position: absolute;
  left: 46%;
  top: 26px;
  transform: translateX(-50%);
  width: clamp(360px, 38vw, 620px);
  height: auto;
  opacity: .24;
  filter: saturate(.82) brightness(1.04);
}
.hero-grid { z-index: 1; }

@media (max-width: 980px) {
  .hero-watermark img {
    left: 44%;
    top: 48px;
    width: clamp(270px, 46vw, 430px);
    opacity: .18;
  }
}

@media (max-width: 640px) {
  .hero-watermark img {
    left: 50%;
    top: 108px;
    width: 250px;
    opacity: .16;
  }
}


.privacy-page {
  padding-top: 56px;
}

.privacy-wrap {
  max-width: 960px;
}

.privacy-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,71,47,.08);
  border-radius: 28px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

.privacy-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.privacy-list {
  margin: 0;
  padding-left: 1.2rem;
}

.privacy-list li + li {
  margin-top: .45rem;
}


/* Cookie consent */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(24, 35, 24, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.cookie-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-panel {
  width: min(100%, 760px);
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(38, 71, 47, 0.10);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(25, 43, 29, 0.22);
  padding: 26px 26px 22px;
  pointer-events: auto;
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
}

.cookie-panel.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cookie-text {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.cookie-leaf {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(228,236,215,.95), rgba(244,248,236,.85));
  color: var(--accent-strong);
}

.cookie-leaf svg {
  width: 26px;
  height: 26px;
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.cookie-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button-primary {
  background: var(--accent-strong);
  color: #fff;
}

.cookie-button-secondary {
  background: rgba(228,236,215,.95);
  color: var(--accent-strong);
}

.cookie-button-ghost {
  background: transparent;
  color: var(--muted);
  padding-left: 6px;
  padding-right: 6px;
}

.cookie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-meta a,
.cookie-text a,
.cookie-link-button {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-settings {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(38, 71, 47, 0.08);
}

.cookie-settings.is-open {
  display: block;
}

.cookie-grid {
  display: grid;
  gap: 12px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(38, 71, 47, 0.08);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
}

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

.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-switch {
  position: relative;
  width: 54px;
  height: 32px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(92, 109, 93, 0.25);
  transition: background-color .2s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  transition: transform .2s ease;
}

.cookie-switch input:checked + span {
  background: var(--accent-strong);
}

.cookie-switch input:checked + span::after {
  transform: translateX(22px);
}

.cookie-switch input:disabled + span {
  background: rgba(47,95,53,.86);
}

.cookie-manage {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  appearance: none;
  border: 1px solid rgba(38, 71, 47, 0.10);
  background: rgba(255,252,246,.94);
  color: var(--accent-strong);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(25, 43, 29, 0.12);
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-manage:hover,
.cookie-manage:focus-visible {
  background: #fff;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .cookie-panel {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }
  .cookie-head {
    gap: 12px;
  }
  .cookie-leaf {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-button,
  .cookie-button-ghost {
    width: 100%;
    text-align: center;
  }
  .cookie-option {
    grid-template-columns: 1fr;
  }
  .cookie-manage {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }
}
