/* ================================================================
   CHAMPARAN FOUNDATION — STYLESHEET
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

/* ---- Custom Properties ---- */
:root {
  --saffron:   #E87722;
  --green:     #138808;
  --charcoal:  #2C2C2C;
  --ink:       #1A1A1A;
  --off-white: #FAFAF7;
  --sand:      #F2EFE8;
  --border:    #D4D0C8;
  --cream:     #F7F1E3;
  --max-w:     1180px;
  --prose:     760px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ---- Focus ---- */
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--saffron); color: #fff;
  padding: 0.5rem 1rem; font-size: 14px; font-weight: 500;
  border-radius: 3px; z-index: 200; transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.container--narrow { max-width: var(--prose); }

.section      { padding-block: 5rem; }
.section--lg  { padding-block: 7.5rem; }
@media (min-width: 768px) {
  .section    { padding-block: 7.5rem; }
  .section--lg{ padding-block: 9rem; }
}

.bg-off-white { background: var(--off-white); }
.bg-sand      { background: var(--sand); }
.bg-charcoal  { background: var(--charcoal); }
.border-top   { border-top: 1px solid var(--border); }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; color: var(--ink);
}
h1 { font-size: clamp(38px, 6.5vw, 68px); line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2.8vw, 28px); line-height: 1.3; font-weight: 600; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--saffron);
}

/* ================================================================
   HEADER
   ================================================================ */

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--off-white);
  border-bottom: 1px solid rgba(212,208,200,0.6);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.header.scrolled {
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
  border-color: var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header__inner { height: 80px; } }

/* Logo */
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 56px;
  width: auto;
  display: block;
}
@media (min-width: 768px) { .logo__img { height: 68px; } }
.logo--dark .logo__img {
  height: 160px;
  mix-blend-mode: screen;
}

/* Desktop nav */
.nav { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 1024px) { .nav { display: flex; } }

.nav__link {
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: rgba(44,44,44,0.65); border-radius: 3px;
  transition: color 0.15s;
}
.nav__link:hover, .nav__link.active { color: var(--saffron); }

/* Hamburger */
.menu-btn {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; border-radius: 3px;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn__bar {
  width: 20px; height: 1px; background: var(--charcoal);
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }

/* Mobile nav */
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--off-white); }
.mobile-nav.open { display: block; }
.mobile-nav__inner { padding-block: 0.75rem; }
.mobile-nav__link {
  display: block; padding: 0.875rem 1.25rem;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: rgba(44,44,44,0.8); border-bottom: 1px solid rgba(212,208,200,0.4);
  transition: color 0.15s;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link.active { color: var(--saffron); }

/* Push content below fixed header */
main { padding-top: 64px; }
@media (min-width: 768px) { main { padding-top: 80px; } }

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.01em; border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer; border: 1px solid transparent;
}
.btn--primary   { background: var(--saffron); color: #fff; }
.btn--primary:hover   { background: var(--green); }
.btn--secondary { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn--secondary:hover { background: var(--charcoal); color: #fff; }
.btn--dark  { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn--dark:hover  { background: var(--cream); color: var(--charcoal); }

/* Arrow text link */
.text-link {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--saffron);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.15s;
}
.text-link:hover { color: var(--green); }
.text-link .arr { display: inline-block; transition: transform 0.2s; }
.text-link:hover .arr { transform: translateX(4px); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */

.page-hero {
  background: var(--off-white); padding-block: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .page-hero { padding-block: 6rem 5rem; } }
.page-hero .label  { margin-bottom: 1.25rem; }
.page-hero h1      { margin-bottom: 1.5rem; }
.page-hero__sub {
  font-size: 19px; line-height: 1.65; max-width: 680px;
  color: rgba(44,44,44,0.68);
}

/* ================================================================
   HOME HERO
   ================================================================ */

.hero {
  background: var(--off-white);
  min-height: 100vh; display: flex; align-items: center;
  padding-block: 5rem;
}
@media (min-width: 768px) { .hero { padding-block: 8rem; } }
.hero__inner { max-width: 880px; }
.hero__caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--saffron); margin-bottom: 2rem;
}
.hero h1 { margin-bottom: 2rem; }
.hero__sub {
  font-size: 19px; line-height: 1.65; max-width: 620px;
  color: rgba(44,44,44,0.68); margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ================================================================
   MISSION STRIP
   ================================================================ */

.mission-strip {
  background: var(--charcoal); padding-block: 5rem;
}
@media (min-width: 768px) { .mission-strip { padding-block: 7.5rem; } }
.mission-strip blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(22px, 3.2vw, 42px); line-height: 1.3;
  color: var(--cream); max-width: var(--prose);
}

/* ================================================================
   PROGRAMS
   ================================================================ */

.section-head { margin-bottom: 3rem; }
.section-head h2 { max-width: 560px; }

.section-head--row {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start; margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-head--row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* Home program cards */
.programs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.prog-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.2s;
}
.prog-card:hover { border-color: rgba(232,119,34,0.45); }
.prog-card__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px; font-weight: 500; line-height: 1;
  color: var(--saffron); opacity: 0.45; font-variant-numeric: tabular-nums;
}
.prog-card h3 { font-size: 24px; }
.prog-card p  { font-size: 16px; color: rgba(44,44,44,0.72); flex: 1; line-height: 1.7; }
.prog-card__foot { padding-top: 0.875rem; border-top: 1px solid var(--border); margin-top: auto; }

/* Work page program cards */
.work-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.work-card__top  { display: flex; gap: 1.5rem; align-items: flex-start; }
.work-card__num  {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 500; line-height: 1;
  color: var(--saffron); opacity: 0.4; flex-shrink: 0;
  font-variant-numeric: tabular-nums; margin-top: 6px;
}
.work-card h2   { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 0.75rem; }
.work-card p    { font-size: 16px; color: rgba(44,44,44,0.75); line-height: 1.7; }

.data-strip { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.data-item dt { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(44,44,44,0.5); margin-bottom: 3px; }
.data-item dd { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); }

/* ================================================================
   FEATURE CARDS (Champaran section)
   ================================================================ */

.feature-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feat-card__img {
  aspect-ratio: 4/3; background: var(--off-white);
  border: 1px solid var(--border); margin-bottom: 1.25rem;
  display: flex; align-items: flex-end; padding: 1.25rem;
  overflow: hidden; position: relative;
}
.feat-card__img::after { content: ''; position: absolute; inset: 0; background: rgba(44,44,44,0.04); }
.feat-card__img-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(44,44,44,0.3); position: relative; z-index: 1; }
.feat-card h3  { font-size: 22px; margin-bottom: 0.5rem; }
.feat-card p   { font-size: 16px; color: rgba(44,44,44,0.7); margin-bottom: 1rem; line-height: 1.7; }

/* ================================================================
   HOW WE WORK
   ================================================================ */

.how-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }

.how-item__label {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--saffron);
  margin-bottom: 1rem;
}
.how-item p { font-size: 16px; color: rgba(44,44,44,0.72); line-height: 1.7; }

/* ================================================================
   PARTNER STRIP (dark)
   ================================================================ */

.partner-strip { background: var(--charcoal); padding-block: 5rem; }
@media (min-width: 768px) { .partner-strip { padding-block: 6.5rem; } }
.partner-strip .container { max-width: 900px; }
.partner-strip h2 { color: var(--cream); margin-bottom: 1.5rem; }
.partner-strip p  { font-size: 16px; color: rgba(247,241,227,0.68); max-width: 620px; margin-bottom: 2.5rem; line-height: 1.7; }

/* ================================================================
   NEWSROOM SECTION
   ================================================================ */

.newsroom-placeholder {
  background: var(--sand); border: 1px solid var(--border);
  padding: 2rem 2.5rem; margin-bottom: 3rem;
}
.newsroom-placeholder p { font-size: 15px; color: rgba(44,44,44,0.6); margin-bottom: 0.25rem; }
.newsroom-placeholder p:last-child { margin-bottom: 0; }

.cat-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.cat-tag { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; padding: 0.375rem 0.75rem; border: 1px solid var(--border); color: rgba(44,44,44,0.5); }

/* Newsletter form */
.nl-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(44,44,44,0.45); margin-bottom: 1.25rem; }
.nl-desc { font-size: 16px; color: rgba(44,44,44,0.68); margin-bottom: 1.5rem; }
.nl-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 440px; }
@media (min-width: 480px) { .nl-form { flex-direction: row; } }
.nl-form input[type="email"] {
  flex: 1; padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 15px;
  border: 1px solid var(--border); border-radius: 4px;
  background: #fff; color: var(--ink);
  transition: border-color 0.15s;
}
.nl-form input[type="email"]:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,119,34,0.12); }
.nl-form input[type="email"]::placeholder { color: rgba(44,44,44,0.4); }
.nl-form button {
  padding: 0.875rem 1.5rem;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  background: var(--saffron); color: #fff; border: none;
  border-radius: 4px; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--green); }
.nl-note { font-size: 12px; color: rgba(44,44,44,0.38); margin-top: 0.5rem; }

/* ================================================================
   PROSE SECTIONS (body text)
   ================================================================ */

.prose        { max-width: var(--prose); }
.prose h2     { margin-bottom: 2rem; }
.prose p      { font-size: 17px; color: rgba(44,44,44,0.8); margin-bottom: 1.25rem; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }

/* Bullet list */
.blist { display: flex; flex-direction: column; gap: 0.75rem; }
.blist li {
  display: flex; align-items: flex-start; gap: 0.875rem;
  font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(44,44,44,0.74); line-height: 1.6;
}
.blist li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0; margin-top: 9px;
}
.blist--green li::before { background: var(--green); }

/* Numbered list */
.nlist { display: flex; flex-direction: column; gap: 1.5rem; }
.nlist li { display: flex; gap: 1.5rem; align-items: flex-start; }
.nlist__n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--saffron);
  font-variant-numeric: tabular-nums; flex-shrink: 0; line-height: 1.2; min-width: 1.8rem;
}
.nlist__t { font-size: 17px; color: rgba(44,44,44,0.75); padding-top: 2px; line-height: 1.65; }

/* ================================================================
   TWO-COLUMN
   ================================================================ */

.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* Portrait placeholder */
.portrait {
  aspect-ratio: 3/4; background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: flex-end; padding: 1.5rem; max-width: 420px;
}
.portrait__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(44,44,44,0.3); }

/* ================================================================
   FUNDING TIERS
   ================================================================ */

.fund-list { display: flex; flex-direction: column; }
.fund-item { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.fund-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.fund-item__amt {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px;
  font-weight: 600; color: var(--saffron); white-space: nowrap;
  flex-shrink: 0; font-variant-numeric: tabular-nums; padding-top: 2px;
}
.fund-item__txt { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(44,44,44,0.75); line-height: 1.65; }

/* ================================================================
   THREE-COL GRIDS
   ================================================================ */

.three-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); } }

/* Programming features */
.prog-feat { border-top: 2px solid var(--saffron); padding-top: 1.5rem; }
.prog-feat h3 { font-size: clamp(20px, 2.5vw, 24px); margin-bottom: 0.75rem; }
.prog-feat p  { font-size: 16px; color: rgba(44,44,44,0.7); line-height: 1.7; }

/* ================================================================
   PARTNER PAGE
   ================================================================ */

.partner-types { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .partner-types { grid-template-columns: repeat(3, 1fr); } }

.ptype { border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.2s; }
.ptype:hover { border-color: rgba(232,119,34,0.4); }
.ptype h3 { font-size: clamp(20px, 2.5vw, 24px); }
.ptype p  { font-size: 16px; color: rgba(44,44,44,0.7); flex: 1; line-height: 1.7; }
.ptype__detail { font-size: 13px; color: rgba(44,44,44,0.5); padding-top: 1rem; border-top: 1px solid var(--border); line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step__n { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 500; color: var(--saffron); line-height: 1; margin-bottom: 1rem; font-variant-numeric: tabular-nums; }
.step h3 { font-size: clamp(20px, 2.5vw, 22px); margin-bottom: 0.75rem; }
.step p  { font-size: 16px; color: rgba(44,44,44,0.7); line-height: 1.7; }

.share-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 480px) { .share-grid { grid-template-columns: 1fr 1fr; } }

/* ================================================================
   CONTACT CTA STRIP (dark)
   ================================================================ */

.contact-strip { background: var(--charcoal); padding-block: 5rem 6rem; }
@media (min-width: 768px) { .contact-strip { padding-block: 6rem; } }
.contact-strip .container { max-width: 680px; }
.contact-strip h2 { color: var(--cream); margin-bottom: 1.25rem; }
.contact-strip p  { font-size: 16px; color: rgba(247,241,227,0.65); margin-bottom: 1rem; line-height: 1.7; }
.contact-strip a.email-big { font-size: 20px; font-weight: 500; color: var(--saffron); display: block; margin-bottom: 0.5rem; }
.contact-strip a.email-big:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-strip .reply-note { font-size: 13px; color: rgba(247,241,227,0.38); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-email-link {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(24px, 4vw, 38px); color: var(--ink);
  transition: color 0.15s; display: block;
}
.contact-email-link:hover { color: var(--saffron); }

/* ================================================================
   GOVERNANCE
   ================================================================ */

.gov-block { margin-bottom: 3rem; }
.gov-block h3 { font-size: clamp(20px, 2.5vw, 24px); margin-bottom: 1rem; }
.gov-block p  { font-size: 16px; color: rgba(44,44,44,0.75); line-height: 1.7; }

.gov-table { width: 100%; border: 1px solid var(--border); border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 15px; }
.gov-table thead th { background: var(--charcoal); color: var(--cream); padding: 0.75rem 1.25rem; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.gov-table tbody tr { border-bottom: 1px solid var(--border); }
.gov-table tbody tr:last-child { border-bottom: none; }
.gov-table tbody tr:nth-child(odd)  { background: var(--off-white); }
.gov-table tbody tr:nth-child(even) { background: var(--sand); }
.gov-table td { padding: 0.875rem 1.25rem; }
.gov-table td:first-child { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(44,44,44,0.48); width: 12rem; }
.gov-note { margin-top: 0.75rem; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(44,44,44,0.52); line-height: 1.6; }
.gov-note a { color: var(--saffron); }
.gov-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ================================================================
   FOOTER
   ================================================================ */

.footer { background: var(--charcoal); color: var(--cream); }
.footer__main {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding-block: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px)  { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__main { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.footer__tagline { font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(247,241,227,0.55); margin-top: 1.25rem; }
.footer__addr    { margin-top: 1rem; font-size: 14px; color: rgba(247,241,227,0.45); line-height: 1.8; }
.footer__col-h   { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(247,241,227,0.38); margin-bottom: 1.25rem; }

.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link  { font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(247,241,227,0.68); transition: color 0.15s; }
.footer__link:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

.footer__contact-email { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(247,241,227,0.8); word-break: break-all; }
.footer__contact-email:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer__contact-note { margin-top: 1.25rem; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(247,241,227,0.38); line-height: 1.65; }

.footer__bottom {
  display: flex; flex-direction: column; gap: 1rem; padding-block: 1.75rem;
  font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(247,241,227,0.28);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__legal { display: flex; align-items: center; gap: 0.875rem; }
.footer__legal a { color: rgba(247,241,227,0.28); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(247,241,227,0.6); }

/* ================================================================
   404
   ================================================================ */

.not-found {
  min-height: calc(100vh - 80px); display: flex; align-items: center;
  background: var(--off-white); padding-block: 5rem;
}
.nf-code { margin-bottom: 1.5rem; }
.not-found h1 { margin-bottom: 1.5rem; }
.not-found p  { font-size: 17px; color: rgba(44,44,44,0.68); max-width: 480px; margin-bottom: 2.5rem; }

/* ================================================================
   UTILITIES
   ================================================================ */

.mt-6   { margin-top: 1.5rem; }
.mt-8   { margin-top: 2rem; }
.mt-10  { margin-top: 2.5rem; }
.mt-12  { margin-top: 3rem; }
.link   { color: var(--saffron); transition: text-decoration 0.1s; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
