/* =========================================================
   Traditions Acupuncture Foundation — website
   Design system + page styles
   Part of the family: shares the warm-cream paper, Gelasio
   serif headings, and component language of the Chinese
   Acupuncture Clinic + Daoist Traditions sites — but leads
   with a plum "foundation" signature and terracotta giving accent.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* color — plum-led (foundation), with terracotta giving warmth
     and jade retained as the family-tie anchor */
  --paper:      #F6F2EA;   /* warm cream page background (shared family paper) */
  --paper-2:    #EFE9DE;   /* alternating section tint */
  --paper-3:    #E8E0D1;   /* deeper cream for cards */
  --ink:        #2A2536;   /* deep aubergine-charcoal text */
  --ink-soft:   #61596B;   /* muted body text */

  --plum:       #5E4B8B;   /* primary — foundation purple */
  --plum-700:   #473769;   /* darker plum — bands / hover */
  --plum-900:   #33264D;   /* deepest plum — footer */
  --plum-050:   #EFECF7;   /* faint plum tint */
  --plum-100:   #E3DEF3;   /* soft plum fill */
  --lav:        #E7E7FF;   /* lavender — soft fills / on-dark buttons */
  --lav-050:    #F6F6FF;
  --lav-200:    #CFC8EC;   /* periwinkle — accents on dark bands */

  --clay:       #B65C3C;   /* terracotta — giving / donate warmth (shared) */
  --clay-700:   #98492D;
  --clay-050:   #F7ECE6;

  --jade:       #2B6457;   /* sage-teal — family-tie anchor accent (shared) */
  --jade-050:   #E7EFEC;

  --line:       rgba(42, 37, 54, 0.14);
  --white:      #FFFFFF;

  /* type — shared family stack:
     Gelasio (Cambria clone) headings, Georgia body,
     Inter for small UI chrome, Nunito for the wordmark. */
  --serif: "Gelasio", Cambria, Georgia, "Times New Roman", serif;
  --body:  Georgia, Cambria, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wordmark: "Nunito", var(--sans);

  /* layout */
  --wrap: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 40px -24px rgba(42, 37, 54, 0.45);
  --shadow-sm: 0 8px 22px -16px rgba(42, 37, 54, 0.5);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 860px; }
.section { padding: 84px 0; }
.section--tint { background: var(--paper-2); }
.section--plum { background: var(--plum); color: #F1EEF9; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 .9rem;
}
.section--plum .eyebrow { color: var(--lav-200); }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--plum .section-head p { color: rgba(241, 238, 249, 0.82); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-compact { display: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--plum); color: #F7F5FC; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--plum-700); }
.btn--give { background: var(--clay); color: #FFF6F1; box-shadow: var(--shadow-sm); }
.btn--give:hover { background: var(--clay-700); }
.btn--ghost { background: transparent; color: var(--plum); border-color: rgba(94, 75, 139, 0.35); }
.btn--ghost:hover { background: var(--plum-050); }
.btn--onplum { background: var(--lav); color: var(--plum-700); }
.btn--onplum:hover { background: var(--lav-050); }

/* ---------- Utility bar ---------- */
.util {
  background: var(--plum-900);
  color: #EAE6F5;
  font-size: .88rem;
  text-align: center;
}
.util .wrap { display: flex; align-items: center; justify-content: center; gap: 1.2rem; min-height: 42px; flex-wrap: wrap; }
.util strong { color: #fff; }
.util a { color: var(--lav-200); font-weight: 600; white-space: nowrap; }
.util a:hover { text-decoration: underline; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 234, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { flex: none; display: block; height: 50px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__text b { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: .01em; color: var(--ink); }
.brand__text span { font-family: var(--sans); font-weight: 600; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--plum); }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a { font-weight: 500; font-size: .97rem; color: var(--ink); position: relative; }
.nav__links a:hover { color: var(--plum); }
.nav__links a.is-active { color: var(--plum); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__phone { font-weight: 600; color: var(--plum); white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  padding-block: 80px 90px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--plum); }
.hero__lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero__note { font-size: .92rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.hero__note svg { color: var(--plum); flex: none; }
.hero__media { position: relative; }

/* Photo caption ribbon for hero/story images */
.figure { position: relative; }
.figure figcaption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(51, 38, 77, 0.78); color: #F1EEF9;
  font-family: var(--sans); font-size: .8rem; letter-spacing: .01em;
  padding: .5rem .8rem; border-radius: 10px; backdrop-filter: blur(4px);
}

/* ---------- Impact / stat bar ---------- */
.impact { background: var(--plum); color: #EFEBFA; }
.impact .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 32px 24px; }
.impact__item { text-align: center; }
.impact__item b { display: block; font-family: var(--serif); font-size: 1.9rem; color: #fff; line-height: 1; margin-bottom: .35rem; }
.impact__item span { font-size: .85rem; color: rgba(239, 235, 250, 0.82); }

/* ---------- Mission pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; display: flex; flex-direction: column; gap: .4rem;
  transition: transform .18s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--plum-050); color: var(--plum); margin-bottom: .7rem;
}
.pillar h3 { font-size: 1.4rem; margin: 0; }
.pillar p { color: var(--ink-soft); margin: .3rem 0 0; }
.pillar a { color: var(--clay); font-weight: 600; margin-top: 1rem; display: inline-flex; align-items: center; gap: .35rem; }
.pillar a:hover { gap: .6rem; }

/* ---------- Story / legacy ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.story__media .media-img { height: 480px; }
.story__lead { font-size: 1.16rem; }

/* Founding timeline */
.timeline { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.timeline li {
  position: relative; padding: 0 0 1.5rem 2.2rem; border-left: 2px solid var(--plum-100);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--plum); border: 3px solid var(--paper-2);
}
.timeline .year {
  display: block; font-family: var(--sans); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; color: var(--clay); margin-bottom: .2rem;
}
.timeline p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
.timeline strong { color: var(--ink); }

/* ---------- Pull quote band ---------- */
.quote-band { background: var(--plum-900); color: #EFEBFA; text-align: center; }
.quote-band .wrap { max-width: 860px; }
.quote-band blockquote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.3; color: #fff;
}
.quote-band .mark { font-size: 3rem; color: var(--lav-200); line-height: 0; display: block; margin-bottom: .3rem; }
.quote-band cite { display: block; margin-top: 1.4rem; font-family: var(--sans); font-style: normal; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; color: var(--lav-200); }

/* ---------- Growth / info split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.info-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.4rem; }
.info-card .tag { color: var(--jade); font-weight: 600; }

/* ---------- Donate CTA band ---------- */
.cta-band { background: var(--clay); color: #FFF6F1; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; }
.cta-band p { color: rgba(255, 246, 241, 0.9); max-width: 54ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }
.cta-band .btn--onplum { background: #fff; color: var(--clay-700); }
.cta-band .btn--onplum:hover { background: #fdeee7; }

/* ---------- Footer ---------- */
.footer { background: var(--plum-900); color: #cfc7e2; padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #cfc7e2; display: block; margin-bottom: .5rem; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__brand p { color: #a99fca; font-size: .95rem; max-width: 38ch; }
.footer__ein { color: #8f84b4; font-size: .82rem; margin-top: 1rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #9a90bc; }

/* ---------- Placed photos ---------- */
.media-img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.hero__media .media-img { height: 480px; }
@media (max-width: 720px) {
  .hero__media .media-img { height: 300px; }
  .story__media .media-img { height: 340px; }
}

/* =========================================================
   PHOTO PLACEHOLDER COMPONENT
   Every .ph marks a spot where a real photo should be dropped in.
   Swap the whole <div class="ph"> for an <img> when photos arrive.
   ========================================================= */
.ph {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; text-align: center; padding: 26px;
  color: var(--plum-700);
  background:
    repeating-linear-gradient(45deg, rgba(94, 75, 139,.05) 0 12px, rgba(94, 75, 139,.10) 12px 24px);
  border: 2px dashed rgba(94, 75, 139, 0.42);
  border-radius: var(--radius-lg);
  min-height: 300px;
}
.ph__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--clay); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 6px;
}
.ph__icon { opacity: .8; }
.ph__label { font-weight: 700; font-size: .98rem; text-transform: uppercase; letter-spacing: .03em; }
.ph__desc { color: var(--ink-soft); font-size: .92rem; max-width: 34ch; margin: 0; }

/* =========================================================
   SUBPAGE COMPONENTS
   ========================================================= */

/* Compact page banner */
.page-hero { padding: 64px 0 50px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.14rem; max-width: 64ch; margin: 0; }
.page-hero--tint { background: var(--paper-2); }

/* Scholarship blocks */
.sch-nav { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 8px; }
.sch-nav a {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  color: var(--plum); background: var(--plum-050);
  border: 1px solid var(--plum-100); padding: .5rem 1rem; border-radius: 999px;
}
.sch-nav a:hover { background: var(--plum-100); }

.scholarship {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start;
  padding: 52px 0; border-top: 1px solid var(--line); scroll-margin-top: 90px;
}
.scholarship:first-of-type { border-top: 0; }
.scholarship--rev { grid-template-columns: 1fr 340px; }
.scholarship--rev .scholarship__media { order: 2; }
.scholarship__media { position: sticky; top: 100px; }
.scholarship__media img { display: block; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.scholarship__media img.photo { height: 384px; object-fit: cover; }
.scholarship__media img.poster { height: auto; border: 1px solid var(--line); background: var(--white); }
.scholarship__cap { margin: .7rem 0 0; font-family: var(--sans); font-size: .82rem; color: var(--ink-soft); text-align: center; }
.scholarship__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.scholarship h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 0; }
.scholarship__body { max-width: 68ch; }
.scholarship__body p { color: var(--ink); }
.scholarship__body .lede { font-size: 1.14rem; color: var(--ink); }

/* Highlighted callout inside a scholarship (established / initial gift) */
.callout {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem;
  background: var(--plum-050); border: 1px solid var(--plum-100);
  border-radius: var(--radius); padding: 20px 26px; margin: 0 0 1.6rem;
}
.callout div { display: flex; flex-direction: column; }
.callout .k { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--plum); margin-bottom: .2rem; }
.callout .v { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }

/* Recipients list */
.recipients { margin: 1.2rem 0 1.6rem; }
.recipients h4 { font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); margin-bottom: .8rem; }
.recipients ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .5rem .8rem; }
.recipients li { font-size: .95rem; color: var(--ink-soft); padding: .4rem .8rem; background: var(--paper-2); border-radius: 8px; }
.recipients li b { color: var(--plum); font-family: var(--sans); font-weight: 700; font-size: .82rem; margin-right: .5rem; }

/* Address / donate-by-check note */
.note-box {
  background: var(--paper-3); border-left: 3px solid var(--plum); border-radius: 10px;
  padding: 18px 22px; font-size: .96rem; color: var(--ink-soft); margin-top: 1.2rem;
}
.note-box address { font-style: normal; color: var(--ink); line-height: 1.5; }

/* ---------- Conditions grid (community clinic) ---------- */
.cond-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.cond {
  display: flex; align-items: center; gap: .7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; font-size: .98rem;
}
.cond svg { color: var(--jade); flex: none; }

/* Feature block (Haywood) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.feature__media { min-height: 340px; }
.feature__media .ph { border-radius: 0; border: 0; min-height: 100%; }
.feature__media .media-img { height: 100%; border-radius: 0; }
.feature__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.feature__body .eyebrow { margin-bottom: .7rem; }
.feature__body h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); }
.feature__mini { display: flex; gap: 1.8rem; margin: 1.2rem 0 0; flex-wrap: wrap; }
.feature__mini b { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--plum); line-height: 1; }
.feature__mini span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Give options (donate page) ---------- */
.give-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.give-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.give-card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--clay-050); color: var(--clay); margin-bottom: 1rem; }
.give-card h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.give-card p { color: var(--ink-soft); flex: 1; }
.give-card .btn { align-self: flex-start; margin-top: .6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; padding: .78rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--paper); color: var(--ink); transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px var(--plum-050);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .4rem; }
.form-success {
  display: none; background: var(--plum-050); border: 1px solid var(--plum); color: var(--plum-700);
  padding: 16px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 500;
}
.form-success.show { display: block; }
.contact-aside .aside-block { margin-bottom: 28px; }
.contact-aside h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.contact-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; color: var(--ink-soft); }
.contact-row svg { color: var(--plum); flex: none; margin-top: 3px; }
.contact-row a { color: var(--plum); font-weight: 600; }
.map-link {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  margin-top: 8px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: var(--radius);
  color: var(--plum); font-weight: 600; font-size: .95rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(94, 75, 139,.06) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(94, 75, 139,.06) 23px 24px),
    var(--plum-050);
  transition: transform .15s ease, border-color .2s ease;
}
.map-link:hover { transform: translateY(-2px); border-color: var(--plum); }
.map-link svg { flex: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .hero__inner, .story__grid, .split, .feature { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .pillars { grid-template-columns: 1fr; }
  .give-grid { grid-template-columns: 1fr; }
  .impact .wrap { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature__media { min-height: 260px; }
  .feature__media .media-img { height: 300px; }
}
@media (max-width: 1040px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 24px; box-shadow: var(--shadow-sm);
  }
  .nav { position: relative; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .scholarship, .scholarship--rev { grid-template-columns: 1fr; gap: 22px; }
  .scholarship__media { position: static; max-width: 380px; margin: 0 auto; }
  .scholarship--rev .scholarship__media { order: 0; }
  .scholarship__media img.photo { height: 320px; }
  .scholarship__head { flex-direction: column; }
}
@media (max-width: 600px) {
  .util { font-size: .82rem; }
  .util .wrap { gap: .3rem 1rem; padding: 9px 20px; min-height: 0; }
  .btn-full { display: none; }
  .btn-compact { display: inline; }
  .nav__actions .btn--give { padding: .58rem 1.05rem; font-size: .92rem; }
  .nav { gap: .5rem; }
  .brand { gap: .55rem; }
  .brand__text b { font-size: .98rem; }
  .brand__text span { font-size: .6rem; }
  .hero__inner { padding-block: 24px 40px; }
  .impact .wrap { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .page-hero { padding: 40px 0 34px; }
}
