/* Caldsted.org — modern static site
   Palette: warm sage, cream, terracotta. Type: Fraunces (serif) + Inter (sans). */

:root {
  --sage: #5b7c63;
  --sage-dark: #3f5b46;
  --sage-light: #e7ede7;
  --cream: #f7f3ec;
  --cream-deep: #efe7d8;
  --terra: #c87a5b;
  --terra-dark: #a85e41;
  --charcoal: #2b2926;
  --ink: #4a463f;
  --muted: #8a847a;
  --line: #e6dfd2;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(43, 41, 38, .06), 0 1px 3px rgba(43, 41, 38, .04);
  --shadow-md: 0 4px 12px rgba(43, 41, 38, .08), 0 2px 4px rgba(43, 41, 38, .05);
  --shadow-lg: 0 16px 40px rgba(43, 41, 38, .12), 0 4px 12px rgba(43, 41, 38, .06);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);
  --serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--terra-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--terra); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.85rem); font-weight: 450; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 600; font-family: var(--sans); letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink); }
em.script { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--sage-dark); font-variation-settings: 'SOFT' 100; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 28px; height: 1px; background: var(--sage); margin-right: 12px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--charcoal); color: var(--cream);
  padding: .75rem 1rem; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand img { height: 36px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); letter-spacing: -.01em; }
.brand__tag { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: var(--charcoal); font-weight: 500; font-size: .96rem;
  position: relative; padding: .35rem 0;
}
.nav a:hover { color: var(--sage-dark); }
.nav a.active::after, .nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--terra); border-radius: 2px;
}
.nav-cta {
  background: var(--charcoal); color: var(--cream) !important;
  padding: .6rem 1.15rem !important; border-radius: 999px;
  font-weight: 500; transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; border: 0; background: transparent; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--charcoal);
  margin: 5px 0; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--terra); color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terra-dark); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.btn-ghost {
  background: transparent; color: var(--sage-dark); padding-left: 0;
}
.btn-ghost::after { content: " →"; transition: transform .15s ease; }
.btn-ghost:hover { color: var(--terra); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ---------- Hero (asymmetric split) ---------- */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 var(--section-y);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero__text h1 strong { color: var(--sage-dark); font-weight: 500; }
.hero__text h1 em {
  font-style: italic; font-weight: 400; color: var(--terra-dark);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.hero__text .lead { max-width: 32em; margin-top: 1.5rem; color: var(--ink); }
.hero__cta { margin-top: 2.25rem; display: flex; gap: .85rem; flex-wrap: wrap; }
.hero__meta { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }
.hero__meta strong { display: block; color: var(--charcoal); font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1; margin-bottom: .25rem; }
.hero__art {
  position: relative; aspect-ratio: 4 / 5; max-height: 640px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-deep);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(63,91,70,.05) 0%, rgba(200,122,91,.12) 100%);
  pointer-events: none;
}
.hero__chip {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--cream); padding: .85rem 1.1rem; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; color: var(--charcoal);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .65rem;
}
.hero__chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 4px rgba(91,124,99,.18);
}

/* ---------- Section pattern ---------- */
section { padding: var(--section-y) 0; }
section.tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.bg-cream-deep { background: var(--cream-deep); }
.bg-sage { background: var(--sage-dark); color: var(--cream); }
.bg-sage h2, .bg-sage h3 { color: var(--cream); }
.bg-sage .eyebrow { color: var(--cream-deep); }
.bg-sage .eyebrow::before { background: var(--cream-deep); }
.bg-white { background: var(--white); }

/* ---------- Mission band ---------- */
.mission {
  text-align: center;
  background: var(--cream-deep);
  position: relative;
}
.mission__quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.4; color: var(--charcoal);
  max-width: 30ch; margin: 0 auto;
  letter-spacing: -.01em;
}
.mission__quote::before, .mission__quote::after {
  font-family: var(--serif); color: var(--terra); font-weight: 400;
  font-size: 2.6rem; line-height: 0; vertical-align: -.15em;
}
.mission__quote::before { content: "“"; margin-right: .15em; }
.mission__quote::after { content: "”"; margin-left: .15em; }
.mission__source { margin-top: 1.25rem; font-size: .9rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Why Caldsted (benefit cards) ---------- */
.benefits {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.benefit {
  background: var(--white); padding: 2rem 1.75rem;
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--cream-deep); }
.benefit__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage-dark);
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; font-weight: 500;
  margin-bottom: 1rem;
}
.benefit h3 { margin-bottom: .55rem; }
.benefit p { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.6; }

/* ---------- Two-col image+text ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__text h2 em { font-style: italic; color: var(--terra-dark); font-weight: 400; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.stat { padding: 1.5rem 1.25rem; background: var(--white); text-align: center; }
.stat__value {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500; color: var(--sage-dark); line-height: 1; margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.stat__label { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Photo gallery (masonry-ish, lightbox) ---------- */
.gallery {
  column-count: 3; column-gap: 1rem;
}
.gallery__item {
  margin: 0 0 1rem; break-inside: avoid;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: zoom-in; position: relative;
  background: var(--cream-deep);
}
.gallery__item img {
  width: 100%; height: auto; display: block;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,41,38,.18) 100%);
  pointer-events: none; opacity: 0; transition: opacity .25s ease;
}
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(43, 41, 38, .92);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(247, 243, 236, .14); border: 0;
  color: var(--cream); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(247, 243, 236, .26); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Apartment cards (waiting list) ---------- */
.apartments {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}
.apartment {
  background: var(--white); padding: 2.25rem 2rem 2rem;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  text-align: center; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.apartment:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.apartment__icon {
  width: 88px; height: 88px; margin: 0 auto 1.25rem;
  background: var(--sage-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.apartment__icon img { width: 56px; height: 56px; }
.apartment h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.apartment__meta { color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; }

/* ---------- Eligibility table ---------- */
.eligibility {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
}
.eligibility dl { margin: 0; }
.eligibility .row {
  display: grid; grid-template-columns: 1fr 1.5fr;
  padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--line);
  gap: 1rem; align-items: baseline;
}
.eligibility .row:last-child { border-bottom: 0; }
.eligibility dt { color: var(--muted); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.eligibility dd { margin: 0; color: var(--charcoal); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-info {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}
.contact-info h3 { margin-top: 0; }
.contact-info dl { margin: 0; display: grid; gap: 1.25rem; }
.contact-info dt { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: .25rem; }
.contact-info dd { margin: 0; color: var(--charcoal); font-size: 1.02rem; line-height: 1.5; }
.contact-info dd a { color: var(--charcoal); border-bottom: 1.5px solid var(--terra); padding-bottom: 1px; }
.contact-info dd a:hover { color: var(--terra-dark); }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem;
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--white);
  color: var(--charcoal);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(91, 124, 99, .12);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Pull quote / fair housing band ---------- */
.pull {
  background: var(--sage-dark); color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.pull blockquote {
  margin: 0 auto; max-width: 800px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem); line-height: 1.5;
  color: var(--cream);
}
.pull cite { font-style: normal; display: block; margin-top: 1.25rem;
  color: var(--cream-deep); font-family: var(--sans); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center; margin-bottom: var(--section-y);
}
.cta h2 { color: var(--cream); margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta p { color: var(--cream-deep); margin: .55rem 0 0; }
.cta .btn-primary { background: var(--terra); color: var(--cream); }
.cta .btn-primary:hover { background: var(--cream); color: var(--charcoal); }

/* ---------- Founders strip ---------- */
.founders {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  background: var(--white); padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
}
.founders__year {
  font-family: var(--serif); font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400; color: var(--terra); line-height: .9;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  margin: 0 0 1rem;
  letter-spacing: -.04em;
}
.founders__name { color: var(--sage-dark); font-weight: 500; }

/* ---------- Director card ---------- */
.director {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 2.5rem; align-items: center;
  background: var(--cream-deep); padding: 2.25rem;
  border-radius: var(--radius-lg);
}
.director__photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.director__photo img { width: 100%; height: 100%; object-fit: cover; }
.director__role { color: var(--terra-dark); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; }
.director h3 { font-family: var(--serif); font-size: 2rem; font-weight: 500; margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal); color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.site-footer h4 { color: var(--cream); margin-bottom: .85rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { color: var(--cream-deep); display: inline-block; padding: .15rem 0; }
.site-footer a:hover { color: var(--cream); border-bottom: 1px solid var(--terra); }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  margin-bottom: 3rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { color: var(--cream-deep); font-size: .92rem; margin: 0 0 1rem; max-width: 30em; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, .12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: rgba(247, 243, 236, .55);
}
.footer-bottom a { color: rgba(247, 243, 236, .7); }
.fair-housing {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(247, 243, 236, .08); padding: .4rem .85rem;
  border-radius: 999px; font-size: .8rem;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .5rem; max-width: 18ch; }
.page-head .lead { max-width: 50ch; margin: 0; color: var(--ink); }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; letter-spacing: .04em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--sage-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__art { aspect-ratio: 4 / 3; max-height: 460px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__media { aspect-ratio: 16 / 11; }
  .gallery { column-count: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .director { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .director__photo { max-width: 220px; margin: 0 auto; }
  .founders { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav.open a:last-child { border-bottom: 0; }
  .nav.open .nav-cta { margin-top: .5rem; text-align: center; }
  .gallery { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.25rem; }
  .eligibility .row { grid-template-columns: 1fr; gap: .15rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .lightbox, .cta { display: none; }
  body { background: white; color: black; }
}
