:root {
  --bg: #f4f1e8;
  --bg-soft: #fbfaf6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-accent: #f1ece2;
  --ink: #1e2b25;
  --ink-soft: #617067;
  --line: rgba(30, 43, 37, 0.1);
  --brand: #244f40;
  --brand-deep: #173127;
  --accent: #c57a4d;
  --accent-soft: #efd5c2;
  --gold: #d7b779;
  --shadow: 0 24px 48px rgba(23, 49, 39, 0.12);
  --shadow-soft: 0 18px 32px rgba(23, 49, 39, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --scrollfx-teal: rgba(85, 164, 136, 0.22);
  --scrollfx-warm: rgba(197, 122, 77, 0.22);
  --scrollfx-gold: rgba(215, 183, 121, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(197, 122, 77, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(36, 79, 64, 0.08), transparent 22rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4f1e9 45%, #f7f4ed 100%);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 49, 39, 0.08);
  box-shadow: 0 10px 24px rgba(23, 49, 39, 0.04);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.scrollfx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 320ms ease;
  mix-blend-mode: screen;
}

.scrollfx-canvas.is-active {
  opacity: 0.95;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--brand-deep);
  font-size: 0;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(23, 49, 39, 0.06);
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease, box-shadow 180ms ease;
}

.nav-toggle::before {
  top: 20px;
  box-shadow: 0 8px 0 currentColor;
}

.nav-toggle::after {
  top: 36px;
}

.nav-toggle.is-open::before {
  top: 27px;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle.is-open::after {
  top: 27px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  background: rgba(36, 79, 64, 0.08);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--brand-deep);
  background: rgba(36, 79, 64, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(23, 49, 39, 0.16);
}

.button-secondary {
  border-color: rgba(36, 79, 64, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: var(--shadow-soft);
}

.button-warm,
.mobile-action-button-dark {
  background: linear-gradient(135deg, #b86c43, #9f562f);
  color: #fff;
}

.button-light,
.mobile-action-button-outline {
  border-color: rgba(23, 49, 39, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-deep);
  box-shadow: 0 14px 26px rgba(58, 48, 36, 0.1);
}

.button-light:hover,
.button-light:focus-visible,
.button-warm:hover,
.button-warm:focus-visible {
  box-shadow: 0 20px 34px rgba(58, 48, 36, 0.16);
}

.button-tertiary {
  padding-inline: 0;
  background: none;
  color: var(--brand);
  box-shadow: none;
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  box-shadow: none;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  padding: 0;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(207, 116, 73, 0.12);
}

.eyebrow::after,
.kicker::after {
  content: "";
  width: 3.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 79, 64, 0.42), rgba(36, 79, 64, 0));
}

.hero {
  padding: 3.45rem 0 3.1rem;
}

.home-page .hero {
  padding: 1rem 0 2.8rem;
}

.mobile-quick-actions {
  display: none;
}

.desktop-home-hero {
  position: relative;
  width: 100vw;
  min-height: 30rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(207, 116, 73, 0.18), transparent 24%),
    linear-gradient(105deg, rgba(17, 34, 27, 0.18), rgba(17, 34, 27, 0.02) 48%, rgba(250, 244, 235, 0.08)),
    url("assets/images/mobile-hero-produce.svg") center center / cover no-repeat;
  box-shadow: inset 0 -34px 68px rgba(18, 34, 28, 0.12);
}

.desktop-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 31, 25, 0.18), rgba(16, 31, 25, 0.03) 46%, rgba(246, 239, 229, 0.14)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.08), rgba(244, 239, 230, 0.02) 42%, rgba(16, 31, 25, 0.12));
}

.desktop-home-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 2.4rem;
}

.desktop-home-hero-card {
  display: grid;
  gap: 0.85rem;
  width: min(44rem, 100%);
  padding: 1.65rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.78), rgba(228, 219, 206, 0.58));
  backdrop-filter: blur(20px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 28px 58px rgba(58, 48, 36, 0.18);
}

.desktop-home-hero-kicker {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-home-hero-card h1 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  max-width: 12ch;
  font-size: clamp(3.4rem, 4.8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: var(--brand-deep);
}

.desktop-home-hero-copy {
  margin: 0;
  max-width: 24rem;
  font-size: 1.02rem;
  line-height: 1.42;
  color: rgba(23, 49, 39, 0.76);
}

.desktop-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.desktop-action-button {
  min-width: 10.75rem;
  justify-content: center;
}

.mobile-quick-actions-inner {
  display: grid;
}

.mobile-quick-actions-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  padding: 1.25rem;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.04), rgba(255, 252, 246, 0.08)),
    url("assets/images/mobile-hero-produce.svg") center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.mobile-quick-actions-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(247, 241, 231, 0.12), rgba(34, 34, 26, 0.16));
}

.mobile-quick-actions-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  width: min(31rem, 100%);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.82), rgba(232, 224, 212, 0.72));
  backdrop-filter: blur(22px) saturate(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 22px 46px rgba(58, 48, 36, 0.18);
}

.mobile-quick-actions-copyblock {
  display: grid;
  gap: 0.6rem;
}

.mobile-quick-actions-kicker,
.mobile-quick-actions-title,
.mobile-quick-actions-copy {
  margin: 0;
  color: var(--brand-deep);
}

.mobile-quick-actions-kicker {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-quick-actions-title {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.4rem, 9vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.mobile-quick-actions-copy {
  max-width: 24rem;
  color: rgba(23, 49, 39, 0.76);
  font-size: 1rem;
  line-height: 1.45;
}

.mobile-quick-actions-stack {
  display: grid;
  gap: 0.85rem;
}

.mobile-action-button {
  width: 100%;
  min-height: 3.8rem;
  font-size: 1rem;
  box-shadow: 0 16px 28px rgba(23, 49, 39, 0.14);
}

.mobile-action-button-outline:hover,
.mobile-action-button-outline:focus-visible,
.mobile-action-button-dark:hover,
.mobile-action-button-dark:focus-visible {
  box-shadow: 0 20px 34px rgba(58, 48, 36, 0.16);
}

.hero-grid,
.page-grid,
.split-grid,
.cta-grid,
.info-grid,
.two-up {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.page-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: end;
}

.hero-copy h1,
.page-hero h1,
.section-head h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 0.72rem;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

.hero-copy p {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.button-row,
.meta-row,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-row {
  margin-top: 1.7rem;
}

.meta-row {
  margin-top: 1.45rem;
}

.meta-row span {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(36, 79, 64, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  padding: 1.1rem;
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto auto 14% -10%;
  width: 15rem;
  height: 15rem;
  background: rgba(207, 116, 73, 0.12);
  border-radius: 50%;
  filter: blur(8px);
}

.visual-grid {
  display: grid;
  gap: 1rem;
}

.visual-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 168px;
  box-shadow: var(--shadow-soft);
}

.visual-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 255, 0.96));
  border: 1px solid rgba(53, 102, 167, 0.12);
}

.partner-banner img {
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.partner-label {
  color: #3566a7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-copy {
  margin: 0;
  color: #4c6486;
  font-size: 0.92rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  right: 1.45rem;
  top: 1.5rem;
  width: min(17rem, calc(100% - 2.4rem));
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(23, 49, 39, 0.88);
  color: #f5efe6;
  box-shadow: 0 18px 30px rgba(23, 49, 39, 0.22);
}

.floating-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.85rem;
  font-family: "Newsreader", Georgia, serif;
}

.floating-card p {
  margin: 0;
  color: rgba(245, 239, 230, 0.82);
  font-size: 0.94rem;
}

.section {
  padding: 2.4rem 0 0;
}

.section-spacious {
  padding: 3.5rem 0 0;
}

.section-soft {
  padding-block: 3.75rem 0;
}

.section-surface {
  padding-block: 3rem;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
  margin-bottom: 1.45rem;
}

.section-head h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-page .page-hero {
  padding-bottom: 1.45rem;
}

.about-page .section-spacious {
  padding-top: 2.1rem;
}

.about-page .section-head {
  max-width: 58rem;
  margin-bottom: 1.3rem;
}

.about-page .split-grid {
  align-items: start;
}

.about-page .section-head h2 {
  line-height: 1.01;
}

.home-page .section-spacious {
  padding-top: 2.2rem;
}

.home-page .section-head {
  margin-bottom: 1.15rem;
}

.meals-page .page-hero {
  padding-bottom: 1.05rem;
}

.meals-page .section-spacious {
  padding-top: 1.95rem;
}

.meals-page .section-head {
  margin-bottom: 1.1rem;
}

.faq-page .page-hero {
  padding-bottom: 1.05rem;
}

.faq-page .section-spacious {
  padding-top: 1.9rem;
}

.faq-page .faq-list {
  gap: 0.8rem;
}

.signup-page .agreement-card {
  align-content: start;
}

.signup-page .page-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.signup-page .page-hero {
  padding-bottom: 0.45rem;
}

.signup-page .page-grid > :first-child {
  max-width: 60rem;
}

.signup-page .section-spacious {
  padding-top: 0.85rem;
}

.signup-page .agreement-card h2 {
  margin: 0;
}

.signup-page .agreement-card ul {
  margin-top: 0.2rem;
}

.signup-page .contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-page .contact-panel p {
  max-width: 28rem;
}

.signup-office-card {
  max-width: 36rem;
}

.volunteer-page .page-hero {
  padding-bottom: 0.95rem;
}

.volunteer-page .section-spacious {
  padding-top: 1.7rem;
}

.volunteer-page .contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.volunteer-page .contact-panel p {
  max-width: 28rem;
}

.donate-page .page-hero {
  padding-bottom: 0.95rem;
}

.donate-page .section-spacious {
  padding-top: 1.7rem;
}

.donate-page .contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate-page .contact-panel p {
  max-width: 29rem;
}

.impact-strip {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.scroll-fx-target {
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 920ms cubic-bezier(0.16, 0.84, 0.26, 1),
    filter 760ms ease;
  transition-delay: var(--scroll-fx-delay, 0ms);
  will-change: transform, opacity, filter;
}

.js-scroll-fx .scroll-fx-target {
  opacity: 0;
  transform: translate3d(0, 38px, 0) perspective(1200px) rotateX(8deg) scale(0.985);
  filter: saturate(0.92);
}

.js-scroll-fx .scroll-fx-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) perspective(1200px) rotateX(0deg) scale(1);
  filter: none;
}

.scroll-fx-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.scroll-fx-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--scrollfx-gold), transparent 42%),
    radial-gradient(circle at 58% 44%, var(--scrollfx-teal), transparent 46%),
    radial-gradient(circle at 74% 64%, var(--scrollfx-warm), transparent 40%);
  filter: blur(18px);
  opacity: 0;
  transform: translate3d(-8%, 18%, 0) rotate(-10deg) scale(0.82);
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.16, 0.84, 0.26, 1);
  pointer-events: none;
  z-index: 0;
}

.js-scroll-fx .scroll-fx-card.is-visible::before {
  opacity: 0.95;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.scroll-fx-card > * {
  position: relative;
  z-index: 1;
}

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

.stat-card,
.card,
.info-card,
.download-card,
.quote-card,
.detail-card,
.contact-panel,
.agreement-card,
.provider-card {
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.25rem 1.15rem;
  min-height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  font-family: "Newsreader", Georgia, serif;
  color: var(--brand-deep);
}

.stat-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.info-card,
.download-card,
.detail-card,
.provider-card,
.agreement-card {
  padding: 1.55rem;
}

.card h3,
.detail-card h3,
.download-card h3,
.quote-card h3,
.provider-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
}

.card p,
.detail-card p,
.download-card p,
.provider-card p,
.agreement-card p {
  margin: 0;
  color: var(--ink-soft);
}

.card ul,
.detail-card ul,
.agreement-card ul,
.provider-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.card li,
.detail-card li,
.agreement-card li,
.provider-card li {
  margin-top: 0.4rem;
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.glass-panel {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -15% auto;
  width: 13rem;
  height: 13rem;
  background: rgba(215, 183, 121, 0.14);
  border-radius: 50%;
}

.list-check,
.stack-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.list-check span,
.stack-list span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink-soft);
}

.list-check span::before,
.stack-list span::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.3rem;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #efad75);
  box-shadow: 0 0 0 6px rgba(207, 116, 73, 0.12);
}

.quote-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.7rem;
}

.quote-card blockquote {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.28;
  color: var(--brand-deep);
}

.quote-card cite {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 600;
}

.page-hero {
  padding: 3.1rem 0 1.45rem;
}

.page-hero-card {
  padding: 1.8rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, rgba(36, 79, 64, 0.9), rgba(23, 49, 39, 0.9));
  color: #f5efe6;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-top: 0.72rem;
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.page-hero p {
  margin: 1.1rem 0 0;
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.page-hero-card p,
.page-hero-card strong {
  color: #f5efe6;
}

.page-hero-card strong {
  display: block;
  font-size: 1.05rem;
}

.page-hero-card .helper {
  margin-top: 0.6rem;
  color: rgba(245, 239, 230, 0.8);
}

.mini-stats {
  display: grid;
  gap: 0.8rem;
}

.mini-stats .info-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem;
  color: var(--brand-deep);
}

.info-card {
  padding: 1.25rem;
}

.stack-photo {
  display: grid;
  gap: 1rem;
}

.stack-photo .visual-photo,
.stack-photo .visual-banner {
  min-height: 240px;
}

.highlight-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.highlight-bar span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand);
  font-weight: 700;
}

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

.download-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  min-height: 100%;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.download-link-card p {
  margin-bottom: auto;
}

.menu-current-week {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.menu-current-week h3,
.menu-current-week p {
  color: rgba(255, 255, 255, 0.95) !important;
}

.menu-current-week .download-link-pill {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.menu-current-week:hover .download-link-pill,
.menu-current-week:focus-visible .download-link-pill {
  background: rgba(255, 255, 255, 0.28) !important;
}

.download-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(36, 79, 64, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

@keyframes menu-card-wiggle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

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

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

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

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

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .download-link-card:hover,
  .download-link-card:focus-visible {
    animation: menu-card-wiggle 360ms ease-in-out 1 forwards;
    border-color: rgba(36, 79, 64, 0.18);
    box-shadow: 0 24px 42px rgba(23, 49, 39, 0.14);
    background: rgba(255, 255, 255, 0.9);
  }

  .download-link-card:hover .download-link-pill,
  .download-link-card:focus-visible .download-link-pill {
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 49, 39, 0.14);
  }
}

.download-card small,
.helper {
  color: var(--ink-soft);
}

.download-card small {
  display: block;
  margin-top: 0.5rem;
}

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

.sample-menu ul {
  margin: 0.95rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.sample-menu li {
  margin-top: 0.4rem;
}

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

.faq-item {
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--brand);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.25rem;
  color: var(--ink-soft);
}

.faq-answer.open {
  display: block;
}

.faq-answer p,
.faq-answer ul {
  margin: 0.6rem 0 0;
}

.faq-answer ul {
  padding-left: 1.1rem;
}

.form-shell {
  display: grid;
  gap: 1.25rem;
}

.form-card {
  padding: 1.6rem;
  border: 1px solid rgba(36, 79, 64, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.form-card h2,
.form-card h3 {
  margin: 0;
}

.form-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.field,
.field-full {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: var(--brand-deep);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(36, 79, 64, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.faq-question:focus-visible,
.download-link-card:focus-visible {
  outline: 3px solid rgba(207, 116, 73, 0.22);
  outline-offset: 2px;
}

.agreement-card {
  display: grid;
  gap: 1rem;
}

.add-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1.5px dashed var(--brand);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.add-secondary-btn:hover {
  background: rgba(36, 79, 64, 0.07);
}

.add-secondary-icon {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
}

.second-emergency-grid {
  padding-top: 0.25rem;
  grid-column: 1 / -1;
}

.disclaimer-box {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand);
  background: rgba(36, 79, 64, 0.06);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted, #4a5a55);
}

.disclaimer-box p {
  margin: 0;
}

.agreement-check {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(239, 227, 208, 0.54);
}

.agreement-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.summary-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(36, 79, 64, 0.22);
  background: rgba(244, 237, 226, 0.82);
  color: var(--ink);
  white-space: pre-wrap;
}

.contact-panel {
  padding: 1.55rem;
}

.contact-panel h3 {
  margin: 0;
  font-size: 1.25rem;
}

.contact-panel p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 700;
}

.cta-band {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(23, 49, 39, 0.94), rgba(36, 79, 64, 0.94)),
    var(--brand);
  color: #f5efe6;
  box-shadow: var(--shadow);
}

.cta-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.98;
}

.cta-band p {
  margin: 1rem 0 0;
  color: rgba(245, 239, 230, 0.82);
  font-size: 1.05rem;
}

.site-footer {
  margin-top: 4.5rem;
  padding: 3.25rem 0 1.5rem;
  background:
    linear-gradient(180deg, rgba(23, 49, 39, 0.98), rgba(17, 34, 28, 0.98)),
    var(--brand-deep);
  color: #f5efe6;
}

.footer-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-card h2,
.footer-card h3 {
  margin: 0;
  color: #fff;
}

.footer-card p,
.footer-card li,
.footer-card a {
  color: rgba(245, 239, 230, 0.78);
}

.footer-card ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-note {
  margin: 1.35rem 0 0;
  color: rgba(245, 239, 230, 0.64);
  text-align: center;
}

.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;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .cta-grid,
  .footer-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .cards.three-up,
  .cards.four-up,
  .impact-grid,
  .menu-grid,
  .sample-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .desktop-home-hero {
    display: none;
  }

  .mobile-quick-actions {
    display: block;
    padding: 0;
  }

  .mobile-quick-actions-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-page .hero-grid {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border: 1px solid rgba(36, 79, 64, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero {
    padding-top: 0.7rem;
  }

  .page-hero {
    padding-top: 2.05rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4.9rem);
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .form-grid,
  .cards.three-up,
  .cards.four-up,
  .impact-grid,
  .sample-menu,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: auto;
    margin: 0 0 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100vw - 1.2rem));
  }

  .hero-visual,
  .glass-panel,
  .cta-band,
  .footer-card,
  .form-card,
  .card,
  .info-card,
  .download-card,
  .quote-card,
  .detail-card,
  .provider-card,
  .agreement-card {
    border-radius: 22px;
  }

  .button,
  .button-secondary,
  .button-tertiary {
    width: 100%;
  }

  .button-row,
  .actions-row,
  .support-actions {
    flex-direction: column;
  }

  .mobile-quick-actions {
    padding-top: 0;
  }

  .mobile-quick-actions-frame {
    min-height: 27.5rem;
    padding: 0.85rem;
    border-radius: 0;
    background-position: center center;
  }

  .page-hero {
    padding-top: 1.55rem;
  }

  .mobile-quick-actions-card {
    padding: 1.15rem;
    border-radius: 30px;
    width: min(100%, 22.75rem);
  }

  .mobile-action-button {
    min-height: 3.45rem;
    font-size: 0.94rem;
  }

  .mobile-quick-actions-kicker {
    font-size: 0.84rem;
  }

  .mobile-quick-actions-copy {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before,
  .scrollfx-canvas,
  .site-header,
  .site-footer,
  .cta-band,
  .button-row,
  .actions-row,
  .nav-toggle {
    display: none !important;
  }

  .form-card,
  .agreement-card,
  .summary-box,
  .contact-panel,
  .card,
  .info-card,
  .download-card,
  .detail-card,
  .quote-card,
  .provider-card {
    box-shadow: none;
    border-color: #bbb;
    background: #fff;
  }
}
