/* ==========================================================================
   AIFS Health Screening & Education Center
   Stylesheet — all design tokens live in :root, change them in one place.
   ========================================================================== */

:root {
  /* --- Brand palette (taken from the Center's signage) --------------------- */
  --green-900: #0c3a22;   /* deep forest — dark bands, headings */
  --green-800: #114b2c;
  --green-700: #157a3c;   /* primary green — the wall lettering */
  --green-600: #1d8f47;
  --lime: #8dc63f;        /* accent — the Center's wall / chairs */
  --lime-100: #edf6de;
  --gold: #c9a227;        /* AIFS accent */

  --ink: #14231a;
  --ink-soft: #4e6154;
  --cream: #f6f8f3;
  --white: #ffffff;
  --line: #dde6da;
  --line-strong: #c3d3c0;

  /* --- Typography --------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* --- Layout ------------------------------------------------------------- */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 26px;
  --header-h: 76px;

  --shadow-s: 0 2px 8px rgba(12, 58, 34, .06);
  --shadow-m: 0 14px 40px rgba(12, 58, 34, .10);
  --shadow-l: 0 30px 70px rgba(12, 58, 34, .16);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green-900);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* ==========================================================================
   Shared type helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--lime);
  flex: none;
}

.section-head { max-width: 780px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.section-head .lead {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-soft);
  max-width: 68ch;
}

.num {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--green-600);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-s); }
.btn--primary:hover { background: var(--green-800); box-shadow: var(--shadow-m); }

.btn--outline { background: transparent; color: var(--green-900); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--green-700); background: var(--lime-100); }

.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); border-color: #fff; }

.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { background: var(--lime-100); }

.btn--lime { background: var(--lime); color: var(--green-900); }
.btn--lime:hover { background: #9ed352; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.brand img { height: 42px; width: auto; border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-900);
  letter-spacing: -.01em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a {
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--green-700); }
.nav a.is-active { color: var(--green-900); border-bottom-color: var(--lime); }

.header-cta { display: inline-flex; align-items: center; gap: .9rem; flex: none; }
.header-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  white-space: nowrap;
}
.header-link:hover { text-decoration: underline; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--green-900);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 16px; height: 10px; position: relative; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: 0; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span::before { top: 4px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 4px; transform: rotate(-45deg); }

.drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.25rem var(--gutter) 1.75rem;
}
.drawer.is-open { display: block; }
.drawer nav { display: flex; flex-direction: column; gap: .1rem; }
.drawer nav a {
  text-decoration: none;
  color: var(--green-900);
  font-weight: 500;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 1.25rem; width: 100%; }

@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(900px 480px at 88% -10%, var(--lime-100) 0%, transparent 62%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 78%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.9rem);
  color: var(--green-900);
}

.hero-tagline {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--green-700);
}

.hero-lead {
  margin-top: 1.35rem;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 1.9rem 0;
  padding: 0;
  list-style: none;
}
.hero-chips li {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .45rem .9rem;
}
.hero-chips .arrow { border: 0; background: none; color: var(--lime); padding: 0; font-size: 1rem; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 62%;
  height: 58%;
  border: 2px solid var(--lime);
  border-radius: var(--radius-l);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: min(280px, 78%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 1.1rem 1.2rem;
}
.hero-badge .badge-top {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-700);
}
.hero-badge .badge-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-900);
  margin-top: .5rem;
  line-height: 1.25;
}
.hero-badge .badge-foot {
  margin-top: .8rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  color: var(--ink-soft);
}
.hero-badge .badge-tag {
  display: inline-block;
  background: var(--lime-100);
  color: var(--green-800);
  font-weight: 600;
  font-size: .72rem;
  border-radius: 999px;
  padding: .2rem .6rem;
  margin-right: .4rem;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .hero-badge { left: auto; right: 12px; bottom: -18px; }
  .hero-figure::after { display: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tint { background: var(--cream); }
.section--dark { background: var(--green-900); color: #e8f1e9; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--lime); }
.section--dark .section-head .lead { color: rgba(232, 241, 233, .78); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --- About ---------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-body p + p { margin-top: 1.1rem; }
.about-body p { color: var(--ink-soft); }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* --- Card grids ----------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.card h3 { font-size: 1.12rem; color: var(--green-900); }
.card p { font-size: .94rem; color: var(--ink-soft); }
.card .num { display: block; }

.callout {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--lime-100);
  border-left: 4px solid var(--lime);
  border-radius: var(--radius-s);
  padding: 1.1rem 1.35rem;
  font-size: .95rem;
  color: var(--green-900);
}
.callout strong { font-weight: 700; }

.section-actions { margin-top: 1.75rem; }

/* --- How it works --------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 1.65rem; border-top: 2px solid rgba(141, 198, 63, .45); }
.step .num { color: var(--lime); }
.step h3 { font-size: 1.15rem; margin-top: .5rem; }
.step p { font-size: .94rem; margin-top: .65rem; color: rgba(232, 241, 233, .8); }

/* --- RELAIS rail (signature element) -------------------------------------- */

.relais-rail { display: grid; gap: 0; margin-top: 1rem; }

.relais-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.relais-step:last-child { border-bottom: 1px solid var(--line); }

.relais-key { position: relative; text-align: center; }
.relais-letter {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-700);
  background: var(--lime-100);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.relais-key .num { display: block; margin-top: .55rem; }
.relais-step:not(:last-child) .relais-key::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 74px;
  bottom: -1.6rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--lime) 0%, rgba(141, 198, 63, .15) 100%);
}
.relais-body h3 { font-size: 1.3rem; color: var(--green-900); }
.relais-body p { margin-top: .6rem; color: var(--ink-soft); max-width: 72ch; }

.relais-note {
  margin-top: 2rem;
  font-size: .92rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-m);
  padding: 1.2rem 1.4rem;
}

@media (max-width: 620px) {
  .relais-step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .relais-letter { width: 50px; height: 50px; font-size: 1.7rem; }
  .relais-step:not(:last-child) .relais-key::after { top: 56px; }
}

/* --- Access --------------------------------------------------------------- */

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.access-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.6rem;
}
.access-item h3 { font-size: 1.08rem; color: var(--green-900); margin-top: .7rem; }
.access-item p { font-size: .94rem; color: var(--ink-soft); margin-top: .6rem; }
.access-item address { font-style: normal; font-weight: 600; color: var(--ink); margin-top: .6rem; }
.access-actions { margin-top: 2rem; }

/* --- Gallery -------------------------------------------------------------- */

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.gallery-stage {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow-m);
}
.gallery-stage img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity .3s ease;
}
.gallery-stage.is-loading img { opacity: .35; }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 1.35rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(12, 58, 34, .88));
  color: #fff;
}
.gallery-caption .label { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.gallery-caption .count { font-family: var(--font-mono); font-size: .8rem; color: var(--lime); }

.gallery-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 .75rem; pointer-events: none; }
.gallery-nav button {
  pointer-events: auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.9);
  color: var(--green-900);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-s);
  transition: background .18s ease, transform .18s ease;
}
.gallery-nav button:hover { background: #fff; transform: scale(1.06); }

.gallery-side { display: flex; flex-direction: column; gap: 1.25rem; }
.gallery-logo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.1rem;
  text-align: center;
}
.gallery-logo img { width: 100%; border-radius: var(--radius-s); }
.gallery-logo p { margin-top: .8rem; font-size: .88rem; color: var(--ink-soft); }

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  padding: 0; margin: 0;
  list-style: none;
}
.thumbs button {
  padding: 0; border: 2px solid transparent; background: none; cursor: pointer;
  border-radius: var(--radius-s); overflow: hidden; display: block; width: 100%;
  transition: border-color .18s ease, opacity .18s ease;
  opacity: .62;
}
.thumbs button img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.thumbs button:hover { opacity: 1; }
.thumbs button[aria-current="true"] { border-color: var(--lime); opacity: 1; }

@media (max-width: 900px) {
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-side { flex-direction: column-reverse; }
  .thumbs { grid-template-columns: repeat(8, 1fr); }
}

/* --- FAQ ------------------------------------------------------------------ */

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .num { flex: none; }
.faq-item summary .q { flex: 1; }
.faq-item summary .sign {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--green-700);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary .sign { transform: rotate(45deg); background: var(--green-700); color: #fff; border-color: var(--green-700); }
.faq-item .answer { padding: 0 0 1.5rem calc(2.6rem + 1rem); color: var(--ink-soft); font-size: .97rem; max-width: 78ch; }

@media (max-width: 620px) { .faq-item .answer { padding-left: 0; } }

/* --- Partnership band ----------------------------------------------------- */

.partner-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(120deg, var(--green-800), var(--green-700) 70%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow-m);
}
.partner-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.partner-band .eyebrow { color: var(--lime); }
.partner-band p { margin-top: 1rem; color: rgba(255,255,255,.85); max-width: 56ch; }
.partner-band .actions { justify-self: end; }

@media (max-width: 860px) {
  .partner-band { grid-template-columns: 1fr; }
  .partner-band .actions { justify-self: start; }
}

/* --- Schedule / CTA ------------------------------------------------------- */

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.cta-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-m);
}
.cta-card h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--green-900); margin-top: .6rem; }
.cta-card .note { margin-top: 1rem; font-size: .92rem; color: var(--ink-soft); }
.cta-card .btn-row { margin-top: 1.75rem; }

@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--green-900); color: rgba(232, 241, 233, .82); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer a { color: inherit; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.footer-brand img { height: 44px; width: auto; border-radius: 6px; }
.footer-brand span { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1rem; }

.footer-title { margin-top: 1.6rem; font-size: clamp(1.25rem, 2.2vw, 1.65rem); color: #fff; max-width: 22ch; }
.footer-lead { margin-top: 1rem; font-size: .95rem; max-width: 52ch; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p { font-size: .93rem; }
.footer-col .btn { margin-top: 1.2rem; }

.footer-contact { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .35rem; font-size: .93rem; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; color: #fff; }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  font-size: .82rem;
  color: rgba(232, 241, 233, .6);
}
.footer-bottom p { max-width: 78ch; }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Motion
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
  .site-header, .gallery-nav, .nav-toggle, .drawer { display: none !important; }
  body { color: #000; }
  .section { padding: 1rem 0; }
  .faq-item .answer { display: block !important; }
}
