/* ===================================================================
   Nigerian Language, Culture and Learning School — Design System
   =================================================================== */
  .photo-fill { position: relative; overflow: hidden; }
    .photo-fill > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
    .photo-fill.pattern-veil::before,
    .photo-fill.pattern-veil::after { z-index: 2; pointer-events: none; }

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

:root {
  --emerald: #2B6B3D;
  --emerald-deep: #1D4A29;
  --indigo: #30327C;
  --gold: #F59E0B;
  --gold-deep: #C97E06;
  --offwhite: #FBF7F1;
  --sand: #F1E6D3;
  --charcoal: #211F1C;
  --charcoal-soft: #4A463F;
  --terracotta: #C1602A;
  --bronze: #8B6A3F;
  --white: #FFFFFF;

  --font-display: 'Satoshi', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -20px rgba(33, 31, 28, 0.18);
  --shadow-card: 0 12px 32px -12px rgba(33, 31, 28, 0.16);
}

/* Satoshi loaded via <link> tag in <head> — see api.fontshare.com */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--charcoal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-deep);
}

p { line-height: 1.7; color: var(--charcoal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--emerald-deep);
  box-shadow: 0 10px 30px -10px rgba(245,158,11,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(245,158,11,0.65); }
.btn-outline {
  background: transparent;
  border-color: rgba(33,31,28,0.22);
  color: var(--charcoal);
}
.btn-outline:hover { border-color: var(--charcoal); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow .4s ease;
}
.site-nav.scrolled {
  background: rgba(251,247,241,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(33,31,28,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center; 
  transition: color .4s ease;
}
.site-nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center; 
}
.nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px; font-weight: 500;
  transition: color .3s ease;
  position: relative;
}
.site-nav.scrolled .nav-links a { color: var(--charcoal-soft); }
.nav-links a:hover { color: var(--gold); }
.site-nav.scrolled .nav-links a:hover { color: var(--emerald-deep); }
.nav-links a.active { color: var(--gold); font-weight: 600; }
.site-nav.scrolled .nav-links a.active { color: var(--emerald-deep); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
    background: none; cursor: pointer; color: var(--white);
    position: relative; z-index: 250;
  }
  .site-nav.scrolled .nav-toggle { color: var(--charcoal); border-color: rgba(33,31,28,0.2); }
}

/* ---------- Pattern motif (Adire-inspired lattice) ---------- */
.pattern-veil {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg fill='none' stroke='%23FBF7F1' stroke-width='1' opacity='0.5'%3E%3Cpath d='M42 4 L80 42 L42 80 L4 42 Z'/%3E%3Ccircle cx='42' cy='42' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern-veil.on-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg fill='none' stroke='%23211F1C' stroke-width='1' opacity='0.4'%3E%3Cpath d='M42 4 L80 42 L42 80 L4 42 Z'/%3E%3Ccircle cx='42' cy='42' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Section base ---------- */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section-sand { background: var(--sand); }
.section-emerald {
  background: linear-gradient(160deg, var(--emerald-deep), var(--indigo) 140%);
  color: var(--white);
}
.section-emerald p { color: rgba(255,255,255,0.82); }
.section-emerald h2, .section-emerald h3, .section-emerald h4 { color: var(--white); }

@media (max-width: 768px) {
  .section { padding: 76px 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.41s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.50s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.59s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.68s; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.programme-card {
  padding: 30px 26px;
  border: 1px solid rgba(33,31,28,0.06);
}
.programme-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand);
  color: var(--emerald-deep);
  font-size: 22px;
  margin-bottom: 18px;
}
.programme-card h3 { font-size: 18px; margin-bottom: 8px; }
.programme-card p { font-size: 14.5px; margin-bottom: 18px; }
.programme-link {
  font-size: 13.5px; font-weight: 600; color: var(--emerald-deep);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.programme-link .arrow { transition: transform .3s ease; }
.programme-link:hover .arrow { transform: translateX(4px); }

/* ---------- Counters ---------- */
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-bottom {
  margin-top: 70px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Utility layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.photo-block {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.photo-fill {
  width: 100%; height: 100%; position: absolute; inset: 0;
}

/* image duotone placeholders — swap background-image for real photography */
.duo-emerald { background: linear-gradient(155deg, #2B6B3D 0%, #1D4A29 60%, #14331D 100%); }
.duo-indigo { background: linear-gradient(155deg, #4143A0 0%, #30327C 55%, #201F52 100%); }
.duo-gold { background: linear-gradient(155deg, #F7B84B 0%, #F59E0B 55%, #C97E06 100%); }
.duo-terracotta { background: linear-gradient(155deg, #D97B4C 0%, #C1602A 55%, #8E4620 100%); }

.photo-caption-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(251,247,241,0.92);
  color: var(--charcoal);
  font-size: 11.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
  background: var(--offwhite);
  z-index: 200;
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 22px;
  transition: right 0.45s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--charcoal); font-size: 17px; font-weight: 600; text-decoration: none; }
.mobile-menu a.active { color: var(--emerald-deep); }

.mobile-backdrop {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(33,31,28,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(165deg, var(--emerald-deep) 0%, var(--indigo) 130%);
  overflow: hidden;
}
.hero-pattern { opacity: 0.14; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-1 { width: 420px; height: 420px; top: -120px; right: -100px; background: radial-gradient(circle, rgba(245,158,11,0.22), transparent 70%); }
.hero-glow-2 { width: 480px; height: 480px; bottom: -180px; left: -140px; background: radial-gradient(circle, rgba(43,107,61,0.4), transparent 70%); }
.hero-inner { position: relative; padding: 160px 0 140px; max-width: 680px; }
.hero-headline {
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin: 20px 0 24px;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-card {
  position: absolute; right: 6%; bottom: 90px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  max-width: 230px;
}
.scroll-indicator {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 26px; background: linear-gradient(rgba(255,255,255,0.8), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

@media (max-width: 900px) {
  .hero-stat-card { display: none; }
  .hero-inner { padding: 130px 0 100px; }
}

/* ---------- Welcome ---------- */
.welcome-stats { display: flex; gap: 34px; margin-top: 34px; }
.welcome-photos { position: relative; height: 460px; }
.welcome-photo-main { position: absolute; width: 78%; height: 88%; top: 0; left: 0; box-shadow: var(--shadow-soft); }
.welcome-photo-accent { position: absolute; width: 46%; height: 52%; bottom: 0; right: 0; border: 6px solid var(--offwhite); box-shadow: var(--shadow-soft); }
@media (max-width: 900px) {
  .welcome-stats { flex-wrap: wrap; gap: 24px; }
  .welcome-photos { height: 360px; margin-top: 20px; }
}

/* ---------- Language chips ---------- */
.language-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.language-chips span {
  padding: 10px 20px; border-radius: 999px; background: var(--sand);
  color: var(--emerald-deep); font-size: 14px; font-weight: 600;
}
.languages-photo { height: 420px; }

/* ---------- Academic ---------- */
.academic-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.academic-photo { height: 420px; }

/* ---------- Culture gallery ---------- */
.culture-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 18px; }
.culture-tile { grid-row: span 2; }
.culture-tile-lg { grid-row: span 3; }
@media (max-width: 900px) {
  .culture-gallery { grid-template-columns: 1fr 1fr; }
}

/* ---------- Why grid ---------- */
.why-grid { row-gap: 34px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item i { font-size: 22px; color: var(--emerald-deep); margin-top: 3px; flex-shrink: 0; }
.why-item h4 { font-size: 16px; margin-bottom: 5px; }
.why-item p { font-size: 14px; margin: 0; }

/* ---------- Events ---------- */
.events-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.event-card { padding: 26px 22px; }
.event-date { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--terracotta); margin-bottom: 14px; }
.event-date span { font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--charcoal-soft); margin-left: 4px; }
.event-card h4 { font-size: 16px; margin-bottom: 8px; }
.event-card p { font-size: 13.5px; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-section { background: linear-gradient(160deg, var(--charcoal), #34302A); position: relative; }
.testimonial-wrap { max-width: 720px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.testimonial-slide { flex: 0 0 100%; margin: 0; text-align: center; padding: 0 20px; }
.testimonial-slide p { font-family: var(--font-display); font-size: 22px; line-height: 1.5; color: var(--white); font-weight: 500; margin-bottom: 22px; }
.testimonial-slide cite { font-style: normal; font-size: 14px; color: var(--gold); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.28); border: none; cursor: pointer; padding: 0; transition: background 0.3s ease, transform 0.3s ease; }
.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(33,31,28,0.1); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: var(--charcoal);
}
.faq-q i { transition: transform 0.35s ease; color: var(--emerald-deep); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }
.faq-a p { margin: 0; font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--terracotta), var(--emerald-deep) 120%);
  padding: 110px 0;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); font-size: 38px; margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,0.88); font-size: 16.5px; margin-bottom: 34px; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 170px 0 90px;
  background: linear-gradient(160deg, var(--emerald-deep), var(--indigo) 140%);
}
.page-hero-indigo { background: linear-gradient(160deg, var(--indigo), var(--emerald-deep) 140%); }
.page-hero-terracotta { background: linear-gradient(160deg, var(--terracotta), var(--charcoal) 150%); }

/* ---------- Value items (About) ---------- */
.value-item { display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: var(--radius-sm); padding: 22px 24px; border: 1px solid rgba(33,31,28,0.06); }
.value-mark { width: 14px; height: 14px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; border-radius: 2px; }
.value-item h4 { font-size: 15.5px; margin: 0; }

/* ---------- Objectives list (About) ---------- */
.objectives-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.objectives-list li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--charcoal-soft); }
.objectives-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border: 2px solid var(--emerald-deep); transform: rotate(45deg); border-radius: 2px; }

/* ---------- Programmes page ---------- */
.programme-jump {
  position: sticky; top: 70px; z-index: 40;
  background: rgba(251,247,241,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33,31,28,0.08);
}
.programme-jump-inner { display: flex; gap: 28px; overflow-x: auto; padding: 16px 32px; }
.programme-jump a { font-size: 13.5px; font-weight: 600; color: var(--charcoal-soft); text-decoration: none; white-space: nowrap; }
.programme-jump a:hover { color: var(--emerald-deep); }
.prog-section { scroll-margin-top: 60px; }
.mini-tag-card { background: var(--white); border: 1px solid rgba(33,31,28,0.08); border-radius: var(--radius-sm); padding: 22px 18px; text-align: center; font-weight: 600; font-size: 14.5px; color: var(--charcoal); }

/* ---------- Contact page ---------- */
.contact-detail-list { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--sand); color: var(--emerald-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail h4 { font-size: 15px; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; margin: 0; }

.map-block {
  position: relative; height: 440px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, #4143A0, #211F1C 120%);
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); color: var(--gold); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(33,31,28,0.16);
  font-family: var(--font-body); font-size: 14.5px; color: var(--charcoal); background: var(--offwhite);
  transition: border-color .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--emerald-deep); outline: none; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}

/* ---------- Help page ---------- */
.step-card { background: var(--white); border: 1px solid rgba(33,31,28,0.08); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-card); }
.step-card h4 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; margin: 0; }

/* ---------- Resources page ---------- */
.resource-card { background: var(--white); border: 1px solid rgba(33,31,28,0.08); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); }
.resource-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald-deep); background: var(--sand); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.resource-card h3 { font-size: 17px; margin-bottom: 8px; }
.resource-card p { font-size: 14px; margin-bottom: 16px; }

/* ---------- Legal pages ---------- */
.legal-section { padding: 160px 0 100px; }
.legal-section h2 { font-size: 19px; margin: 40px 0 12px; }
.legal-section h2:first-of-type { margin-top: 0; }
.legal-section p { font-size: 15px; }

