/* =========================================================
   Sirisha Rehabilitation Centre — Design Tokens
   Palette drawn from the SRC brand: deep forest green,
   saffron gold, cream parchment, warm white.
   Signature: lotus motif + wave dividers + hand-painted
   feel via rounded corners and soft shadow layers.
   ========================================================= */
:root {
  /* Greens */
  --forest:       #1B4332;
  --forest-mid:   #2D6A4F;
  --forest-soft:  #3A7D5A;
  --leaf:         #52B788;
  --mint:         #D8F3DC;
  --mint-pale:    #F0FBF3;

  /* Saffron / Gold */
  --saffron:      #F5A623;
  --saffron-dk:   #D4881A;
  --saffron-pale: #FEF3DC;

  /* Neutrals */
  --ink:          #1A2B1F;
  --ink-soft:     #334A3B;
  --slate:        #556B5F;
  --line:         #C8E0CF;
  --paper:        #F7FBF8;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, Segoe UI, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing / Shape */
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px -8px rgba(27, 67, 50, 0.22);
  --shadow-card:  0 2px 12px -4px rgba(27, 67, 50, 0.15);
  --max:          1160px;
}

/* =========================================================
   Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.55em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--slate); }
address { font-style: normal; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--forest); color: var(--white);
  padding: 10px 18px; z-index: 9999; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1.3;
}
.btn--primary {
  background: var(--saffron); color: var(--ink); border-color: var(--saffron);
}
.btn--primary:hover {
  background: var(--saffron-dk); border-color: var(--saffron-dk);
  transform: translateY(-2px); box-shadow: 0 8px 20px -6px rgba(213, 136, 26, 0.45);
}
.btn--outline {
  background: transparent; border-color: var(--forest); color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest); color: var(--white);
}
.btn--ghost {
  background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--green {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.btn--green:hover { background: var(--forest-mid); border-color: var(--forest-mid); }
.btn--small { padding: 9px 18px; font-size: 0.875rem; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 8px -4px rgba(27, 67, 50, 0.12);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 20px; flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark svg { width: 48px; height: 48px; flex-shrink: 0; }
.brand__mark img {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--mint); background: var(--white);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--forest); letter-spacing: -0.01em;
}
.brand__full {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  color: var(--slate); letter-spacing: 0.02em; text-transform: uppercase;
  max-width: 280px; line-height: 1.3; margin-top: 1px;
}

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav ul { display: flex; gap: 4px; flex-wrap: wrap; }
.primary-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  padding: 7px 12px; border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.primary-nav a:hover { background: var(--mint); color: var(--forest); }
.primary-nav a.is-active {
  background: var(--mint); color: var(--forest); font-weight: 600;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px; gap: 8px; display: none;
    box-shadow: 0 8px 24px -8px rgba(27,67,50,0.15);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul { flex-direction: column; gap: 2px; }
  .primary-nav a { display: block; padding: 10px 14px; }
}

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest p { color: rgba(255,255,255,0.75); }
.section--mint { background: var(--mint-pale); }
.section--saffron-pale { background: var(--saffron-pale); }

.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.eyebrow {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--forest-soft);
  background: var(--mint); padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.section--forest .eyebrow { background: rgba(255,255,255,0.15); color: var(--saffron); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--forest);
  color: var(--white);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.hero::before {
  /* subtle texture overlay */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(82,183,136,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__row {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  padding-bottom: 72px;
}
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--saffron); display: block; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--white);
  line-height: 1.15; margin-bottom: 0.6em;
}
.hero h1 em { font-style: italic; color: var(--saffron); }
.hero__lead { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 48ch; line-height: 1.6; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Lotus illustration panel */
.hero__visual {
  display: flex; align-items: center; justify-content: center;
}
.hero__visual svg { width: 100%; max-width: 420px; height: auto; }

/* Hero wave bottom */
.hero-wave {
  position: relative; z-index: 1;
  margin-top: -2px; line-height: 0;
}
.hero-wave svg { width: 100%; display: block; height: 64px; }

@media (max-width: 760px) {
  .hero { padding: 56px 0 0; }
  .hero__row { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { display: none; }
}

/* =========================================================
   Stat Strip
   ========================================================= */
.stat-strip {
  background: var(--saffron);
  padding: 28px 0;
}
.stat-strip__row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: space-around; align-items: center;
}
.stat { text-align: center; padding: 8px 16px; }
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--forest); line-height: 1;
}
.stat span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); display: block; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(27,67,50,0.2); }
@media (max-width: 640px) { .stat-divider { display: none; } }

/* =========================================================
   Card Grid
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__icon-band {
  background: var(--mint); padding: 32px 24px 24px;
  display: flex; align-items: center; justify-content: center;
}
.card__icon-band svg { width: 64px; height: 64px; }
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest-soft); margin-bottom: 8px; display: block;
}
.card__body h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.card__body p { flex: 1; font-size: 0.92rem; }
.card__body .btn { margin-top: 16px; align-self: flex-start; }

/* =========================================================
   Photos
   ========================================================= */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  line-height: 0;
}
.photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.photo-frame--wide img { aspect-ratio: 16/9; }
.photo-frame--tall img { aspect-ratio: 4/5; }
.photo-frame--square img { aspect-ratio: 1/1; }
.photo-frame--banner img { aspect-ratio: 21/9; }
.photo-caption {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate);
  margin-top: 10px; text-align: center;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* =========================================================
   Program Reach Table
   ========================================================= */
.program-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.program-table th {
  text-align: left; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--forest); padding: 10px 16px; border-bottom: 2px solid var(--leaf);
}
.program-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.program-table tr:last-child td { border-bottom: none; }
.program-table tr:hover td { background: var(--mint-pale); }
.reach-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--forest);
}

/* =========================================================
   Split / Two-col layout
   ========================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--flip { direction: ltr; }
}

/* =========================================================
   Checklist
   ========================================================= */
.checklist { list-style: none; padding: 0; margin: 16px 0; }
.checklist li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  font-size: 0.95rem; color: var(--slate);
}
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--leaf) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* =========================================================
   Value Grid
   ========================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.value { text-align: center; padding: 16px; }
.value__icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--mint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.value__icon svg { width: 34px; height: 34px; }
.value h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 6px; }
.value p { font-size: 0.9rem; }

/* =========================================================
   Timeline
   ========================================================= */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 16px 24px; padding: 24px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.timeline__item:last-child { border-bottom: none; }
.timeline__year {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--forest); line-height: 1; padding-top: 4px;
}
.timeline__item h3 { font-size: 1rem; margin-bottom: 4px; }
.timeline__item p { font-size: 0.9rem; margin: 0; }

/* =========================================================
   Awards
   ========================================================= */
.award-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.award {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
}
.award__year {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--saffron-dk); font-weight: 500;
}
.award h3 { font-size: 1rem; margin: 0; }
.award p { font-size: 0.88rem; margin: 0; }

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 72px 0; color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(82,183,136,0.12); pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 24ch; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 54ch; margin-bottom: 28px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Contact / Form
   ========================================================= */
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-grid label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none; border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(58,125,90,0.15);
}
.form-grid textarea { min-height: 140px; resize: vertical; }

.notice {
  background: var(--mint); border: 1.5px solid var(--leaf);
  border-radius: var(--radius); padding: 14px 18px;
  color: var(--forest); font-size: 0.95rem; margin-bottom: 20px;
}
.notice--error {
  background: #FDE8E8; border-color: #F5B8B8; color: #7A1A1A;
}

/* =========================================================
   Events list
   ========================================================= */
.event-list { display: flex; flex-direction: column; gap: 20px; }
.event-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: start;
  box-shadow: var(--shadow-card);
}
.event-card__date {
  text-align: center; background: var(--forest); color: var(--white);
  border-radius: var(--radius); padding: 10px 8px;
}
.event-card__date .month {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; display: block;
}
.event-card__date .day {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1;
}
.event-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.event-card p { font-size: 0.9rem; margin: 0; }

/* =========================================================
   Bank details table
   ========================================================= */
.bank-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.bank-table th {
  text-align: left; padding: 10px 14px; background: var(--forest); color: var(--white);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500;
}
.bank-table th:first-child { border-radius: var(--radius) 0 0 0; }
.bank-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.bank-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft);
}
.bank-table tr:last-child td { border-bottom: none; }
.bank-table tr:nth-child(even) td { background: var(--mint-pale); }

/* =========================================================
   Footer
   ========================================================= */
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; display: block; }
.footer-inner { background: var(--forest); padding: 0 0 0; }

.footer__grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 48px;
  padding-top: 48px; padding-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 12px;
}
.footer__about p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer__badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.footer__badges li {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  text-transform: uppercase; background: rgba(82,183,136,0.2);
  color: var(--leaf); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(82,183,136,0.3);
}
.footer__nav h3, .footer__contact h3 {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--leaf); margin-bottom: 14px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a, .footer__contact a {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  transition: color 0.15s;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--white); }
.footer__contact address p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 6px; }
.footer__social {
  display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}
.footer__social a {
  font-size: 0.8rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.footer__social a:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; padding-bottom: 28px;
}
.footer__legal p { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin: 0 0 4px; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Governance org chart
   ========================================================= */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-level {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.org-box {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: 14px 24px;
  text-align: center; min-width: 240px; max-width: 340px;
  font-weight: 600; font-size: 0.95rem; color: var(--forest);
  box-shadow: var(--shadow-card);
}
.org-box--top { background: var(--forest); color: var(--white); }
.org-arrow {
  width: 2px; height: 28px; background: var(--leaf); margin: 0 auto;
}
.exec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px;
  margin-top: 32px; width: 100%;
}
.exec-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
  text-align: center; box-shadow: var(--shadow-card);
}
.exec-card__role {
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--forest-soft); display: block; margin-bottom: 4px;
}
.exec-card__name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }

/* =========================================================
   Hero locations (reach map area)
   ========================================================= */
.reach-info { display: flex; flex-direction: column; gap: 12px; }
.reach-info__item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.reach-info__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--leaf); flex-shrink: 0; margin-top: 5px;
}
.reach-info__item h4 { font-size: 0.9rem; margin: 0 0 2px; color: var(--forest); }
.reach-info__item p { font-size: 0.85rem; margin: 0; }

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* Highlight accent line under a heading */
.ruled {
  display: inline-block; position: relative; padding-bottom: 10px;
}
.ruled::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--saffron);
}
