:root {
  --ink: #292937;
  --muted: #3d4a43;
  --paper: #ecefe8;
  --panel: #f7f8f2;
  --leaf: #b6d0a8;
  --leaf-dark: #2f544a;
  --leaf-soft: #dce9d4;
  --avocado: #9fbf93;
  --table-warmth: #e5dfd8;
  --gold: #ad807b;
  --blueberry: #292937;
  --cocoa: #6f4e5d;
  --sun: #f2d36b;
  --active-green: #173a33;
  --active-green-soft: #1d433a;
  --review-magenta: #ff00ff;
  --line: rgba(71, 114, 99, 0.2);
  --shadow: 0 24px 60px rgba(41, 41, 55, 0.12);
  --linen-texture: url("assets/reimagined-nutrition-linen-texture.jpg");
  --wood-grain:
    linear-gradient(115deg, rgba(247, 248, 242, 0.9), rgba(220, 233, 212, 0.48) 46%, rgba(247, 248, 242, 0.88)),
    linear-gradient(180deg, rgba(247, 248, 242, 0.74), rgba(247, 248, 242, 0.58)),
    var(--linen-texture);
  --wood-grain-dark:
    linear-gradient(115deg, rgba(41, 41, 55, 0.92), rgba(111, 78, 93, 0.78)),
    linear-gradient(180deg, rgba(41, 41, 55, 0.62), rgba(23, 58, 51, 0.34)),
    var(--linen-texture);
  --wood-grain-size: auto, auto, cover;
  --wood-grain-dark-size: auto, auto, cover;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    var(--wood-grain),
    var(--paper);
  background-attachment: fixed;
  background-size: var(--wood-grain-size), auto;
  color: var(--ink);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

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

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

p {
  line-height: 1.72;
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 242, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.brand-logo {
  border-radius: 4px;
  height: 46px;
  object-fit: contain;
  width: min(248px, 52vw);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 0.9rem;
  font-weight: 720;
  position: relative;
  z-index: 1;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--leaf-dark);
}

.nav-toggle {
  background: rgba(247, 248, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 24px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 64px) 88px;
  position: relative;
}

.hero.compact {
  min-height: 58vh;
  padding-bottom: 76px;
}

.hero::after {
  background-image: radial-gradient(rgba(71, 114, 99, 0.24) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  content: "";
  height: 118px;
  left: clamp(18px, 5vw, 64px);
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
  top: 112px;
  width: 118px;
  z-index: 1;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.corporate-hero .hero-image {
  object-position: center 54%;
}

.events-hero .hero-image {
  object-position: center 62%;
}

.counseling-hero .hero-image {
  object-position: 72% center;
}

.counseling-hero .hero-actions {
  align-items: flex-start;
  flex-direction: column;
}

#counseling-intake {
  scroll-margin-top: 88px;
}

@media (min-width: 721px) {
  .counseling-hero .hero-image {
    transform: scale(1.1) translateX(6%);
    transform-origin: center;
  }
}

.about-hero .hero-image {
  height: calc(100% - 104px);
  left: auto;
  object-fit: cover;
  object-position: center 42%;
  right: clamp(18px, 3vw, 42px);
  top: 104px;
  width: min(46vw, 720px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 248, 242, 0.98) 0%, rgba(247, 248, 242, 0.9) 34%, rgba(247, 248, 242, 0.36) 58%, rgba(247, 248, 242, 0.06) 100%),
    linear-gradient(0deg, rgba(182, 208, 168, 0.25), rgba(173, 128, 123, 0.08) 46%);
}

.hero.compact .hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 248, 242, 0.98) 0%, rgba(247, 248, 242, 0.9) 48%, rgba(247, 248, 242, 0.28) 100%),
    linear-gradient(135deg, rgba(182, 208, 168, 0.34), rgba(173, 128, 123, 0.14));
}

.hero-content {
  max-width: 760px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.contact-chooser-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(220, 233, 212, 0.42), rgba(182, 208, 168, 0.16) 52%, rgba(247, 248, 242, 0.18)),
    var(--leaf);
  display: flex;
  justify-content: center;
  min-height: 62vh;
  padding-inline: clamp(20px, 5vw, 64px);
  text-align: center;
}

.contact-chooser-hero .hero-image {
  display: none;
}

.contact-chooser-hero .hero-shade {
  display: none;
}

.contact-chooser-hero::after {
  display: none;
}

.contact-chooser-hero .hero-content {
  background:
    linear-gradient(145deg, rgba(41, 41, 55, 0.96), rgba(47, 84, 74, 0.92)),
    var(--wood-grain-dark);
  background-size: auto, var(--wood-grain-dark-size);
  border: 1px solid rgba(247, 248, 242, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(23, 23, 34, 0.28);
  color: var(--panel);
  max-width: 620px;
  padding: clamp(28px, 4vw, 48px);
  width: min(620px, 100%);
}

.contact-chooser-hero .eyebrow {
  color: var(--sun);
}

.contact-chooser-hero h1 {
  color: var(--panel);
  margin-bottom: 22px;
}

.contact-chooser-hero .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.contact-chooser-hero .button-light {
  background: rgba(247, 248, 242, 0.08);
  border-color: rgba(247, 248, 242, 0.42);
  color: var(--panel);
}

.contact-chooser-hero .button-light:hover,
.contact-chooser-hero .button-light:focus-visible {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

.proposal-card-section {
  background:
    linear-gradient(135deg, rgba(220, 233, 212, 0.42), rgba(182, 208, 168, 0.16) 52%, rgba(247, 248, 242, 0.18)),
    var(--leaf);
  display: grid;
  min-height: min(560px, 64vh);
  place-items: center;
}

.proposal-card {
  background:
    linear-gradient(145deg, rgba(41, 41, 55, 0.96), rgba(47, 84, 74, 0.92)),
    var(--wood-grain-dark);
  background-size: auto, var(--wood-grain-dark-size);
  border: 1px solid rgba(247, 248, 242, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--panel);
  max-width: 720px;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.proposal-card h2 {
  color: var(--panel);
  margin-bottom: 22px;
}

.proposal-card .lead {
  color: rgba(247, 248, 242, 0.88);
  margin-inline: auto;
  max-width: 56ch;
}

.proposal-card .button-row {
  justify-content: center;
}

.proposal-card .button-primary {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

.proposal-card .button-primary:hover,
.proposal-card .button-primary:focus-visible {
  background: var(--panel);
  border-color: var(--panel);
  color: var(--leaf-dark);
}

.proposal-card .button-light {
  background: rgba(247, 248, 242, 0.08);
  border-color: rgba(247, 248, 242, 0.42);
  color: var(--panel);
}

.proposal-card .button-light:hover,
.proposal-card .button-light:focus-visible {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

.eyebrow {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.55rem);
  font-weight: 520;
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-title-note {
  color: var(--leaf-dark);
  display: block;
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
  font-style: italic;
  line-height: 1.03;
  margin-top: 0.08em;
}

.hero-title-lock {
  white-space: nowrap;
}

.no-wrap {
  white-space: nowrap;
}

.compact h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 4rem);
  font-weight: 520;
  line-height: 1.08;
  margin-bottom: 0;
}

.section h2 + p {
  margin-top: clamp(18px, 2.4vw, 30px);
}

h3 {
  font-size: 1.18rem;
}

.line-stack span {
  display: block;
}

.keep-together {
  white-space: nowrap;
}

.hero-copy,
.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  max-width: 680px;
}

.pull-quote {
  color: var(--ink);
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 660px;
  padding-left: clamp(52px, 5vw, 82px);
  position: relative;
}

.pull-quote > p {
  margin: 0;
}

.meal-review > p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.quote-attribution {
  font-size: 0.85rem;
  margin-top: 14px;
}

.quote-attribution cite {
  font-style: normal;
}

.pull-quote::before {
  color: var(--cocoa);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.4rem, 8.5vw, 8rem);
  font-weight: 520;
  left: 0;
  line-height: 0.72;
  opacity: 0.78;
  position: absolute;
  top: -0.08em;
}

.section.dark .pull-quote::before {
  color: var(--sun);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-guide-cta {
  justify-content: center;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 780;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(71, 114, 99, 0.24);
  color: #292937;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--active-green);
  box-shadow: 0 16px 34px rgba(23, 58, 51, 0.28);
  color: var(--panel);
}

.button-light {
  background: rgba(247, 248, 242, 0.82);
  border-color: var(--line);
}

.program-card.featured .button-light {
  color: var(--leaf-dark);
}

.text-link {
  color: var(--leaf-dark);
  display: inline-flex;
  font-weight: 820;
  margin-top: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cocoa);
}

#services .program-card {
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

#services .program-card.featured .text-link,
#services .program-card.featured .text-link:hover,
#services .program-card.featured .text-link:focus-visible,
#services .program-card:not(.featured):hover .text-link,
#services .program-card:not(.featured):focus-within .text-link {
  color: var(--sun);
}

#services .grid-3:has(.program-card:not(.featured):hover) .program-card.featured .text-link,
#services .grid-3:has(.program-card:not(.featured):focus-within) .program-card.featured .text-link {
  color: var(--leaf-dark);
}

.tooltip-term {
  border-bottom: 2px dotted currentColor;
  cursor: help;
  display: inline-block;
  font-weight: 760;
  position: relative;
}

.tooltip-bubble {
  background: var(--ink);
  border: 1px solid rgba(247, 248, 242, 0.22);
  border-radius: 8px;
  bottom: calc(100% + 12px);
  box-shadow: var(--shadow);
  color: #f7f8f2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 650;
  left: 50%;
  line-height: 1.45;
  opacity: 0;
  padding: 12px 14px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
  width: min(300px, calc(100vw - 48px));
  z-index: 30;
}

.tooltip-bubble::after {
  background: var(--ink);
  bottom: -6px;
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
}

.tooltip-term:hover .tooltip-bubble,
.tooltip-term:focus-visible .tooltip-bubble {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.intro {
  background:
    linear-gradient(180deg, rgba(220, 233, 212, 0), rgba(220, 233, 212, 0.88) 38%),
    var(--wood-grain),
    var(--leaf-soft);
  background-size: auto, var(--wood-grain-size), auto;
  color: var(--ink);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -68px;
  padding: 18px clamp(18px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.intro-item,
.card,
.program-card,
.form-card,
.mini-card {
  background: rgba(247, 248, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(41, 41, 55, 0.08);
  padding: 26px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.intro-item:hover,
.card:hover,
.mini-card:hover,
.meal-card:hover,
.step:hover {
  border-color: rgba(47, 84, 74, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card:has(a):hover,
.card:has(a):focus-within,
.mini-card:has(a):hover,
.mini-card:has(a):focus-within {
  background: linear-gradient(180deg, var(--active-green-soft), var(--active-green));
  color: var(--panel);
  transform: translateY(-3px);
}

.card:has(a):hover p,
.card:has(a):focus-within p,
.card:has(a):hover span,
.card:has(a):focus-within span,
.mini-card:has(a):hover span,
.mini-card:has(a):focus-within span {
  color: rgba(247, 248, 242, 0.88);
}

.card:has(a):hover .text-link,
.card:has(a):focus-within .text-link,
.mini-card:has(a):hover .text-link,
.mini-card:has(a):focus-within .text-link {
  color: var(--sun);
}

.intro-item::before,
.card-rule::before {
  background: linear-gradient(90deg, var(--leaf-dark), var(--avocado));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 18px;
  width: 58px;
}

.intro-item strong,
.mini-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 7px;
}

.intro-item span,
.mini-card span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  background:
    var(--wood-grain),
    var(--paper);
  background-size: var(--wood-grain-size), auto;
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 64px);
}

.section.tight {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(182, 208, 168, 0.22), rgba(247, 248, 242, 0) 46%),
    linear-gradient(180deg, var(--table-warmth), rgba(229, 223, 216, 0) 36%),
    var(--wood-grain),
    #ecefe8;
  background-size: auto, auto, var(--wood-grain-size), auto;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(247, 248, 242, 0.76), rgba(220, 233, 212, 0.86)),
    var(--wood-grain),
    #f7f8f2;
  background-size: auto, var(--wood-grain-size), auto;
}

.section.dark {
  background:
    var(--wood-grain-dark),
    var(--blueberry);
  background-size: var(--wood-grain-dark-size), auto;
  color: #f7f8f2;
}

.section.dark .eyebrow {
  color: #b6d0a8;
}

.section.dark p,
.section.dark li,
.section.dark span {
  color: rgba(247, 248, 242, 0.78);
}

.closing-cta {
  align-items: center;
  display: grid;
  min-height: min(520px, 60vh);
  text-align: center;
}

.closing-cta-content {
  margin-inline: auto;
  max-width: 780px;
}

.closing-cta .eyebrow {
  color: var(--sun);
}

.closing-cta h2 {
  margin-inline: auto;
  max-width: 16ch;
}

.closing-cta .lead {
  margin: 28px auto 0;
  max-width: 48ch;
}

.closing-cta .button-row {
  justify-content: center;
}

.closing-cta .button-primary {
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.closing-cta .button-primary:hover,
.closing-cta .button-primary:focus-visible {
  background: var(--panel);
  color: var(--leaf-dark);
}

.closing-cta .button-light {
  background: rgba(247, 248, 242, 0.08);
  border-color: rgba(247, 248, 242, 0.42);
  color: var(--panel);
}

.closing-cta .button-light:hover,
.closing-cta .button-light:focus-visible {
  background: var(--panel);
  border-color: var(--panel);
  color: var(--leaf-dark);
}

.split {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 1.22fr);
}

.service-area-split {
  align-items: center;
}

.situation-section > div {
  min-width: 0;
  overflow-wrap: break-word;
}

.situation-copy {
  max-width: 680px;
}

.situation-copy .lead {
  font-size: 1.3rem;
  margin-bottom: 24px;
  max-width: 100%;
}

.situation-copy > :last-child {
  margin-bottom: 0;
}

@media (max-width: 620px) {
  .situation-copy .lead {
    font-size: 1.125rem;
  }
}

.caregiver-support {
  align-items: center;
}

.caregiver-support > div > :first-child {
  margin-top: 0;
}

.caregiver-support > div > :last-child {
  margin-bottom: 0;
}

.portrait-split {
  align-items: center;
  column-gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(260px, 360px) minmax(320px, 620px);
  justify-content: center;
}

.portrait-split .portrait-frame {
  margin-top: 0;
  width: 100%;
}

.food-feature {
  align-items: center;
  column-gap: clamp(32px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
}

.food-feature-image {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.food-feature-image img {
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  width: 100%;
}

.food-image-placeholder {
  align-items: center;
  background: rgba(255, 0, 255, 0.04);
  border: 2px dashed var(--review-magenta);
  color: var(--review-magenta);
  display: flex;
  font-size: 0.78rem;
  font-weight: 820;
  justify-content: center;
  letter-spacing: 0.04em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
}

.food-feature-content h2 {
  margin: 0 0 24px;
}

.food-feature-meals {
  display: grid;
  gap: 24px;
  justify-self: center;
  max-width: 420px;
  min-width: 0;
  width: 100%;
}

.food-feature-meal {
  aspect-ratio: 294 / 235;
  margin: 0;
  position: relative;
}

.food-feature-meal img {
  display: block;
  height: auto;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: calc(100% * 235 / 294);
}

.food-feature-meal-secondary {
  aspect-ratio: 302 / 241;
}

.food-feature-meal-secondary img {
  width: calc(100% * 241 / 302);
}

.food-feature-content .lead {
  margin: 0 0 26px;
}

.recurring-service-section {
  display: block;
}

.recurring-service-section > .eyebrow,
.recurring-service-section > h2 {
  text-align: center;
}

.recurring-service-section h2 {
  margin: 0 0 28px;
  max-width: none;
}

.recurring-service-content {
  column-gap: clamp(64px, 8vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-inline: auto;
  max-width: 1120px;
}

.recurring-service-content .lead {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  max-width: none;
}

.recurring-service-detail {
  margin-top: 28px;
}

.recurring-service-detail > p {
  margin: 0 0 12px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 860px;
}

.section-icon {
  background: var(--leaf-dark);
  display: block;
  flex: 0 0 auto;
  height: 48px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 48px;
}

.section-icon-nutrition-shield {
  mask-image: url("assets/icon-nutrition-shield.svg");
}

.section-heading-icon-scale {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr);
  justify-content: normal;
}

.section-heading-icon-scale .section-icon {
  height: auto;
  mask-size: 100% 100%;
  width: 100%;
}

.section-heading-icon-scale h2 {
  align-self: center;
  max-width: none;
}

.form-section-kicker {
  display: block;
  margin-bottom: 18px;
}

.questionnaire-layout {
  align-items: start;
  display: grid;
  gap: clamp(42px, 8vw, 118px);
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
}

.questionnaire-intro {
  position: relative;
}

.questionnaire-intro h2 {
  max-width: 760px;
}

.one-line-desktop {
  max-width: none;
}

.stack {
  display: grid;
  gap: 22px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

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

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

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

.service-grid .card-rule::before {
  display: none;
}

.service-icon {
  display: block;
  height: 56px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  width: 56px;
}

.icon-curation-placeholder {
  align-items: center;
  border: 2px dashed var(--review-magenta);
  border-radius: 8px;
  color: var(--review-magenta);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 820;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.card-rule:has(.icon-curation-placeholder)::before {
  display: none;
}

.card-rule:has(.service-icon)::before {
  display: none;
}

.support-card {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 124px minmax(0, 1fr);
}

.support-card .service-icon {
  height: 124px;
  margin: 2px 0 0;
  width: 124px;
}

.support-card-copy {
  min-width: 0;
}

.support-card-copy p .text-link {
  display: inline;
  font-weight: inherit;
  margin: 0;
}

.support-card-copy > :last-child {
  margin-bottom: 0;
}

@media (max-width: 620px) {
  .support-card {
    gap: 18px;
  }

  .support-card-copy {
    display: contents;
  }

  .support-card-copy h3 {
    align-self: center;
    margin: 0;
  }

  .support-card-copy p,
  .support-card-copy .text-link {
    grid-column: 1 / -1;
    margin: 0;
  }
}

.program-card .icon-curation-placeholder {
  margin-bottom: 24px;
}

@media (max-width: 360px) {
  .support-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.program-icon {
  background: var(--leaf-dark);
  display: block;
  height: 56px;
  margin-bottom: 24px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background 180ms ease;
  width: 56px;
}

.program-icon-menus {
  mask-image: url("assets/icon-menus.svg");
}

.program-icon-delivery-plan {
  mask-image: url("assets/icon-delivery-plan.svg");
}

.program-icon-staff {
  mask-image: url("assets/icon-staff.svg");
}

.program-icon-concierge {
  mask-image: url("assets/icon-concierge.svg");
}

.featured .program-icon {
  background: var(--panel);
}

.program-swap:has(.program-card:not(.featured):hover) .program-card.featured .program-icon,
.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured .program-icon,
.program-swap .program-card:not(.featured):hover .program-icon,
.program-swap .program-card:not(.featured):focus-within .program-icon {
  background: var(--panel);
}

.program-swap:has(.program-card:not(.featured):hover) .program-card.featured .program-icon {
  background: var(--leaf-dark);
}

.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured .program-icon {
  background: var(--leaf-dark);
}

.program-card .program-meta:has(+ .icon-curation-placeholder) {
  margin-bottom: 18px;
}

.program-card .program-meta:has(+ .program-icon) {
  margin-bottom: 18px;
}

.method-list {
  display: grid;
  gap: 22px;
}

.portrait-placeholder {
  align-items: center;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--review-magenta);
  border-radius: 8px;
  color: var(--review-magenta);
  display: flex;
  font-weight: 820;
  justify-content: center;
  margin-top: 32px;
  max-width: 360px;
  min-height: 320px;
  padding: 24px;
  text-align: center;
}

.portrait-frame,
.image-frame {
  aspect-ratio: 4 / 5;
  background: var(--leaf);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(41, 41, 55, 0.16);
  margin: 32px 0 0;
  overflow: hidden;
}

.portrait-frame {
  max-width: 360px;
}

.image-frame {
  margin-top: 0;
  min-height: 360px;
}

.portrait-frame img,
.image-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.cta-with-image {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(240px, 0.52fr) minmax(320px, 1fr);
}

.about-standard-section {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
}

.about-standard-photo {
  margin: 0;
  min-width: 0;
}

.about-standard-photo img {
  border-radius: 6px;
  display: block;
  height: auto;
  width: 100%;
}

.about-standard-section h2 {
  margin-top: 0;
}

.about-standard-section .pull-quote {
  margin: 28px 0 18px;
}

.about-final-layout {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  margin-inline: auto;
  max-width: 1080px;
}

.about-final-plate {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 460px;
  width: 100%;
}

.about-final-plate img {
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
  width: auto;
}

.about-final-content {
  max-width: 620px;
}

.about-final-content h2 {
  margin-top: 0;
}

.image-placeholder {
  align-items: center;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--review-magenta);
  border-radius: 8px;
  color: var(--review-magenta);
  display: flex;
  font-weight: 820;
  justify-content: center;
  min-height: 360px;
  padding: 24px;
  text-align: center;
}

.method-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 56px 0.74fr 1.26fr;
  padding-top: 24px;
}

.method-list span {
  color: var(--leaf);
  font-weight: 820;
}

.method-list h3 {
  margin-bottom: 0;
}

.method-list p,
.card p,
.program-card p,
.service-area,
.note {
  color: var(--muted);
}

.program-card {
  min-height: 360px;
}

.package-catering-card {
  overflow: hidden;
  position: relative;
}

.package-catering-card > :not(.package-catering-image) {
  max-width: 56%;
  position: relative;
  z-index: 1;
}

.package-catering-image {
  background: #fff;
  bottom: 14px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(41, 41, 55, 0.12);
  display: block;
  position: absolute;
  right: 14px;
  width: min(42%, 190px);
}

.program-card.featured {
  background: linear-gradient(180deg, var(--active-green-soft), var(--active-green));
  color: var(--panel);
}

#services .grid-3:has(.program-card:not(.featured):hover) .program-card.featured,
#services .grid-3:has(.program-card:not(.featured):focus-within) .program-card.featured {
  background: rgba(247, 248, 242, 0.92);
  color: var(--ink);
}

#services .program-card:not(.featured):hover,
#services .program-card:not(.featured):focus-within {
  background: linear-gradient(180deg, var(--active-green-soft), var(--active-green));
  box-shadow: var(--shadow);
  color: var(--panel);
  transform: translateY(-3px);
}

.program-swap:has(.program-card:not(.featured):hover) .program-card.featured,
.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured {
  background: rgba(247, 248, 242, 0.9);
  color: var(--ink);
}

.program-swap .program-card:not(.featured):hover,
.program-swap .program-card:not(.featured):focus-within {
  background: linear-gradient(180deg, var(--active-green-soft), var(--active-green));
  box-shadow: var(--shadow);
  color: var(--panel);
  transform: translateY(-3px);
}

.program-meta {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 820;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.featured .program-meta {
  color: var(--sun);
}

#services .grid-3:has(.program-card:not(.featured):hover) .program-card.featured .program-meta,
#services .grid-3:has(.program-card:not(.featured):focus-within) .program-card.featured .program-meta,
#services .program-card:not(.featured):hover .program-meta,
#services .program-card:not(.featured):focus-within .program-meta {
  color: var(--sun);
}

.program-swap:has(.program-card:not(.featured):hover) .program-card.featured .program-meta,
.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured .program-meta,
.program-swap .program-card:not(.featured):hover .program-meta,
.program-swap .program-card:not(.featured):focus-within .program-meta {
  color: var(--sun);
}

.program-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 520;
}

.featured p,
.featured li {
  color: rgba(247, 248, 242, 0.88);
}

#services .grid-3:has(.program-card:not(.featured):hover) .program-card.featured p,
#services .grid-3:has(.program-card:not(.featured):focus-within) .program-card.featured p {
  color: var(--muted);
}

.program-swap:has(.program-card:not(.featured):hover) .program-card.featured p,
.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured p,
.program-swap:has(.program-card:not(.featured):hover) .program-card.featured li,
.program-swap:has(.program-card:not(.featured):focus-within) .program-card.featured li {
  color: var(--muted);
}

#services .program-card:not(.featured):hover p,
#services .program-card:not(.featured):focus-within p,
#services .program-card:not(.featured):hover li,
#services .program-card:not(.featured):focus-within li {
  color: rgba(247, 248, 242, 0.88);
}

.program-swap .program-card:not(.featured):hover p,
.program-swap .program-card:not(.featured):focus-within p,
.program-swap .program-card:not(.featured):hover li,
.program-swap .program-card:not(.featured):focus-within li {
  color: rgba(247, 248, 242, 0.88);
}

ul.bullet-list,
.program-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

ul.bullet-list li,
.program-card li {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

ul.bullet-list li + li,
.program-card li + li {
  margin-top: 8px;
}

ul.bullet-list li::before,
.program-card li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.72em;
  width: 7px;
}

.featured li::before {
  background: #ad807b;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list > span {
  background: rgba(247, 248, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 9px 13px;
}

.pill-list .tooltip-term {
  border-bottom: 0;
  cursor: help;
}

.pill-list .tooltip-term:focus-visible {
  outline: 3px solid rgba(242, 211, 107, 0.82);
  outline-offset: 3px;
}

.pill-list .tooltip-bubble {
  display: none;
  left: var(--tooltip-left, 50%);
}

.pill-list .tooltip-bubble::after {
  left: var(--tooltip-arrow, 50%);
}

.pill-list .tooltip-term:hover .tooltip-bubble,
.pill-list .tooltip-term:focus-visible .tooltip-bubble {
  display: block;
}

.pill-list:has(.tooltip-term:focus-visible) .tooltip-term:not(:focus-visible) .tooltip-bubble {
  display: none;
}

.evidence-points {
  display: grid;
  gap: 14px;
}

.evidence-points div {
  border: 1px solid rgba(247, 248, 242, 0.18);
  border-radius: 8px;
  padding: 22px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.evidence-points div:hover,
.evidence-points div:focus-within {
  background: rgba(247, 248, 242, 0.08);
  border-color: rgba(242, 211, 107, 0.62);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.evidence-points strong {
  display: block;
  margin-bottom: 8px;
}

.review-markup {
  color: var(--review-magenta) !important;
  font-weight: 820;
}

.mini-stat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.mini-stat-card {
  background: rgba(247, 248, 242, 0.82);
  border: 1px solid rgba(71, 114, 99, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mini-stat-card strong {
  color: var(--leaf-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  font-weight: 520;
  line-height: 0.95;
}

.stat-figure-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-stat-card .stat-figure-row strong {
  white-space: nowrap;
}

.adult-icon-sequence {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(10, 22px);
}

.adult-icon {
  background: rgba(173, 128, 123, 0.76);
  display: block;
  height: 30px;
  mask-image: url("assets/icon-adults-info.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0;
  transform: translateY(7px) scale(0.78);
  -webkit-mask-image: url("assets/icon-adults-info.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 22px;
}

.adult-icon.is-active {
  background: var(--active-green);
}

.mini-stat-grid.is-visible .adult-icon {
  animation: stat-icon-enter 380ms ease-out forwards;
}

.mini-stat-grid.is-visible .adult-icon:nth-child(1) { animation-delay: 0ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(2) { animation-delay: 180ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(3) { animation-delay: 270ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(4) { animation-delay: 360ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(5) { animation-delay: 450ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(6) { animation-delay: 540ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(7) { animation-delay: 630ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(8) { animation-delay: 720ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(9) { animation-delay: 810ms; }
.mini-stat-grid.is-visible .adult-icon:nth-child(10) { animation-delay: 900ms; }

@keyframes stat-icon-enter {
  from {
    opacity: 0;
    transform: translateY(7px) scale(0.78);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mini-stat-card span {
  color: var(--muted);
  line-height: 1.5;
}

.mini-stat-card a {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mini-stat-card a:hover,
.mini-stat-card a:focus-visible {
  color: var(--cocoa);
}

.mini-stat-takeaway {
  border-top: 1px solid rgba(71, 114, 99, 0.18);
  color: var(--ink);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.45;
  margin: 6px 0 0;
  padding-top: 14px;
}

.meal-example {
  width: 100%;
}

.meal-example-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-inline: auto;
  max-width: 1120px;
}

.meal-example-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-width: 0;
}

.meal-example-intro h2 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.meal-example-intro p:last-child {
  margin-bottom: 0;
}

.meal-example-layout .meal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.meal-example-layout .meal-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0;
}

.meal-example-layout .macro-grid {
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.sample-meal-photo {
  flex: 0 0 235px;
  height: 235px;
  margin: 0 auto;
  position: relative;
  width: 294px;
}

.sample-meal-image {
  display: block;
  height: 294px;
  left: 50%;
  margin: 0;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 235px;
}

@media (max-width: 760px) {
  .meal-example-layout {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    max-width: 540px;
  }

  .meal-example-layout .macro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .meal-example-layout .macro-grid > div {
    padding: 14px 6px;
  }
}

@media (max-width: 360px) {
  .section.meal-example {
    padding-inline: 5px;
  }
}

.meal-card {
  background: rgba(247, 248, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.meal-tag {
  color: var(--cocoa);
  font-size: 0.78rem;
  font-weight: 820;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.meal-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 520;
  line-height: 1.06;
}

.macro-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 28px 0;
}

.macro-estimate-label {
  font-size: 0.85rem;
  margin: 20px 0 0;
}

.macro-verification {
  color: var(--review-magenta);
  cursor: help;
  display: inline-block;
  font-weight: 820;
  position: relative;
}

.macro-verification-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: none;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 180px;
  z-index: 3;
}

.macro-verification:hover .macro-verification-note,
.macro-verification:focus .macro-verification-note {
  display: block;
}

.macro-grid div {
  background: var(--leaf-soft);
  border: 1px solid rgba(71, 114, 99, 0.16);
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
}

.macro-grid strong {
  color: var(--leaf-dark);
  display: block;
  font-size: 1.45rem;
}

.macro-grid span,
.macro-note {
  color: var(--muted);
  line-height: 1.55;
}

.macro-grid span {
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.macro-note {
  border-top: 1px solid var(--line);
  margin: 0;
  padding-top: 18px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  background: rgba(247, 248, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
  padding: 24px 24px 24px 74px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.step::before {
  align-items: center;
  background: var(--leaf-dark);
  border-radius: 999px;
  color: #f7f8f2;
  content: counter(step);
  display: flex;
  font-weight: 820;
  height: 34px;
  justify-content: center;
  left: 24px;
  position: absolute;
  top: 24px;
  width: 34px;
}

.form-card {
  display: grid;
  gap: 18px;
}

label {
  color: #3f514b;
  display: grid;
  font-size: 0.88rem;
  font-weight: 760;
  gap: 8px;
}

.choice-field {
  border: 1px solid rgba(71, 114, 99, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.choice-field legend {
  color: #3f514b;
  font-size: 0.88rem;
  font-weight: 760;
  padding: 0 6px;
}

.choice-field label {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 1rem;
  font-weight: 520;
  gap: 10px;
}

.choice-field input {
  accent-color: var(--leaf-dark);
  flex: 0 0 auto;
  min-height: auto;
  padding: 0;
  width: auto;
}

input,
select,
textarea {
  background: #f7f8f2;
  border: 1px solid rgba(71, 114, 99, 0.2);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf-dark);
  outline: 3px solid rgba(242, 211, 107, 0.72);
  outline-offset: 2px;
}

.form-status {
  color: var(--leaf-dark);
  font-weight: 720;
  margin: 0;
  min-height: 24px;
}

.form-card:focus-within {
  border-color: rgba(47, 84, 74, 0.44);
  box-shadow: var(--shadow);
}

.hubspot-form {
  background: rgba(247, 248, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
  --hsf-global__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-global__font-size: 16px;
  --hsf-global__color: #292937;
  --hsf-global-error__color: #8d3d46;
  --hsf-row__horizontal-spacing: 16px;
  --hsf-row__vertical-spacing: 16px;
  --hsf-module__vertical-spacing: 16px;
  --hsf-background__background-color: transparent;
  --hsf-background__border-style: none;
  --hsf-background__border-width: 0;
  --hsf-background__border-radius: 0;
  --hsf-background__padding: 0;
  --hsf-field-label__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-label__font-size: 14px;
  --hsf-field-label__color: #2f544a;
  --hsf-field-label-requiredindicator__color: #8d3d46;
  --hsf-field-description__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-description__color: #3d4a43;
  --hsf-field-footer__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-footer__color: #3d4a43;
  --hsf-field-input__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-input__color: #292937;
  --hsf-field-input__background-color: #f7f8f2;
  --hsf-field-input__placeholder-color: #6c766f;
  --hsf-field-input__border-color: rgba(71, 114, 99, 0.2);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 8px;
  --hsf-field-input__padding: 12px 14px;
  --hsf-field-textarea__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-textarea__color: #292937;
  --hsf-field-textarea__background-color: #f7f8f2;
  --hsf-field-textarea__placeholder-color: #6c766f;
  --hsf-field-textarea__border-color: rgba(71, 114, 99, 0.2);
  --hsf-field-textarea__border-width: 1px;
  --hsf-field-textarea__border-style: solid;
  --hsf-field-textarea__border-radius: 8px;
  --hsf-field-textarea__padding: 12px 14px;
  --hsf-button__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-button__font-size: 0.94rem;
  --hsf-button__color: #f7f8f2;
  --hsf-button__background-color: #2f544a;
  --hsf-button__border-radius: 999px;
  --hsf-button__padding: 14px 24px;
  --hsf-button__box-shadow: 0 14px 28px rgba(47, 84, 74, 0.22);
  --hsf-infoalert__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-infoalert__color: #2f544a;
}

.hubspot-form .hs-form-frame {
  display: block;
  min-height: 180px;
  width: 100%;
}

.hubspot-form .hs-form-frame iframe {
  border: 0;
  display: block;
  max-width: 100%;
  width: 100% !important;
}

.hubspot-form-on-dark {
  margin-top: 28px;
  text-align: left;
}

.newsletter {
  background:
    linear-gradient(100deg, rgba(111, 78, 93, 0.78), rgba(23, 58, 51, 0.34)),
    var(--wood-grain-dark),
    var(--cocoa);
  background-size: auto, var(--wood-grain-dark-size), auto;
  color: #f7f8f2;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.7fr);
}

.newsletter p {
  color: var(--panel);
}

.newsletter .form-card {
  align-self: center;
  background:
    linear-gradient(135deg, rgba(247, 248, 242, 0.97), rgba(236, 239, 232, 0.91)),
    var(--wood-grain);
  background-size: auto, var(--wood-grain-size);
  border-color: rgba(247, 248, 242, 0.34);
  box-shadow: 0 22px 54px rgba(23, 23, 34, 0.2);
  gap: 14px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-left: auto;
  max-width: 560px;
  padding: clamp(20px, 3vw, 30px);
}

.newsletter .hubspot-form {
  display: block;
}

.newsletter .form-card label {
  color: var(--leaf-dark);
  gap: 10px;
  grid-column: 1;
}

.newsletter input {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(71, 114, 99, 0.26);
  min-height: 52px;
}

.newsletter .form-card .button {
  align-self: end;
  grid-column: 2;
  min-width: 230px;
  padding-inline: 26px;
}

.newsletter .form-status {
  color: var(--leaf-dark);
  grid-column: 1 / -1;
}

.newsletter .form-card:focus-within {
  border-color: rgba(242, 211, 107, 0.6);
}

.homepage-newsletter {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.homepage-newsletter > div,
.homepage-newsletter .form-card {
  margin-inline: auto;
  width: 100%;
}

.homepage-newsletter .form-card {
  grid-template-columns: 1fr;
  margin-top: 8px;
  max-width: 760px;
}

.homepage-newsletter .form-card label,
.homepage-newsletter .form-card .button {
  grid-column: 1;
}

.homepage-newsletter .form-card .button {
  width: 100%;
}

.newsletter.newsletter-compact {
  align-items: center;
  gap: 20px;
  grid-template-columns: minmax(0, 1120px);
  padding-block: 32px;
}

.newsletter-compact .eyebrow {
  margin: 0 0 8px;
}

.newsletter-compact h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: none;
}

.newsletter-compact p:last-child {
  font-size: 0.95rem;
  margin: 0;
  max-width: none;
}

.newsletter.newsletter-compact .form-card {
  background: none;
  border: 0;
  box-shadow: none;
  margin: 0;
  max-width: 560px;
  min-width: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .newsletter.newsletter-compact {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 28px;
  }

  .newsletter-compact .form-card {
    max-width: none;
  }
}

.site-footer {
  background: #292937;
  color: #f7f8f2;
  padding: 40px clamp(18px, 5vw, 64px);
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.1fr 0.9fr;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 248, 242, 0.72);
}

.yelp-badge {
  align-items: center;
  background: rgba(247, 248, 242, 0.04);
  border: 1px solid rgba(247, 248, 242, 0.22);
  border-radius: 8px;
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  padding: 9px 11px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: max-content;
}

.yelp-badge:hover,
.yelp-badge:focus-visible {
  background: rgba(211, 35, 35, 0.11);
  border-color: rgba(211, 35, 35, 0.72);
  transform: translateY(-2px);
}

.site-footer .yelp-badge {
  color: #f7f8f2;
}

.yelp-badge-mark {
  display: block;
  flex: 0 0 30px;
  height: 34px;
  object-fit: contain;
  width: 30px;
}

.yelp-badge-copy {
  display: grid;
  gap: 2px;
}

.yelp-badge-copy > span:first-child {
  color: #f7f8f2;
  font-size: 0.86rem;
  font-weight: 820;
  line-height: 1.15;
}

.yelp-badge-note {
  color: rgba(247, 248, 242, 0.68);
  font-size: 0.72rem;
  line-height: 1.15;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.disclaimer {
  border-top: 1px solid rgba(247, 248, 242, 0.18);
  color: rgba(247, 248, 242, 0.68);
  font-style: italic;
  margin: 28px 0 0;
  padding-top: 20px;
}

@media (min-width: 1061px) and (max-width: 1240px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .site-nav {
    background: rgba(247, 248, 242, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    inset: 75px 18px auto auto;
    padding: 28px;
    position: fixed;
    width: min(340px, 88vw);
  }

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

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade,
  .hero.compact .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 248, 242, 0.99) 0%, rgba(247, 248, 242, 0.92) 48%, rgba(247, 248, 242, 0.6) 100%),
      linear-gradient(0deg, rgba(247, 248, 242, 0.3), rgba(41, 41, 55, 0.08));
  }

  .intro,
  .split,
  .grid-2,
  .grid-3,
  .questionnaire-layout,
  .meal-example,
  .newsletter,
  .cta-with-image,
  .about-standard-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait-split {
    gap: 28px;
  }

  .food-feature {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .food-feature-meal-secondary {
    display: none;
  }

  .recurring-service-content {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .recurring-service-content .lead {
    display: block;
  }

  .food-feature-image {
    aspect-ratio: 16 / 9;
    max-width: 620px;
  }

  .portrait-split .portrait-frame {
    max-width: 340px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading-icon-scale {
    display: flex;
    gap: 20px;
  }

  .section-heading-icon-scale .section-icon {
    height: clamp(88px, 20vw, 140px);
    mask-size: contain;
    width: clamp(88px, 20vw, 140px);
  }

  .about-final-layout {
    grid-template-columns: 1fr;
  }

  .about-final-plate {
    margin-inline: auto;
  }

  .method-list article {
    grid-template-columns: 48px 1fr;
  }

  .method-list p {
    grid-column: 2;
  }

  .newsletter .form-card {
    grid-template-columns: 1fr;
    margin-left: 0;
    max-width: none;
  }

  .newsletter .form-card .button {
    grid-column: 1;
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 1061px) {
  .one-line-desktop {
    font-size: clamp(2.6rem, 3.6vw, 3.65rem);
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    max-width: calc(100vw - 88px);
  }

  .brand-logo {
    height: 38px;
    width: min(210px, 54vw);
  }

  .hero {
    min-height: 90vh;
    padding-top: 106px;
  }

  .hero.compact {
    min-height: auto;
  }

  .contact-chooser-hero.hero.compact {
    min-height: 62vh;
    padding-block: 112px 64px;
  }

  .contact-chooser-hero .hero-content {
    margin-inline: auto;
    width: min(100%, calc(100vw - 48px), 420px);
  }

  .hero-shade,
  .hero.compact .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 248, 242, 0.99) 0%, rgba(247, 248, 242, 0.94) 43%, rgba(247, 248, 242, 0.82) 100%),
      linear-gradient(0deg, rgba(247, 248, 242, 0.52), rgba(247, 248, 242, 0.18));
  }

  .corporate-hero .hero-image {
    object-position: 62% center;
  }

  .events-hero .hero-image {
    object-position: 54% center;
  }

  .counseling-hero .hero-image {
    object-position: 67% center;
    opacity: 0.72;
  }

  .about-hero .hero-image {
    height: 100%;
    inset: 0;
    object-position: center 30%;
    opacity: 0.64;
    width: 100%;
  }

  .hero-actions,
  .button-row,
  .button {
    width: 100%;
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .hero-content,
  .hero-copy,
  h1 {
    max-width: 100%;
  }

  .hero-content {
    width: calc(100vw - 48px);
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
    max-width: calc(100vw - 48px);
    white-space: normal;
  }

  h1,
  .compact h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.55rem);
    line-height: 1.06;
    margin-bottom: 24px;
    max-width: 11.5ch;
  }

  .hero:not(.compact) #hero-title {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero-copy,
  .lead {
    font-size: 0.96rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .portrait-split {
    gap: 22px;
  }

  .portrait-split .portrait-frame {
    max-width: min(320px, 100%);
  }

  .food-feature-image {
    aspect-ratio: 4 / 3;
  }

  .intro-item,
  .meal-card,
  .program-card,
  .card,
  .form-card {
    min-width: 0;
    padding: 24px 20px;
    width: 100%;
  }

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

  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .adult-icon-sequence {
    gap: 1px;
    grid-template-columns: repeat(10, 19px);
  }

  .adult-icon {
    height: 26px;
    width: 19px;
  }

  .program-card {
    min-height: auto;
  }

  .package-catering-card > :not(.package-catering-image) {
    max-width: none;
  }

  .package-catering-image {
    margin: 24px auto 0;
    position: static;
    width: min(190px, 58%);
  }

  .program-meta {
    margin-bottom: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adult-icon {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
