/* =========================================================================
   Aarohi Charitable Trust — Stylesheet
   Design tokens: warm institutional palette drawn from the trust's own
   emblem (maroon + gold ring), a serif for headings (Lora) paired with
   Public Sans for body copy — the same face used across Indian and US
   civic digital services, chosen here for its plain, trustworthy register.
   ========================================================================= */

:root{
  /* Brand core */
  --maroon: #6B2318;
  --maroon-dark: #4A160F;
  --maroon-soft: #8C3A2B;
  --gold: #B9812C;
  --gold-soft: #DCB877;
  --cream: #FAF7F1;
  --cream-alt: #F1E9DB;
  --paper: #FFFFFF;
  --ink: #262220;
  --ink-muted: #6B6259;
  --border: #E4D9C6;
  --border-strong: #D8C7A8;

  /* Work-area accent colours (also used on category pages) */
  --c-science: #2E6DA4;
  --c-water: #1B8A8A;
  --c-elderly: #7A4B3A;
  --c-deaddiction: #7A1F1F;
  --c-women: #A93368;
  --c-education: #2F7D46;

  /* Type */
  --font-head: 'Lora', 'Georgia', serif;
  --font-body: 'Public Sans', 'Segoe UI', Arial, sans-serif;

  /* Type scale (desktop) */
  --h1: 3rem;        /* ~48px */
  --h2: 2.1rem;       /* ~34px */
  --h3: 1.4rem;       /* ~22px */
  --body: 1.05rem;    /* ~17px */
  --nav: 0.98rem;
  --btn: 0.98rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: 0 2px 18px rgba(74, 22, 15, 0.08);
  --shadow-card: 0 1px 3px rgba(38, 34, 32, 0.06);

  --container: 1180px;
}

@media (max-width: 640px){
  :root{
    --h1: 2.05rem;   /* ~33px */
    --h2: 1.55rem;   /* ~25px */
    --h3: 1.2rem;    /* ~19px */
    --body: 1rem;    /* ~16px */
  }
}

*, *::before, *::after{ box-sizing: border-box; }

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

body{
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
svg.icon{ width: 19px; height: 19px; flex-shrink: 0; vertical-align: -4px; }
.btn svg.icon{ width: 17px; height: 17px; vertical-align: -3px; }
.split-body > svg.icon, .card-grid + svg.icon{
  width: 46px; height: 46px; color: var(--accent, var(--maroon)); margin-bottom: 6px;
}
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

h1, h2, h3, h4{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 0.6em;
  color: var(--maroon-dark);
}
h1{ font-size: var(--h1); }
h2{ font-size: var(--h2); }
h3{ font-size: var(--h3); }
h4{ font-size: 1.1rem; }

p{ margin: 0 0 1em; }
p:last-child{ margin-bottom: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 72px 0; }
.section--tight{ padding: 48px 0; }
.section--alt{ background: var(--cream-alt); }
.section--maroon{ background: var(--maroon-dark); color: #F3E9DD; }
.section--maroon h2, .section--maroon h3{ color: #FFFFFF; }
.section--border-top{ border-top: 1px solid var(--border); }

.eyebrow-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--maroon);
  background: var(--cream-alt);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.section--maroon .eyebrow-tag{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: #EBD9BE;
}

.section-head{
  max-width: 720px;
  margin: 0 0 40px;
}
.section-head p{ color: var(--ink-muted); font-size: 1.05rem; }

.text-muted{ color: var(--ink-muted); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--btn);
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--maroon);
  color: #FFF8EE;
  border-color: var(--maroon);
}
.btn-primary:hover{ background: var(--maroon-dark); border-color: var(--maroon-dark); }
.btn-outline{
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon-soft);
}
.btn-outline:hover{ background: var(--maroon); color: #FFF8EE; border-color: var(--maroon); }
.btn-gold{
  background: var(--gold);
  color: #3A2506;
  border-color: var(--gold);
}
.btn-gold:hover{ background: #A5732A; border-color: #A5732A; }
.btn-on-dark{
  background: transparent;
  color: #FFF8EE;
  border-color: rgba(255,248,238,0.5);
}
.btn-on-dark:hover{ background: rgba(255,248,238,0.12); border-color: #FFF8EE; }
.btn-block{ width: 100%; }
.btn-sm{ padding: 9px 18px; font-size: 0.88rem; }

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

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  /* Solid (not backdrop-filter) background: backdrop-filter would create a
     CSS containing block on this element, which traps the fixed-position
     mobile menu (a descendant) to the header's own box instead of the
     viewport. Keep this rule solid. */
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img{ height: 48px; width: 48px; flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.25; }
.brand-name{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--maroon-dark);
  white-space: nowrap;
}
.brand-sub{ font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.02em; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--nav);
  font-weight: 500;
}
.nav-links > li{ position: relative; }
.nav-links > li > a, .nav-links > li > button.nav-link{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--nav);
}
.nav-links > li > a:hover, .nav-links > li > button.nav-link:hover,
.nav-links > li.is-open > button.nav-link{
  background: var(--cream-alt);
  color: var(--maroon-dark);
}
.nav-links a.is-active{ color: var(--maroon); font-weight: 700; }
.caret{ width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform 0.2s ease; }
li.is-open .caret{ transform: rotate(225deg); margin-top: 3px; }

.dropdown{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 8px;
  display: none;
  flex-direction: column;
}
li.is-open .dropdown{ display: flex; }
.dropdown a{
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown a:hover{ background: var(--cream-alt); color: var(--maroon-dark); }
.dot{ width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.nav-cta{ display: flex; align-items: center; gap: 10px; }
.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span{ display: block; width: 21px; height: 2px; background: var(--maroon-dark); margin: 4px 0; transition: transform 0.2s ease, opacity 0.2s ease; }

@media (max-width: 980px){
  .nav-links{
    position: fixed;
    inset: 73px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 28px;
    overflow-y: auto;
    gap: 2px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--border);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links > li > a, .nav-links > li > button.nav-link{ width: 100%; padding: 14px 10px; font-size: 1.02rem; justify-content: space-between; }
  .dropdown{ position: static; box-shadow: none; border: none; background: var(--cream-alt); margin: 2px 0 6px; }
  .nav-cta{ display: none; }
  .nav-toggle{ display: inline-block; }
}

@media (min-width: 981px){
  li.has-dropdown:hover .dropdown{ display: flex; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.hero-est{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--maroon);
  background: var(--paper);
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero h1{ margin-bottom: 20px; }
.hero p.lede{ font-size: 1.12rem; color: var(--ink-muted); max-width: 52ch; margin-bottom: 30px; }
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figure{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 8 / 6;
}
.hero-figure img{ width: 100%; height: 100%; object-fit: cover; }

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

/* ---------- Page header (inner pages) ---------- */
.page-header{
  padding: 44px 0 40px;
  background: var(--maroon-dark);
  color: #F3E9DD;
  border-bottom: 4px solid var(--gold);
}
.page-header h1{ color: #FFFFFF; margin-bottom: 10px; }
.page-header p{ color: #E4D2B8; max-width: 65ch; font-size: 1.05rem; }
.breadcrumb{ font-size: 0.85rem; color: #D8BE95; margin-bottom: 14px; }
.breadcrumb a{ color: #F3E9DD; }
.breadcrumb a:hover{ text-decoration: underline; }

/* ---------- Cards ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .card-grid{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent, var(--maroon));
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .icon{ width: 42px; height: 42px; color: var(--accent, var(--maroon)); }
.card h3{ margin-bottom: 2px; }
.card p{ color: var(--ink-muted); flex-grow: 1; }
.card-link{ font-weight: 600; color: var(--accent, var(--maroon)); font-size: 0.94rem; margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover{ text-decoration: underline; }

.accent-science{ --accent: var(--c-science); }
.accent-water{ --accent: var(--c-water); }
.accent-elderly{ --accent: var(--c-elderly); }
.accent-deaddiction{ --accent: var(--c-deaddiction); }
.accent-women{ --accent: var(--c-women); }
.accent-education{ --accent: var(--c-education); }

/* ---------- Two column content ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media{ order: -1; }
  .split .split-media{ order: -1; }
}
.split-media img{
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.split-body ul{ margin-top: 14px; }
.split-body ul li{
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-muted);
}
.split-body ul li::before{
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--gold));
}

/* ---------- Pillars strip (Home) ---------- */
.pillars{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 980px){ .pillars{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: repeat(2, 1fr); } }
.pillar{
  text-align: center;
  padding: 22px 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.pillar .icon{ width: 30px; height: 30px; margin: 0 auto 10px; color: var(--accent, var(--maroon)); }
.pillar span{ font-size: 0.88rem; font-weight: 600; color: var(--ink); display: block; }
.pillars-5{ grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px){ .pillars-5{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .pillars-5{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- Timeline (Our Journey) ---------- */
.timeline{
  position: relative;
  margin-left: 10px;
  padding-left: 34px;
  border-left: 2px solid var(--border-strong);
}
.timeline-item{ position: relative; padding-bottom: 40px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{
  content: "";
  position: absolute;
  left: -41px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item.is-node::before{ background: var(--maroon); box-shadow: 0 0 0 2px var(--maroon); }
.timeline-date{ font-weight: 700; color: var(--maroon); font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 4px; }
.timeline-item p{ color: var(--ink-muted); max-width: 60ch; }

/* ---------- Quote / statement block ---------- */
.statement{
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 26px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--maroon-dark);
  max-width: 70ch;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--maroon-dark);
  color: #F3E9DD;
  border-radius: var(--radius-md);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ color: #fff; margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p{ color: #E4D2B8; margin: 0; }
.cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-btn{
  background: var(--paper);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color .2s ease;
}
.filter-btn:hover{ border-color: var(--maroon-soft); }
.filter-btn.is-active{ background: var(--maroon); border-color: var(--maroon); color: #FFF8EE; }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .gallery-grid{ grid-template-columns: 1fr; } }

.gallery-item{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream-alt);
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-cap{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 9px;
  background: linear-gradient(0deg, rgba(38,20,14,0.78), rgba(38,20,14,0));
  color: #FCEFDD;
  font-size: 0.84rem;
  font-weight: 600;
}
.gallery-item[hidden]{ display: none; }

.lightbox{
  position: fixed; inset: 0;
  background: rgba(28, 16, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 40px 20px;
}
.lightbox.is-open{ display: flex; }
.lightbox-inner{ max-width: 900px; width: 100%; text-align: center; }
.lightbox-inner img{ max-height: 76vh; margin: 0 auto; border-radius: var(--radius-sm); width: auto; }
.lightbox-cap{ color: #F3E9DD; margin-top: 14px; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-close{ top: 22px; right: 22px; }
.lightbox-prev{ left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next{ right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background: rgba(255,255,255,0.24); }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

.info-card{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .icon{ width: 26px; height: 26px; color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.info-card h4{ margin-bottom: 4px; }
.info-card a, .info-card address{ color: var(--ink-muted); font-style: normal; }
.info-card a:hover{ color: var(--maroon); text-decoration: underline; }
.quick-actions{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.form-card{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
}
.field textarea{ min-height: 130px; resize: vertical; }
.form-note{ font-size: 0.86rem; color: var(--ink-muted); margin-top: 10px; }
.form-success{
  display: none;
  background: #EAF3EC;
  border: 1px solid #BFDCC6;
  color: #235A34;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-success.is-visible{ display: block; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--maroon-dark);
  color: #E4D2B8;
  padding: 56px 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(228, 210, 184, 0.18);
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display: flex; gap: 12px; margin-bottom: 14px; align-items: center; }
.footer-brand img{ height: 44px; width: 44px; }
.footer-brand strong{ font-family: var(--font-head); color: #fff; font-size: 1.1rem; display:block; }
.footer-brand small{ color: #CBAE86; }
.site-footer h4{ color: #fff; font-size: 0.98rem; margin-bottom: 16px; }
.site-footer ul li{ margin-bottom: 10px; }
.site-footer a{ color: #E4D2B8; font-size: 0.94rem; }
.site-footer a:hover{ color: #fff; text-decoration: underline; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 26px;
  font-size: 0.85rem;
  color: #C7A87F;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar{
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: var(--paper);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 10px 14px;
  gap: 10px;
}
@media (max-width: 700px){ .mobile-callbar{ display: flex; } body{ padding-bottom: 66px; } }
.mobile-callbar a{
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.86rem;
}

/* ---------- Misc utility ---------- */
.list-check{ margin-top: 10px; }
.list-check li{ padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--ink-muted); }
.list-check li::before{
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent, var(--maroon));
}
.list-check li::after{
  content: "";
  position: absolute; left: 6px; top: 8px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--accent, var(--maroon));
  border-bottom: 2px solid var(--accent, var(--maroon));
  transform: rotate(-45deg);
}

.tag-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.tag{
  font-size: 0.82rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--cream-alt);
  border: 1px solid var(--border-strong);
  color: var(--maroon-dark);
  font-weight: 600;
}

.map-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
}
.map-card iframe{ width: 100%; height: 320px; border: 0; display: block; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--maroon); color: #fff; padding: 12px 18px; z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* Content is visible by default (no scroll-hidden states) so nothing
   ever depends on JavaScript timing to become readable. The hero
   alone gets a single, brief entrance for a touch of polish. */
.reveal{ opacity: 1; transform: none; }
.hero-grid > *{ animation: heroIn 0.7s ease both; }
.hero-grid > *:nth-child(2){ animation-delay: 0.08s; }
@keyframes heroIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-grid > *{ animation: none; }
}
