:root {
  --bg: #f6f1da;
  --bg-soft: #fbf8ea;
  --paper: rgba(255, 252, 240, 0.82);
  --paper-strong: #fffdf5;
  --green-deep: #305b2d;
  --green: #4d7f3b;
  --green-soft: #86aa5a;
  --green-pale: #d9e5ad;
  --pickle: #72993f;
  --pickle-dark: #4d6d28;
  --gold: #d9b35f;
  --tomato: #c96f4f;
  --text: #24311f;
  --muted: #5a664f;
  --border: rgba(48, 91, 45, 0.14);
  --shadow: 0 20px 45px rgba(68, 85, 34, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 229, 173, 0.9), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 179, 95, 0.26), transparent 24%),
    linear-gradient(180deg, #f8f5e7 0%, #f3eed9 52%, #efe8cd 100%);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.hero,
.section,
.footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem clamp(1.25rem, 3vw, 3rem);
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 250, 233, 0.82)),
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 12px,
      rgba(217, 229, 173, 0.08) 12px,
      rgba(217, 229, 173, 0.08) 24px
    );
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 1.3rem 1.3rem;
  width: 110px;
  height: 18px;
  background:
    radial-gradient(circle at 8px 9px, var(--green-soft) 0 3px, transparent 3.5px),
    linear-gradient(90deg, transparent, rgba(77, 127, 59, 0.18), transparent);
  opacity: 0.75;
}

.hero::after {
  inset: 1.5rem 1.5rem auto auto;
  transform: rotate(8deg);
}

.hero__ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__ribbons span {
  position: absolute;
  display: block;
  width: 180px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 111, 79, 0.95), rgba(217, 179, 95, 0.95));
  box-shadow: 0 8px 22px rgba(120, 73, 38, 0.18);
}

.hero__ribbons span:nth-child(1) {
  top: 1.25rem;
  left: -2.5rem;
  transform: rotate(-18deg);
}

.hero__ribbons span:nth-child(2) {
  top: 2.5rem;
  right: -3.2rem;
  transform: rotate(16deg);
}

.hero__ribbons span:nth-child(3) {
  bottom: 2rem;
  right: 18%;
  width: 120px;
  height: 26px;
  transform: rotate(-16deg);
}

.eyebrow,
.section__label,
.program-item__time {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.9);
  border: 1px solid rgba(77, 127, 59, 0.16);
  font-size: 0.82rem;
  color: var(--green-deep);
}

.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #dce8ae 0 20%, var(--green) 24% 100%);
}

h1,
h2,
h3,
p,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  color: var(--green-deep);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green-deep);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.hero__lead,
.section p,
.fact-card p,
.program-item p,
.manifest-list li,
.footer p {
  font-size: 1.03rem;
}

.hero__lead {
  max-width: 36rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5d8e42 0%, #477035 100%);
  color: #fffdf4;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(77, 112, 53, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(77, 112, 53, 0.28);
  outline: none;
}

.hero__art {
  position: relative;
  min-height: 380px;
  padding: 1rem;
}

.cucumber {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 24%, rgba(220, 235, 161, 0.85), transparent 18%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 10px,
      rgba(78, 111, 42, 0.12) 10px,
      rgba(78, 111, 42, 0.12) 20px
    ),
    linear-gradient(180deg, #86af53 0%, #648d39 55%, #53732f 100%);
  box-shadow: inset -10px -12px 16px rgba(54, 83, 32, 0.18), 0 24px 35px rgba(83, 115, 47, 0.18);
}

.cucumber::before {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border-radius: inherit;
  border: 2px dotted rgba(255, 255, 255, 0.16);
}

.cucumber--tall {
  width: 126px;
  height: 282px;
  left: 0.75rem;
  bottom: 1.2rem;
  transform: rotate(-12deg);
}

.cucumber--round {
  width: 108px;
  height: 230px;
  left: 6.4rem;
  top: 1rem;
  transform: rotate(16deg);
}

.jar {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  width: min(250px, 70%);
  height: 305px;
}

.jar__glass {
  position: absolute;
  inset: 26px 0 0;
  border-radius: 26px 26px 34px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(218, 241, 213, 0.34));
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 -26px 0 rgba(104, 145, 58, 0.16),
    inset 16px 0 24px rgba(255, 255, 255, 0.16),
    0 26px 42px rgba(76, 90, 40, 0.13);
}

.jar__lid {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 42px;
  border-radius: 999px 999px 16px 16px;
  background:
    linear-gradient(180deg, #edce7a 0%, #d6aa52 100%);
  box-shadow: inset 0 -4px 0 rgba(137, 93, 28, 0.18);
}

.jar__lid::before {
  content: "";
  position: absolute;
  inset: 8px 16px 18px;
  border-radius: 999px;
  border: 2px dashed rgba(131, 84, 22, 0.26);
}

.jar__pickle {
  position: absolute;
  bottom: 40px;
  width: 62px;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8cb157 0%, #6d9241 100%);
  box-shadow: inset -6px -10px 14px rgba(47, 83, 26, 0.16);
}

.jar__pickle::before {
  content: "";
  position: absolute;
  inset: 12px 10px;
  border-radius: inherit;
  border: 2px dotted rgba(255, 255, 255, 0.15);
}

.jar__pickle--left {
  left: 54px;
  transform: rotate(-8deg);
}

.jar__pickle--right {
  right: 48px;
  height: 148px;
  transform: rotate(8deg);
}

.jar__shine {
  position: absolute;
  top: 44px;
  left: 30px;
  width: 28px;
  height: 200px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.04));
  filter: blur(0.5px);
}

main {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.section {
  padding: clamp(1.4rem, 2.4vw, 2.5rem);
}

.card,
.manifest,
.footer {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.section__heading {
  max-width: 50rem;
  margin-bottom: 1.5rem;
}

.section__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(217, 229, 173, 0.55);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.fact-card {
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 253, 245, 0.92), rgba(243, 238, 217, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(72, 90, 35, 0.08);
}

.fact-card h3 {
  color: var(--green-deep);
}

.program-list {
  display: grid;
  gap: 0.95rem;
}

.program-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--paper-strong);
  border: 1px dashed rgba(77, 127, 59, 0.28);
  border-radius: var(--radius-md);
}

.program-item__time {
  margin: 0;
  font-weight: 700;
  color: var(--tomato);
}

.program-item h3,
.program-item p {
  margin-bottom: 0;
}

.manifest {
  overflow: hidden;
}

.manifest::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 229, 173, 0.5), transparent 70%);
}

.manifest-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin: 0;
  padding-left: 1.25rem;
}

.manifest-list li {
  padding: 0.25rem 0;
}

.footer {
  margin-top: 1.75rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer__note {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid rgba(201, 111, 79, 0.5);
  outline-offset: 3px;
}

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

  .hero__content {
    position: relative;
    z-index: 1;
  }

  .hero__art {
    min-height: 320px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifest-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .hero {
    padding: 3.25rem 1rem 1.5rem;
    border-radius: 26px;
  }

  .hero__ribbons span:nth-child(1),
  .hero__ribbons span:nth-child(2) {
    width: 130px;
  }

  .hero__ribbons span:nth-child(3) {
    right: 8%;
  }

  .hero__art {
    min-height: 280px;
    padding: 0;
  }

  .cucumber--tall {
    width: 96px;
    height: 220px;
    left: 0;
  }

  .cucumber--round {
    width: 86px;
    height: 184px;
    left: 4.6rem;
  }

  .jar {
    width: 200px;
    height: 255px;
    right: 0;
  }

  .jar__pickle {
    width: 48px;
    height: 130px;
  }

  .jar__pickle--left {
    left: 42px;
  }

  .jar__pickle--right {
    right: 38px;
    height: 122px;
  }

  .facts-grid,
  .program-list {
    gap: 0.85rem;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .program-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

