/* The Eden Clinic — shared design system */
:root {
  --eden-cream: #e3dace;
  --eden-mist: #c3c7cb;
  --eden-olive: #3f4437;
  --eden-ink: #1f221c;
  --eden-light: #faf8f4;
  --eden-accent: #8a7e6a;
  --eden-white: #ffffff;
  --eden-soft: rgba(63, 68, 55, 0.08);
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-display: "Covered By Your Grace", "Segoe Print", cursive;
  --nav-h: 4.5rem;
  --util-h: 2.15rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0.85rem;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--eden-ink);
  background: var(--eden-light);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--eden-olive); transition: color 0.25s var(--ease); }
a:hover { color: var(--eden-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.2;
  color: var(--eden-olive);
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

.whisper {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  color: var(--eden-accent);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-style: normal;
}
/* On photo heroes — light script so it doesn’t sink into imagery */
.hero .whisper,
.page-hero .whisper {
  color: rgba(250, 248, 244, 0.96);
  text-shadow: 0 2px 18px rgba(31, 34, 28, 0.45), 0 1px 2px rgba(31, 34, 28, 0.35);
}
.whisper--soft {
  color: #a89a84;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eden-accent);
  margin-bottom: 0.65rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Marks (Shape.svg minimal logo; tint via --mark-color) —— */
.eden-mark {
  display: block;
  flex-shrink: 0;
  background-color: var(--mark-color, #ffffff);
  mask-image: url("../images/shape.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/shape.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.eden-mark--nav { width: 42px; height: 37px; }
.eden-mark--footer { width: 52px; height: 46px; }
.eden-mark--hero {
  width: clamp(64px, 12vw, 88px);
  height: clamp(56px, 10.5vw, 78px);
  margin-bottom: 0.85rem;
}
.eden-mark--light { --mark-color: #faf8f4; }
.eden-mark--dark { --mark-color: #3f4437; }
.eden-mark--cream { --mark-color: #e3dace; }
.eden-mark--mist { --mark-color: #c3c7cb; }

/* —— Utility bar —— */
.util-bar {
  background: var(--eden-olive);
  color: var(--eden-cream);
  font-size: 0.78rem;
  font-weight: 500;
  min-height: var(--util-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem 1rem;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.util-bar a {
  color: var(--eden-cream);
  text-decoration: none;
  font-weight: 600;
}
.util-bar a:hover { color: #fff; }
.util-bar .sep { opacity: 0.35; margin: 0 0.45rem; }

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(63, 68, 55, 0.08);
  /* positioning context for mobile .nav-links */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--eden-olive);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active {
  background: var(--eden-soft);
  color: var(--eden-ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--eden-olive) !important;
  color: var(--eden-light) !important;
  font-weight: 600 !important;
  padding: 0.65rem 1.15rem !important;
  border-radius: 999px !important;
}
.nav-cta:hover {
  background: var(--eden-ink) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--eden-olive);
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 248, 244, 0.98);
    border-bottom: 1px solid rgba(63, 68, 55, 0.1);
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: 0 16px 32px rgba(31, 34, 28, 0.08);
    z-index: 9999;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
  }
  .nav-cta { text-align: center; margin-top: 0.35rem; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--eden-olive);
  color: var(--eden-light);
}
.btn-primary:hover { background: var(--eden-ink); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--eden-light);
  border-color: rgba(250, 248, 244, 0.55);
}
.btn-ghost:hover {
  background: rgba(250, 248, 244, 0.12);
  color: #fff;
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--eden-olive);
  border-color: rgba(63, 68, 55, 0.28);
}
.btn-outline:hover {
  background: var(--eden-olive);
  color: var(--eden-light);
  border-color: var(--eden-olive);
}
.btn-light {
  background: var(--eden-light);
  color: var(--eden-olive);
}
.btn-light:hover { background: #fff; color: var(--eden-ink); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--eden-light);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  animation: edenKen 28s var(--ease) infinite alternate;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(31, 34, 28, 0.28) 0%, rgba(31, 34, 28, 0.55) 48%, rgba(31, 34, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(31, 34, 28, 0.45) 0%, transparent 55%);
}

.hero-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  max-width: 38rem;
}

.hero-brand {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  color: var(--eden-light);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 500;
  color: var(--eden-cream);
  margin-bottom: 1rem;
}

.hero-lead {
  color: rgba(250, 248, 244, 0.9);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero .whisper {
  margin-bottom: 0.5rem;
  display: block;
}

@keyframes edenKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--eden-light);
}
.page-hero .hero-media,
.page-hero .hero-veil { position: absolute; inset: 0; }
.page-hero .hero-media { z-index: -2; }
.page-hero .hero-veil {
  z-index: -1;
  background: linear-gradient(180deg, rgba(31,34,28,0.25), rgba(31,34,28,0.78));
}
.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
}
.page-hero-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 {
  color: var(--eden-light);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}
.page-hero p {
  color: rgba(250, 248, 244, 0.88);
  max-width: 36rem;
  margin: 0;
}

/* —— Sections —— */
.section { padding: 4.75rem 0; }
.section-cream { background: var(--eden-cream); }
.section-mist { background: var(--eden-mist); }
.section-light { background: var(--eden-light); }
.section-olive {
  background: var(--eden-olive);
  color: var(--eden-cream);
}
.section-olive h2,
.section-olive h3 { color: var(--eden-light); }
.section-olive .eyebrow { color: var(--eden-cream); }
.section-olive p { color: rgba(227, 218, 206, 0.9); }

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}
.section-lead {
  color: rgba(31, 34, 28, 0.72);
  font-size: 1.05rem;
}
.section-olive .section-lead { color: rgba(227, 218, 206, 0.85); }

/* —— Path chooser —— */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(63, 68, 55, 0.12);
  border: 1px solid rgba(63, 68, 55, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.path-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.4rem;
  background: var(--eden-light);
  text-decoration: none;
  color: var(--eden-ink);
  min-height: 160px;
  transition: background 0.35s var(--ease);
}
.path-link:hover {
  background: var(--eden-cream);
  color: var(--eden-ink);
}
.path-link strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eden-olive);
  display: block;
}
.path-link span {
  font-size: 0.92rem;
  color: rgba(31, 34, 28, 0.65);
}
.path-link .arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eden-accent);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .path-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* —— Service tiles —— */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid rgba(63, 68, 55, 0.15);
  transition: opacity 0.3s;
}
.service-tile:hover { opacity: 0.82; color: inherit; }
.service-tile h3 {
  font-size: 1.1rem;
  margin: 0.85rem 0 0.4rem;
}
.service-tile p {
  font-size: 0.95rem;
  color: rgba(31, 34, 28, 0.68);
  margin: 0;
}

@media (max-width: 800px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* —— Values —— */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-item h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(31, 34, 28, 0.7);
}
@media (max-width: 800px) {
  .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values { grid-template-columns: 1fr; }
}

/* —— Disclaimer —— */
.disclaimer-band {
  background: var(--eden-ink);
  color: var(--eden-cream);
  padding: 2.25rem 0;
  text-align: center;
}
.disclaimer-band p {
  margin: 0 auto;
  max-width: 44rem;
  font-size: 1.02rem;
}
.disclaimer-band strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
}
.disclaimer-note {
  font-size: 0.92rem;
  opacity: 0.85;
}

/* —— Visit / split —— */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.visit-meta {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.visit-meta li {
  padding: 0.65rem 0;
  border-top: 1px solid rgba(63, 68, 55, 0.12);
  font-size: 0.98rem;
}
.visit-meta strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eden-accent);
  margin-bottom: 0.2rem;
}

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* —— Soft donate —— */
.donate-soft {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(63, 68, 55, 0.12);
}
.donate-soft p { margin: 0; max-width: 36rem; color: rgba(31, 34, 28, 0.72); }

/* —— Prose / content —— */
.prose { max-width: 40rem; }
.prose h2 { margin-top: 2.25rem; font-size: 1.45rem; }
.prose h3 { margin-top: 1.75rem; font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.prose li { margin-bottom: 0.45rem; }
.prose .callout {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--eden-cream);
  border-left: 3px solid var(--eden-olive);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.did-you-know {
  margin: 1.75rem 0;
  padding: 1.35rem 1.45rem 1.5rem;
  background: var(--eden-olive);
  color: var(--eden-cream);
  border-radius: var(--radius);
}
.did-you-know .whisper {
  display: block;
  color: var(--eden-cream);
  margin-bottom: 0.55rem;
}
.did-you-know p {
  margin: 0;
  color: rgba(250, 248, 244, 0.92);
  font-size: 0.98rem;
}
.goal-block {
  margin: 1.85rem 0;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(63, 68, 55, 0.18);
  border-bottom: 1px solid rgba(63, 68, 55, 0.18);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.28;
  color: var(--eden-olive);
  font-weight: 400;
}
.npp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.npp-meta div {
  background: var(--eden-cream);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.npp-meta span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eden-accent);
  margin-bottom: 0.25rem;
}
.npp-meta p { margin: 0; font-size: 0.95rem; }
@media (max-width: 640px) {
  .npp-meta { grid-template-columns: 1fr; }
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.side-card {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: var(--eden-cream);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.side-card h3 { font-size: 1.05rem; }
.side-card p { font-size: 0.92rem; color: rgba(31, 34, 28, 0.7); }
@media (max-width: 840px) {
  .content-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

/* —— Hub cards —— */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.75rem;
  background: var(--eden-light);
  border: 1px solid rgba(63, 68, 55, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.hub-card:hover {
  border-color: var(--eden-olive);
  transform: translateY(-2px);
  color: inherit;
}
.hub-card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.hub-card p { margin: 0; font-size: 0.95rem; color: rgba(31, 34, 28, 0.68); }
@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr; }
}

/* —— FAQ —— */
.faq-list { max-width: 44rem; }
.faq-item {
  border-bottom: 1px solid rgba(63, 68, 55, 0.14);
  padding: 1.15rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--eden-olive);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 500;
  color: var(--eden-accent);
  font-size: 1.25rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.85rem 0 0;
  color: rgba(31, 34, 28, 0.72);
  font-size: 0.98rem;
}

/* —— Forms —— */
.form-shell {
  max-width: 36rem;
  background: var(--eden-white);
  border: 1px solid rgba(63, 68, 55, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eden-accent);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(63, 68, 55, 0.2);
  border-radius: 0.55rem;
  background: var(--eden-light);
  color: var(--eden-ink);
  transition: border-color 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--eden-olive);
}
.field { margin-bottom: 0; }
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.form-msg {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.25rem;
}
.form-msg.is-ok { color: var(--eden-olive); }
.form-msg.is-err { color: #8b3a3a; }
.form-note {
  font-size: 0.92rem;
  color: rgba(31, 34, 28, 0.65);
  margin-bottom: 1.25rem;
}

.select-hint {
  margin: -0.15rem 0 0.45rem;
  font-size: 0.82rem;
  color: rgba(31, 34, 28, 0.58);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.ms-dropdown { position: relative; }
.ms-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  text-align: left;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(63, 68, 55, 0.2);
  border-radius: 0.55rem;
  background: var(--eden-light);
  color: var(--eden-ink);
  cursor: pointer;
  min-height: 2.85rem;
}
.ms-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--eden-olive);
  border-bottom: 2px solid var(--eden-olive);
  transform: rotate(45deg);
  margin-top: -0.25rem;
  flex-shrink: 0;
}
.ms-toggle.is-placeholder { color: rgba(31, 34, 28, 0.45); }
.ms-toggle:focus {
  outline: none;
  border-color: var(--eden-olive);
}
.ms-dropdown.is-open .ms-toggle::after { transform: rotate(225deg); margin-top: 0.2rem; }
.ms-menu {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  top: calc(100% + 0.3rem);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--eden-white);
  border: 1px solid rgba(63, 68, 55, 0.16);
  border-radius: 0.55rem;
  box-shadow: 0 12px 28px rgba(31, 34, 28, 0.12);
  max-height: 16rem;
  overflow: auto;
}
.ms-menu[hidden] { display: none; }
.ms-menu li {
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  color: var(--eden-ink);
  font-size: 0.98rem;
}
.ms-menu li:hover { background: rgba(63, 68, 55, 0.06); }
.ms-menu li[aria-selected="true"] {
  background: rgba(63, 68, 55, 0.12);
  font-weight: 600;
  color: var(--eden-olive);
}
.field.is-needed > label::after {
  content: " (needed)";
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--eden-olive);
}
.field.is-err .ms-toggle {
  border-color: #8b3a3a;
}

/* —— Bloomerang —— */
.bloomerang-shell {
  background: var(--eden-white);
  border: 1px solid rgba(63, 68, 55, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
}
.bloomerang-shell iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
}
.bloomerang-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(31, 34, 28, 0.65);
}
.bloomerang-placeholder code {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  background: var(--eden-cream);
  padding: 0.35rem 0.6rem;
  border-radius: 0.35rem;
}

/* —— Staff —— */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.staff-card {
  padding: 1.5rem;
  background: var(--eden-light);
  border-radius: var(--radius);
  border: 1px solid rgba(63, 68, 55, 0.08);
}
.staff-card .staff-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--eden-mist, #c3c7cb);
  border-radius: 0.45rem;
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.staff-card .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card .role {
  font-size: 0.85rem;
  color: var(--eden-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 560px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* —— Resource list —— */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resource-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(63, 68, 55, 0.12);
}
.resource-list strong { display: block; color: var(--eden-olive); }
.resource-list span { font-size: 0.92rem; color: rgba(31, 34, 28, 0.68); }

/* —— Footer —— */
.site-footer {
  background: var(--eden-olive);
  color: var(--eden-cream);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand span {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--eden-light);
}
.site-footer a {
  color: var(--eden-cream);
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: var(--eden-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.95rem; }
.footer-disclaimer {
  border-top: 1px solid rgba(227, 218, 206, 0.18);
  padding-top: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.9;
}
.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  opacity: 0.65;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover { transform: none; }
}

/* —— Friends of Eden (donor site extras) —— */
.clinic-cross {
  background: var(--eden-cream);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.clinic-cross p { margin: 0; max-width: 36rem; }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.25rem;
}
.partner-row img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.9;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}
.story-card {
  background: var(--eden-cream);
  border-radius: var(--radius);
  padding: 1.5rem 1.55rem 1.6rem;
}
.story-card h3 { font-size: 1.15rem; }
@media (max-width: 720px) {
  .story-grid { grid-template-columns: 1fr; }
}
.update-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.update-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--eden-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(63, 68, 55, 0.08);
}
.update-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.update-card div { padding: 1.1rem 1.2rem 1.25rem; }
.update-card strong { display: block; color: var(--eden-olive); }
@media (max-width: 720px) {
  .update-grid { grid-template-columns: 1fr; }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.values-grid article {
  background: var(--eden-cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.values-grid h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.values-grid p { margin: 0; font-size: 0.95rem; color: rgba(31, 34, 28, 0.72); }
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}
.give-stack {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.give-tile {
  background: var(--eden-cream);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.give-tile h3 { margin-bottom: 0.4rem; }
.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.3;
  color: var(--eden-olive);
  margin: 0 0 0.5rem;
}
.verse-ref {
  font-size: 0.88rem;
  color: var(--eden-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
