:root {
  --oat: #F3ECDC;
  --oat-panel: #EAE1CB;
  --forest: #3E5333;
  --forest-dark: #2E3E26;
  --forest-light: #587249;
  --mustard: #C98A2B;
  --mustard-light: #E0A94A;
  --espresso: #2B2117;
  --muted: #8C7B5E;
  --line: #D8CBAA;
  --white: #FFFBF3;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --oat: #1B1712;
    --oat-panel: #241F17;
    --forest: #7A9A68;
    --forest-dark: #5E7C4E;
    --forest-light: #8FAE7C;
    --mustard: #E0A94A;
    --mustard-light: #EFC57C;
    --espresso: #F3ECDC;
    --muted: #B4A583;
    --line: #3A3225;
    --white: #241F17;
  }
}
:root[data-theme="dark"] {
  --oat: #1B1712;
  --oat-panel: #241F17;
  --forest: #7A9A68;
  --forest-dark: #5E7C4E;
  --forest-light: #8FAE7C;
  --mustard: #E0A94A;
  --mustard-light: #EFC57C;
  --espresso: #F3ECDC;
  --muted: #B4A583;
  --line: #3A3225;
  --white: #241F17;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--oat);
  color: var(--espresso);
  font-family: 'Work Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 3px;
}
img { max-width: 100%; }

.shell { width: 100%; }
.inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}
.inner.wide { max-width: 1560px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--oat) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 1;
}
.nav-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.nav-brand-text .primary {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-brand-text .secondary {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.home-btn { padding: 0.55rem 0.7rem; font-size: 1rem; }
@media (max-width: 480px) {
  .nav-brand-text .secondary { display: none; }
  .nav-actions { gap: 0.4rem; }
  #newsletter-btn .btn-text { display: none; }
  #newsletter-btn { padding: 0.55rem 0.7rem; }
}
@media (max-width: 400px) {
  .nav-brand-text { display: none; }
}
.nav-link {
  display: none;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
@media (min-width: 640px) { .nav-link { display: inline-block; } }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-ghost { background: transparent; color: var(--espresso); border: 1px solid var(--line); }
.btn-mustard { background: var(--mustard); color: var(--espresso); }
.btn-mustard:hover { background: var(--mustard-light); }
.btn-lg { padding: 0.8rem 1.4rem; font-size: 0.92rem; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 15% -10%, color-mix(in srgb, var(--mustard) 30%, transparent), transparent),
    radial-gradient(900px 500px at 100% 0%, color-mix(in srgb, var(--forest-light) 35%, transparent), transparent),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--white) 14%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.hero .inner {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .inner.split { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--white) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 25%, transparent);
  padding: 0.35rem 0.8rem 0.35rem 0.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}
.hero-badge img { height: 20px; width: auto; border-radius: 50%; display: block; background: var(--white); }
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--mustard-light);
}
.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  max-width: 46ch;
  opacity: 0.92;
  margin: 0 0 1.9rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.6rem; }
.hero .by {
  font-size: 0.8rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
}
.hero-ghost { color: var(--white); border-color: color-mix(in srgb, var(--white) 35%, transparent); }

.hero-card {
  background: color-mix(in srgb, var(--white) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 22%, transparent);
  border-radius: 20px;
  padding: 1.6rem;
  backdrop-filter: blur(6px);
  min-width: 0;
}
.hero-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1.1rem; }
.hero-stat { text-align: left; }
.hero-stat b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  color: var(--mustard-light);
}
.hero-stat span { font-size: 0.74rem; opacity: 0.8; }
.hero-card-note {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.85;
  padding-top: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--white) 20%, transparent);
}

/* Section heads */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
}
.section-head {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 2.6rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 0 0 0.6rem;
}
.section-head .sub {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.55;
}

/* Category blocks within a menu section */
.category-block { margin-bottom: 2.6rem; }
.category-block:last-child { margin-bottom: 0; }
.category-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--line);
}
.category-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}
.category-head .count {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Program cards (services, no price/order) */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--oat-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px color-mix(in srgb, var(--espresso) 45%, transparent);
  border-color: var(--mustard);
}
.program-card .glyph {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}
.program-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.program-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}
.program-card a.consult-link {
  margin-top: 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.program-card a.consult-link:hover { text-decoration: underline; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.team-card {
  background: var(--oat-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  text-align: center;
}
.team-card .avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 auto 0.9rem;
  border: 2px solid var(--mustard);
}
.team-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.15rem;
}
.team-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.team-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

/* Flagship project cards */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}
.flagship-card {
  background: var(--espresso);
  color: var(--oat);
  border-radius: 18px;
  padding: 1.6rem;
}
.flagship-card .glyph { font-size: 1.8rem; margin-bottom: 0.8rem; }
.flagship-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: var(--mustard-light);
}
.flagship-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0.9;
}

/* Values row */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.value-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  background: color-mix(in srgb, var(--forest) 12%, var(--oat));
  border: 1px solid color-mix(in srgb, var(--forest) 30%, transparent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* Pillars row */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.pillar {
  text-align: center;
  padding: 1.1rem 0.6rem;
  background: var(--oat-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.pillar .glyph { font-size: 1.6rem; margin-bottom: 0.5rem; }
.pillar span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--espresso);
}

/* Contact / clinic info card */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.contact-block b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--mustard-light);
}
.contact-block p, .contact-block a {
  margin: 0 0 0.3rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: inherit;
  text-decoration: none;
  display: block;
}
.contact-block a:hover { text-decoration: underline; }

/* Menu grid (product items with price + order) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.item {
  display: flex;
  flex-direction: column;
  background: var(--oat-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px color-mix(in srgb, var(--espresso) 45%, transparent);
  border-color: var(--mustard);
}
.item-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.item-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-photo .fallback-emoji {
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}
.item-body { padding: 1.1rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.item-info { flex: 1; }
.item-info h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}
.item-info p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--forest);
  background: color-mix(in srgb, var(--forest) 12%, var(--oat));
  border: 1px solid color-mix(in srgb, var(--forest) 30%, transparent);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}
.item-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--mustard);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  flex: 1;
  min-height: 40px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.order-btn:hover { background: var(--forest-dark); transform: translateY(-1px); }
.order-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.9-2-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.3-.5-2.4-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.1.2-.3.3-.4.1-.2 0-.4 0-.5C10.4 9 9.9 7.6 9.7 7c-.2-.5-.4-.4-.5-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2s1 2.6 1.1 2.7c.1.2 2 3 4.8 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3.1 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.3.9.9-3.2-.2-.3c-.9-1.4-1.4-3-1.4-4.7 0-4.6 3.8-8.4 8.4-8.4 4.6 0 8.4 3.8 8.4 8.4.1 4.7-3.7 8.7-8.1 8.7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.9-2-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.3-.5-2.4-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.1.2-.3.3-.4.1-.2 0-.4 0-.5C10.4 9 9.9 7.6 9.7 7c-.2-.5-.4-.4-.5-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2s1 2.6 1.1 2.7c.1.2 2 3 4.8 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3.1 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.3.9.9-3.2-.2-.3c-.9-1.4-1.4-3-1.4-4.7 0-4.6 3.8-8.4 8.4-8.4 4.6 0 8.4 3.8 8.4 8.4.1 4.7-3.7 8.7-8.1 8.7z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 360px) {
  .item-action { flex-wrap: wrap; }
  .order-btn { flex-basis: 100%; }
}

/* Brand / product hub cards */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--oat-panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  flex: 1 1 380px;
  max-width: 460px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.brand-card.live:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px color-mix(in srgb, var(--espresso) 45%, transparent);
  border-color: var(--mustard);
}
.brand-card-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.brand-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-card-photo .glyph { font-size: 2.6rem; position: relative; z-index: 1; }
.brand-card-photo .logo-panel {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.4rem;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.4);
}
.brand-card-photo .logo-panel img {
  position: static;
  width: auto;
  height: auto;
  max-width: min(260px, 60vw);
  max-height: 150px;
  object-fit: contain;
  display: block;
}
.brand-card-photo .logo-panel.square img { max-height: 170px; max-width: 170px; }

/* Logos in footers and inline banners */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.footer-logos img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  display: block;
}
.inline-logo {
  height: 2.2em;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 3px 6px;
  flex-shrink: 0;
}
.brand-card.soon .brand-card-photo {
  background: repeating-linear-gradient(135deg, var(--oat-panel), var(--oat-panel) 10px, var(--oat) 10px, var(--oat) 20px);
  border-bottom: 1px dashed var(--line);
}
.brand-card-body { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.brand-card-body .status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.brand-card.live .status { color: var(--forest); }
.brand-card.soon .status { color: var(--muted); }
.brand-card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.brand-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.brand-card-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.brand-card.soon { opacity: 0.75; cursor: default; }
.brand-card.soon .brand-card-cta { color: var(--muted); }

/* "Pop" / billboard treatment for Hearty Meals */
.brand-card.food .brand-card-photo {
  background: linear-gradient(135deg, #F0A93E 0%, #D9531E 65%, #B8391A 100%);
}
.brand-card.food:hover {
  border-color: #D9531E;
  box-shadow: 0 20px 40px -18px color-mix(in srgb, #D9531E 55%, transparent);
}
.brand-card.food .brand-card-cta { color: #D9531E; }
.hot-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  background: #D9531E;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px -2px rgba(240, 122, 26, 0.6);
  animation: hot-badge-pulse 1.8s ease-in-out infinite;
}
@keyframes hot-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes cta-ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 122, 26, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(240, 122, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 122, 26, 0); }
}
.pulse-cta { animation: cta-ring-pulse 2s ease-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .hot-badge, .pulse-cta { animation: none; }
}

/* Hand-drawn annotation arrows — "programs" → CTA (down), "Hearty Meals" → hero card (right) */
#hero-annotations {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#hero-annotations.ready { opacity: 1; }
.annotation-arrow {
  fill: none;
  stroke: var(--mustard);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}
.annotation-arrowhead-fill {
  fill: var(--mustard);
  stroke: none;
  opacity: 0.82;
}
@media (max-width: 1023px) {
  #hero-annotations { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  #hero-annotations { transition: none; }
}

/* Strip */
.strip {
  background: var(--espresso);
  color: var(--oat);
}
.strip .inner {
  padding: 2.4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.strip-item b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--mustard-light);
}
.strip-item span { font-size: 0.82rem; opacity: 0.75; }

/* Footer */
.footer {
  padding: 3rem 0 4rem;
  text-align: center;
}
.footer p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 auto;
}
.footer .brand {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

/* AI Assistant widget */
#ai-launcher {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px -10px color-mix(in srgb, var(--espresso) 55%, transparent);
  transition: transform 0.2s ease;
}
#ai-launcher:hover { transform: scale(1.06); }
#ai-launcher .ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mustard);
  border: 2px solid var(--oat);
}

#ai-panel {
  position: fixed;
  right: clamp(0.75rem, 4vw, 2rem);
  bottom: clamp(5.2rem, 12vw, 6.5rem);
  z-index: 60;
  width: min(360px, calc(100vw - 1.5rem));
  height: min(520px, calc(100vh - 9rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px color-mix(in srgb, var(--espresso) 55%, transparent);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
#ai-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#ai-panel-head {
  background: var(--forest);
  color: var(--white);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
#ai-panel-head .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 18%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--mustard-light);
  flex-shrink: 0;
}
#ai-panel-head .who b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
}
#ai-panel-head .who span {
  font-size: 0.72rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
#ai-panel-head .who span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6FCF7A;
  display: inline-block;
}
#ai-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white);
  opacity: 0.8;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem;
}
#ai-close:hover { opacity: 1; }

#ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--oat);
}
.msg {
  max-width: 84%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.87rem;
  line-height: 1.45;
}
.msg.bot {
  background: var(--oat-panel);
  border: 1px solid var(--line);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg.user {
  background: var(--forest);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg.bot a { color: var(--forest); text-decoration: underline; font-weight: 600; }
.msg.typing { display: flex; gap: 4px; align-items: center; padding: 0.75rem 0.9rem; }
.msg.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: bounce 1.2s infinite;
}
.msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

#ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.8rem;
  background: var(--oat);
}
.chip {
  font-size: 0.76rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--espresso);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.chip:hover { border-color: var(--mustard); color: var(--mustard); }

#ai-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
#ai-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.87rem;
  background: var(--oat);
  color: var(--espresso);
}
#ai-input:focus { outline: 2px solid var(--mustard); outline-offset: 1px; }
#ai-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
#ai-send:hover { background: var(--forest-dark); }

@media (max-width: 400px) {
  .hero .inner { padding-top: 2.6rem; padding-bottom: 2.6rem; }
}

/* Food marquee — the assortment passing through, ticker-style */
.food-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0.9rem 0 1.1rem;
  padding: 0.6rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.food-marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee-pass 16s linear infinite;
}
.food-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.food-marquee-item .emoji { font-size: 1.5rem; }
@keyframes marquee-pass {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .food-marquee-track { animation: none; }
}

/* Bigger, bolder heading for the food showcase card */
.hero-card h3.food-title {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

/* Live order showcase — one real item at a time, cycling automatically */
.live-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFD9A8;
  margin-bottom: 0.7rem;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  animation: live-dot-ping 1.6s ease-out infinite;
}
@keyframes live-dot-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
#live-showcase {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.1rem;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#live-showcase.fade { opacity: 0; transform: translateY(4px); }
#live-showcase .live-emoji { font-size: 2rem; flex-shrink: 0; }
#live-showcase .live-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
#live-showcase .live-info b { font-size: 0.95rem; }
#live-showcase .live-info span { font-size: 0.85rem; opacity: 0.85; font-weight: 700; color: #FFD9A8; }
#live-showcase .order-btn { flex: 0 0 auto; padding: 0.55rem 0.85rem; font-size: 0.78rem; }
@media (max-width: 480px) {
  #live-showcase { flex-wrap: wrap; }
  #live-showcase .order-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

/* Newsletter modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 16, 10, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  width: min(400px, 100%);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
  position: relative;
  transform: translateY(10px);
  transition: transform 0.18s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0.3rem;
}
.modal-box h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.modal-box p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.2rem;
}
.modal-box form { display: flex; flex-direction: column; gap: 0.7rem; }
.modal-box input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--oat);
  color: var(--espresso);
}
.modal-box input:focus { outline: 2px solid var(--mustard); outline-offset: 1px; }
.modal-box button[type="submit"] {
  border: none;
  cursor: pointer;
  margin-top: 0.3rem;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

/* Hearty Meals: warm, appetite-forward hero treatment */
.page-hearty .hero {
  background:
    radial-gradient(1100px 480px at 15% -10%, rgba(255, 200, 120, 0.35), transparent),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 140, 70, 0.35), transparent),
    linear-gradient(180deg, #D9531E 0%, #8C371C 100%);
}
.page-hearty .hero-badge { background: rgba(255, 255, 255, 0.14); }

/* ---------- Brand palettes (blended from each logo) ---------- */
/* Eden Maranatha (hub + lifestyle medicine): blue dominant, gold accent, white ground */
body.theme-eden {
  --oat: #F5F9FD;
  --oat-panel: #E7EFF8;
  --forest: #1C5C99;
  --forest-dark: #113E6B;
  --forest-light: #3F86C6;
  --mustard: #D4A12B;
  --mustard-light: #EBC25F;
  --espresso: #0F2740;
  --muted: #5C7391;
  --line: #CBDAEB;
  --white: #FFFFFF;
}
/* Hearty Meals: green dominant, fiery orange accent (also scoped to Hearty cards shown on Eden pages) */
body.theme-hearty,
#hero-hearty-card,
.brand-card.food,
.hearty-scope {
  --forest: #1E8A3C;
  --forest-dark: #126A2B;
  --forest-light: #3DB35C;
  --mustard: #F07A1A;
  --mustard-light: #FFA24A;
}
body.theme-hearty {
  --oat: #F4F9EE;
  --oat-panel: #E4EFD9;
  --espresso: #17301C;
  --muted: #5E7A59;
  --line: #CFE0BF;
  --white: #FBFFF7;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body.theme-eden {
    --oat: #0D1826;
    --oat-panel: #132236;
    --forest: #5B9BD5;
    --forest-dark: #3E7DB8;
    --forest-light: #7FB3E3;
    --mustard: #E3B347;
    --mustard-light: #F0CB78;
    --espresso: #EAF1F9;
    --muted: #9BB0C8;
    --line: #22344B;
    --white: #132236;
  }
  :root:not([data-theme="light"]) body.theme-hearty,
  :root:not([data-theme="light"]) #hero-hearty-card,
  :root:not([data-theme="light"]) .brand-card.food,
  :root:not([data-theme="light"]) .hearty-scope {
    --forest: #4CC26A;
    --forest-dark: #2FA24E;
    --forest-light: #6FD68A;
    --mustard: #FF9440;
    --mustard-light: #FFB36E;
  }
  :root:not([data-theme="light"]) body.theme-hearty {
    --oat: #0F1A11;
    --oat-panel: #162318;
    --espresso: #EAF5E4;
    --muted: #A5BC9F;
    --line: #253A28;
    --white: #162318;
  }
}
:root[data-theme="dark"] body.theme-eden {
  --oat: #0D1826;
  --oat-panel: #132236;
  --forest: #5B9BD5;
  --forest-dark: #3E7DB8;
  --forest-light: #7FB3E3;
  --mustard: #E3B347;
  --mustard-light: #F0CB78;
  --espresso: #EAF1F9;
  --muted: #9BB0C8;
  --line: #22344B;
  --white: #132236;
}
:root[data-theme="dark"] body.theme-hearty,
:root[data-theme="dark"] #hero-hearty-card,
:root[data-theme="dark"] .brand-card.food,
:root[data-theme="dark"] .hearty-scope {
  --forest: #4CC26A;
  --forest-dark: #2FA24E;
  --forest-light: #6FD68A;
  --mustard: #FF9440;
  --mustard-light: #FFB36E;
}
:root[data-theme="dark"] body.theme-hearty {
  --oat: #0F1A11;
  --oat-panel: #162318;
  --espresso: #EAF5E4;
  --muted: #A5BC9F;
  --line: #253A28;
  --white: #162318;
}

/* Hearty Meals hero + hub card: green-dominant, with a fiery orange glow */
.page-hearty .hero {
  background:
    radial-gradient(1000px 460px at 100% 0%, rgba(240, 122, 26, 0.38), transparent),
    radial-gradient(1100px 480px at 10% -10%, rgba(120, 220, 130, 0.30), transparent),
    linear-gradient(180deg, #1E8A3C 0%, #0F5A26 100%);
}
.brand-card.food .brand-card-photo {
  background: linear-gradient(135deg, #3DB35C 0%, #1E8A3C 60%, #126A2B 100%);
}
.brand-card.food:hover {
  border-color: #F07A1A;
  box-shadow: 0 20px 40px -18px color-mix(in srgb, #F07A1A 55%, transparent);
}
.brand-card.food .brand-card-cta { color: #F07A1A; }
.hot-badge { background: #F07A1A; box-shadow: 0 4px 16px -2px rgba(240, 122, 26, 0.6); }

/* Catalog dropdowns */
details.category-block > summary {
  list-style: none;
  cursor: pointer;
}
details.category-block > summary::-webkit-details-marker { display: none; }
details.category-block > summary.category-head {
  align-items: center;
  margin-bottom: 0;
  padding: 0.85rem 0.2rem;
  border-bottom: 2px solid var(--line);
}
details.category-block > summary.category-head::after {
  content: "";
  margin-left: auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
details.category-block[open] > summary.category-head::after { transform: rotate(-135deg); }
details.category-block > summary.category-head:hover h3 { color: var(--forest); }
details.category-block > summary:focus-visible { outline: 2px solid var(--mustard); outline-offset: 3px; border-radius: 6px; }
details.category-block[open] > summary.category-head { margin-bottom: 1.1rem; }
details.category-block { margin-bottom: 1rem; }
.category-sub { margin: 1.4rem 0 0.9rem; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 1.05rem; color: var(--forest); }
.category-note { color: var(--muted); font-size: 0.92rem; margin: 0.4rem 0 0; }

/* Six pillars infographic */
.pillars-figure { margin: 1.6rem auto 0; max-width: 1000px; }
.pillars-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--espresso) 45%, transparent);
}
.pillars-figure figcaption { margin-top: 0.7rem; text-align: center; color: var(--muted); font-size: 0.78rem; }

/* Team credentials list */
.team-creds {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0.8rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  text-align: left;
}
.team-creds li { position: relative; padding-left: 1.1rem; line-height: 1.4; }
.team-creds li::before { content: "✓"; position: absolute; left: 0; color: var(--mustard); font-weight: 700; }
