/* ============================================
   LITTLE MOUNTAIN ANIMAL SANCTUARY
   Modern, editorial, 2026 web design
   ============================================ */

/* -------- 1. DESIGN TOKENS -------- */
:root {
  /* Palette: cream, black, brand red (from LMAS heart logo) */
  --bg:           #FAF7F0;
  --surface:      #FFFFFF;
  --surface-2:    #F4EFE6;
  --surface-3:    #E9E1D2;
  --ink:          #1A1817;
  --ink-2:        #3D3936;
  --ink-3:        #7A7570;
  --line:         #E6E0D0;
  --line-2:       #D2CBB8;

  --accent:       #C8232E;   /* brand red (heart logo) */
  --accent-dark:  #8E1620;
  --accent-light: #E36572;

  /* gold tokens kept as aliases of red so older selectors still work */
  --gold:         #C8232E;
  --gold-dark:    #8E1620;
  --gold-light:   #E36572;

  --barn:         #8E1620;
  --barn-dark:    #6E101A;

  /* Dark surfaces for hero / footer */
  --night:        #14110D;
  --night-2:      #1F1B16;
  --night-line:   #2F2A22;

  /* Type scale (fluid) */
  --fs-display:   clamp(3rem, 7vw, 6rem);
  --fs-h1:        clamp(2.25rem, 5vw, 4rem);
  --fs-h2:        clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h3:        clamp(1.375rem, 2vw, 1.75rem);
  --fs-h4:        1.125rem;
  --fs-lead:      clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-body:      1rem;
  --fs-small:     0.875rem;
  --fs-eyebrow:   0.75rem;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(20,17,13,0.04), 0 1px 3px rgba(20,17,13,0.06);
  --shadow-md:  0 4px 6px -1px rgba(20,17,13,0.06), 0 10px 24px -6px rgba(20,17,13,0.10);
  --shadow-lg:  0 20px 50px -12px rgba(20,17,13,0.18);
  --shadow-glow: 0 0 0 6px rgba(200,35,46,0.12);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 600ms;

  /* Layout */
  --container: 1480px;
  --container-narrow: 920px;
  --container-wide: 1760px;
  --nav-h: 96px;
}

/* -------- 2. RESET / BASE -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Selection */
::selection { background: var(--gold); color: var(--night); }

/* -------- 3. TYPOGRAPHY -------- */
h1, h2, h3, h4, h5 {
  font-family: 'Lusitana', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.02em; }

.display {
  font-family: 'Lusitana', Georgia, serif;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

p { max-width: 70ch; }

/* -------- 4. LAYOUT -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

section { padding-block: var(--s-24); }
section.tight { padding-block: var(--s-16); }

.stack > * + * { margin-top: var(--s-6); }
.stack-lg > * + * { margin-top: var(--s-12); }

/* -------- 5. NAVIGATION -------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(250, 247, 240, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 247, 240, 0.92);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--ink);
  text-decoration: none;
}
.nav__logo img {
  height: 64px;
  width: auto;
  display: block;
}
.nav__logo-text { display: none; }
@media (min-width: 720px) {
  .nav__logo img { height: 72px; }
}
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--s-2);
  list-style: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav__menu { display: flex; }
}
.nav__menu > li { position: relative; }
.nav__menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__menu a:hover { color: var(--ink); background: var(--surface-2); }
.nav__menu a.active { color: var(--accent-dark); }
.nav__menu .has-children > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.5rem;
  opacity: 0.6;
}
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--s-2);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--dur) var(--ease);
}
.nav__menu .has-children:hover .nav__sub,
.nav__menu .has-children:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sub a { display: block; padding: 0.5rem 0.75rem; border-radius: var(--r-sm); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav__phone {
  display: none;
  font-size: 0.875rem;
  color: var(--ink-2);
  font-weight: 500;
}
.nav__phone::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 0.5em;
  vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (min-width: 1024px) { .nav__phone { display: inline-flex; align-items: center; } }
/* Compact nav button styles so two CTAs fit nicely */
.nav__btn-secondary,
.nav__btn-donate {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}
.nav__btn-donate .btn__icon {
  width: 1rem;
  height: 1rem;
  margin-right: -0.125em;
}
/* Hide secondary "Request a Visit" on narrow viewports to make room for Donate */
@media (max-width: 1100px) {
  .nav__btn-secondary { display: none; }
}
@media (max-width: 720px) {
  .nav__btn-donate { padding: 0.55rem 0.85rem; }
  .nav__phone { display: none; }
}

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast);
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 40;
  padding: var(--s-8) clamp(1rem, 4vw, 2.5rem);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-nav > ul > li > a {
  display: block;
  padding: 1.25rem 0;
  font-family: 'Lusitana', serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.mobile-nav .nav__sub {
  position: static;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 0 0 1rem 0;
}
.mobile-nav .nav__sub a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink-2);
  padding: 0.5rem 0;
}

/* -------- 6. BUTTONS --------
   IMPORTANT: button colors use --btn-bg / --btn-fg so they never collide
   with the page-level --bg variable. Modifier classes override the two
   custom properties; the .btn rule reads them. */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #FAF7F0;
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625em;
  padding: 0.85rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
  position: relative;
  isolation: isolate;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: #C8232E; --btn-fg: #FFFFFF; }
.btn--primary:hover { --btn-bg: #8E1620; --btn-fg: #FFFFFF; }

.btn--dark { --btn-bg: #14110D; --btn-fg: #FAF7F0; }
.btn--dark:hover { --btn-bg: #000000; --btn-fg: #FFFFFF; }

.btn--ghost { --btn-bg: transparent; --btn-fg: #1A1817; --btn-border: #D5CEBA; }
.btn--ghost:hover { --btn-bg: #FFFFFF; --btn-fg: #1A1817; --btn-border: #4A4642; }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #FFFFFF; --btn-border: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { --btn-bg: rgba(255,255,255,0.12); --btn-fg: #FFFFFF; --btn-border: rgba(255,255,255,0.8); }

.btn--lg { padding: 1.05rem 1.875rem; font-size: 1rem; }
.btn__icon { width: 1.125em; height: 1.125em; transition: transform var(--dur) var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--dur) var(--ease), color var(--dur-fast);
}
.link-arrow:hover { gap: 0.75em; color: var(--ink); }
.link-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform var(--dur) var(--ease);
}

/* -------- 7. HERO (HOMEPAGE) -------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--s-12)) 0 var(--s-16);
  overflow: hidden;
  isolation: isolate;
  color: #FFFFFF;
  background: var(--night);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Strong gradient — text MUST be readable */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15,12,8,0.85) 0%, rgba(15,12,8,0.62) 50%, rgba(15,12,8,0.30) 100%),
    linear-gradient(180deg, rgba(15,12,8,0.10) 0%, rgba(15,12,8,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__eyebrow {
  color: #E36572;
  margin-bottom: var(--s-6);
}
.hero__title {
  color: #FFFFFF;
  margin-bottom: var(--s-6);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  color: #E36572;
}
.hero__lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin-bottom: var(--s-8);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  margin-bottom: var(--s-12);
}
.hero__factbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}
.hero__factbar strong { color: #FFFFFF; font-weight: 600; }
.hero__factbar a { color: inherit; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
.hero__factbar a:hover { border-color: #E36572; color: #E36572; }
.hero__factbar-sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-12);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(200,35,46,0.10), transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  display: grid;
  gap: var(--s-6);
  max-width: 900px;
}
.page-hero__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--ink-3);
}
.page-hero__breadcrumbs a:hover { color: var(--ink); }
.page-hero__breadcrumbs span { color: var(--line-2); }
.page-hero__title { font-size: var(--fs-display); line-height: 1; letter-spacing: -0.025em; }
.page-hero__title em { font-style: italic; color: var(--gold-dark); }
.page-hero__lead { color: var(--ink-2); }

/* Page hero with image variant */
.page-hero--image {
  background: var(--night);
  color: var(--bg);
}
.page-hero--image .page-hero__title { color: var(--bg); }
.page-hero--image .page-hero__lead { color: rgba(250,247,240,0.8); }
.page-hero--image .page-hero__breadcrumbs { color: rgba(250,247,240,0.6); }
.page-hero--image .page-hero__breadcrumbs a:hover { color: var(--bg); }
.page-hero--image::before { background: linear-gradient(180deg, rgba(20,17,13,0.35) 0%, rgba(20,17,13,0.75) 100%); z-index: 0; }
.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* -------- 8. SECTIONS / FEATURES -------- */
.section-head {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-12);
  max-width: 720px;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: end;
  max-width: none;
}
@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1.2fr 1fr;
  }
  .section-head--split .lead { margin-left: auto; }
}

/* Split content (text + image side by side) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-12); }
  .split--narrow { grid-template-columns: 1.1fr 0.9fr; }
  .split--reverse > :first-child { order: 2; }
}
.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}
.split__media--wide { aspect-ratio: 16 / 11; }
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split:hover .split__media img { transform: scale(1.02); }
.split__media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.split__media-stack .split__media:nth-child(2) {
  margin-top: var(--s-8);
}

/* Stats / pillars row */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-12);
}
.pillar {
  position: relative;
  display: grid;
  gap: var(--s-4);
  padding: var(--s-8) var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur), background var(--dur);
  overflow: hidden;
  isolation: isolate;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,35,46,0.0) 0%, rgba(200,35,46,0.0) 100%);
  z-index: -1;
  transition: background var(--dur) var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(200,35,46,0.25);
  border-color: var(--accent);
}
.pillar:hover::before {
  background: linear-gradient(135deg, rgba(200,35,46,0.04) 0%, rgba(200,35,46,0.08) 100%);
}
.pillar__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(200,35,46,0.45);
  transition: transform var(--dur) var(--ease);
}
.pillar:hover .pillar__icon { transform: scale(1.06) rotate(-3deg); }
.pillar__icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
.pillar__title {
  font-family: 'Lusitana', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.pillar__desc { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.55; }

/* -------- 9. ANIMAL CARDS GRID -------- */
.animals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 700px) { .animals-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .animals-grid { grid-template-columns: 1fr 1fr 1fr; } }

.animal-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.animal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.animal-card__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.animal-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.animal-card:hover .animal-card__media img { transform: scale(1.04); }
.animal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(20,17,13,0.85) 100%);
  z-index: 0;
}
.animal-card__content {
  position: relative;
  z-index: 1;
  padding: var(--s-6);
  align-self: end;
  color: var(--bg);
}
.animal-card__title {
  font-family: 'Lusitana', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--s-2);
  color: var(--bg);
}
.animal-card__desc {
  font-size: var(--fs-small);
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: var(--s-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.animal-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
}
.animal-card__arrow::after { content: '→'; transition: transform var(--dur) var(--ease); }
.animal-card:hover .animal-card__arrow::after { transform: translateX(4px); }

/* -------- 10. STORY / FOUNDER BLOCK -------- */
.story {
  background: var(--night);
  color: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .story__inner { grid-template-columns: 1.1fr 0.9fr; }
}
.story__image {
  position: relative;
  min-height: 400px;
  background: var(--night-2);
}
.story__image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story__content {
  padding: clamp(var(--s-8), 5vw, var(--s-16));
  display: grid;
  align-content: center;
  gap: var(--s-6);
}
.story__content h2 { color: var(--bg); }
.story__content h2 em { color: var(--gold-light); font-style: italic; }
.story__content p { color: rgba(250,247,240,0.8); }
.story__quote {
  border-left: 2px solid var(--gold);
  padding-left: var(--s-4);
  font-family: 'Lusitana', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.25rem;
  line-height: 1.4;
}
.story__quote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.6);
}

/* -------- 11. CTA BAND -------- */
.cta-band {
  position: relative;
  padding: var(--s-24) 0;
  background: linear-gradient(135deg, #B0202A 0%, #8E1620 100%);
  color: #FFFFFF;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.20), transparent 60%);
}
.cta-band__inner { position: relative; }
.cta-band h2 { color: #FFFFFF; }
.cta-band h2 em { color: #FFE6E8; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.92); margin-inline: auto; }
.cta-band__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-8); }

/* -------- 12. PROSE (long-form text) -------- */
.prose {
  max-width: 70ch;
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.prose > * + * { margin-top: var(--s-4); }
.prose h2, .prose h3 { color: var(--ink); margin-top: var(--s-12); }
.prose h2 + p, .prose h3 + p { margin-top: var(--s-4); }
.prose p { max-width: none; }
.prose ul, .prose ol { padding-left: 1.5em; }
.prose li + li { margin-top: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--accent-dark); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--s-2) var(--s-6);
  font-family: 'Lusitana', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin-block: var(--s-8);
}
.prose img {
  border-radius: var(--r-lg);
  margin-block: var(--s-8);
}
.prose figure {
  margin-block: var(--s-8);
}
.prose figcaption {
  margin-top: var(--s-3);
  font-size: var(--fs-small);
  color: var(--ink-3);
  text-align: center;
}

/* -------- 13. FAQ ACCORDION -------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-6) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: 'Lusitana', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-dark); }
.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-size: 1.25rem;
  color: var(--accent-dark);
  transition: transform var(--dur) var(--ease), background var(--dur-fast);
}
.faq__item[open] summary::after {
  content: '−';
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.faq__answer {
  padding: 0 0 var(--s-6) 0;
  max-width: 65ch;
  color: var(--ink-2);
  animation: fadeIn var(--dur) var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* -------- 14. FORMS -------- */
.form {
  display: grid;
  gap: var(--s-4);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field {
  display: grid;
  gap: var(--s-2);
}
.form__field label {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  font-family: inherit;
}
.form__field textarea { resize: vertical; min-height: 140px; }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,35,46,0.15);
}
.form__field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
}
.form__field--check input { width: 1.125rem; height: 1.125rem; margin-top: 0.2em; accent-color: var(--accent); }
.form__field--check label { font-size: 0.875rem; color: var(--ink-2); }
.form__radios {
  display: flex;
  gap: var(--s-3);
}
.form__radios label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.form__radios label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(200,35,46,0.05);
}
.form__radios input { accent-color: var(--accent); }
.form__submit { margin-top: var(--s-2); justify-self: start; }

/* Card wrapping a form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(var(--s-6), 4vw, var(--s-12));
  box-shadow: var(--shadow-sm);
}

/* -------- 15. CONTACT INFO -------- */
.contact-info {
  display: grid;
  gap: var(--s-6);
  padding: var(--s-8);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.contact-info__row {
  display: grid;
  gap: var(--s-1);
}
.contact-info__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-info__value {
  font-size: 1.0625rem;
  color: var(--ink);
}
.contact-info__value a { border-bottom: 1px solid var(--line-2); transition: border-color var(--dur-fast); }
.contact-info__value a:hover { border-color: var(--accent); }

.hours-table {
  display: grid;
  gap: var(--s-2);
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-4);
  font-size: 0.9375rem;
  padding: var(--s-2) 0;
  border-bottom: 1px dashed var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row__day { color: var(--ink-2); }
.hours-row__time { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-row--closed .hours-row__time { color: var(--ink-3); font-weight: 400; }

/* -------- 16. GALLERY GRID -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-2);
  cursor: pointer;
}
.gallery-tile:nth-child(7n+1) { aspect-ratio: 4 / 5; }
.gallery-tile:nth-child(11n+5) { aspect-ratio: 1 / 1.2; }
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur);
}
.gallery-tile:hover img { transform: scale(1.05); filter: brightness(1.05); }
.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,17,13,0.4));
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery-tile:hover::after { opacity: 1; }

/* -------- 17. REVIEWS -------- */
.review-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-8), 5vw, var(--s-16));
  position: relative;
  overflow: hidden;
}
.review-feature::before {
  content: '"';
  position: absolute;
  top: -2.5rem;
  left: 1rem;
  font-family: 'Lusitana', serif;
  font-size: 16rem;
  line-height: 1;
  color: var(--surface-2);
  font-style: italic;
  z-index: 0;
  pointer-events: none;
}
.review-feature__content { position: relative; }
.review-feature__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-4);
}
.review-feature__body {
  font-family: 'Lusitana', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review-feature__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.review-feature__avatar {
  width: 48px; height: 48px;
  background: var(--accent-light);
  color: var(--surface);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Lusitana', serif;
  font-size: 1.125rem;
}
.review-feature__name { font-weight: 500; }
.review-feature__date { font-size: var(--fs-small); color: var(--ink-3); }

.review-rating-summary {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-6);
  background: var(--surface-2);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-8);
}
.review-rating-summary__big {
  font-family: 'Lusitana', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-dark);
  font-weight: 700;
}
.review-rating-summary__meta { display: grid; gap: var(--s-1); }
.review-rating-summary__stars { color: var(--gold); letter-spacing: 0.15em; }
.review-rating-summary__count { font-size: var(--fs-small); color: var(--ink-2); }

/* -------- 18. CHIPS / TAGS -------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-block: var(--s-6);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.375rem 0.875rem;
  font-size: var(--fs-small);
  font-weight: 500;
  background: var(--surface-2);
  color: var(--ink-2);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.chip--accent { background: rgba(200,35,46,0.10); color: var(--accent-dark); border-color: transparent; }
.chip--gold { background: rgba(200,35,46,0.12); color: var(--gold-dark); border-color: transparent; }

/* -------- 19. FACTS LIST (animal pages) -------- */
.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  list-style: none;
  padding: 0;
}
@media (min-width: 700px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.fact:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.fact__num {
  display: inline-block;
  font-family: 'Lusitana', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: var(--s-2);
  line-height: 1;
}
.fact__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.fact__body { font-size: 0.9375rem; color: var(--ink-2); }

/* -------- 19.4. BUTCHER'S PANTRY BANNER (donate page) -------- */
.bp-banner {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #14110D 0%, #2a1a16 100%);
  color: #FFFFFF;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(200,35,46,0.35);
  border: 1px solid rgba(200,35,46,0.3);
}
@media (min-width: 800px) {
  .bp-banner { grid-template-columns: 0.85fr 1.15fr; }
}
.bp-banner__image {
  position: relative;
  min-height: 280px;
  background: var(--night);
}
.bp-banner__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.bp-banner__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(20,17,13,0.55) 100%);
}
.bp-banner__content {
  padding: clamp(var(--s-6), 4vw, var(--s-12));
  display: grid;
  gap: var(--s-3);
  align-content: center;
}
.bp-banner__title {
  font-family: 'Lusitana', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.015em;
}
.bp-banner p { color: rgba(255,255,255,0.78); max-width: 50ch; }

/* -------- 19.5. BUTCHER'S PANTRY PARTNERSHIP SECTION -------- */
.bp-section {
  background: linear-gradient(180deg, var(--bg) 0%, #F4EDE3 100%);
  padding: var(--s-24) 0;
  position: relative;
  overflow: hidden;
}
.bp-section::before {
  content: '';
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200,35,46,0.06), transparent 70%);
  pointer-events: none;
}
.bp-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 900px) {
  .bp-section__inner { grid-template-columns: 1.1fr 1fr; gap: var(--s-16); }
}
.bp-section__media { order: 2; }
@media (min-width: 900px) { .bp-section__media { order: initial; } }

.bp-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-3);
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin-inline: auto;
}
.bp-collage__tile {
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface);
  position: relative;
}
.bp-collage__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.bp-collage__tile:hover img { transform: scale(1.05); }
.bp-collage__tile--1 { border-radius: var(--r-lg) var(--r-md) var(--r-md) var(--r-md); }
.bp-collage__tile--2 { transform: translateY(var(--s-4)); }
.bp-collage__tile--3 { transform: translateY(calc(var(--s-4) * -1)); }
.bp-collage__tile--4 { border-radius: var(--r-md) var(--r-md) var(--r-lg) var(--r-md); }

.bp-section__content { padding: 0 var(--s-2); }
.bp-section__partner-mark {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.bp-section__partner-mark img {
  width: 60px; height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.bp-section__partner-name {
  font-family: 'Lusitana', serif;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.2;
}
.bp-section__title {
  font-family: 'Lusitana', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
}
.bp-section__ctas {
  display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8);
}

/* -------- 20. FOOTER -------- */
.footer {
  background: var(--night);
  color: rgba(250,247,240,0.7);
  padding: var(--s-24) 0 var(--s-8);
  margin-top: var(--s-24);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid var(--night-line);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer__brand-block { display: grid; gap: var(--s-4); max-width: 360px; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--bg);
}
.footer__brand img {
  height: 96px;
  width: auto;
}
.footer__brand-text { display: none; }
.footer__about { font-size: 0.9375rem; line-height: 1.55; }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--s-4);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.footer__col a {
  font-size: 0.9375rem;
  color: rgba(250,247,240,0.7);
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--bg); }
.footer__hours { font-size: 0.875rem; }
.footer__hours .hours-row { border-color: var(--night-line); padding: var(--s-1) 0; }
.footer__hours .hours-row__day { color: rgba(250,247,240,0.7); }
.footer__hours .hours-row__time { color: var(--bg); }

.footer__bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: 0.8125rem;
  color: rgba(250,247,240,0.5);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
}
.footer__legal a { color: rgba(250,247,240,0.6); }
.footer__legal a:hover { color: var(--bg); }
.footer__socials { display: flex; gap: var(--s-3); }
.footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--night-line);
  border-radius: var(--r-pill);
  color: rgba(250,247,240,0.7);
  transition: all var(--dur-fast);
}
.footer__socials a:hover { color: var(--night); background: var(--gold); border-color: var(--gold); }

/* -------- 21. ANIMATIONS (entry transition) -------- */
/* Elements are always visible. The .in class triggers a one-shot fade-up. */
.reveal, .reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.reveal.in { animation: enter-up 0.9s var(--ease) both; }
.reveal-stagger.in > * { animation: enter-up 0.7s var(--ease) both; }
.reveal-stagger.in > *:nth-child(2) { animation-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { animation-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { animation-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { animation-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { animation-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { animation-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { animation-delay: 560ms; }

@keyframes enter-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 560ms; }

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

/* -------- 22. UTILITIES -------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-8 { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none; }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.bg-night { background: var(--night); color: var(--bg); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-3) var(--s-4);
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Print */
@media print {
  .nav, .footer, .cta-band { display: none; }
  body { color: #000; background: #fff; }
}
