/* ============================================================
   Catholic Parish of New Plymouth ? shared design system
   Premium ? accessible ? elderly-first ? brand-consistent
   Forest / gold / ivory ? Cormorant + Inter
   ============================================================ */

:root {
  --forest: #346952;
  --forest-dark: #264E3D;
  --forest-deep: #1C3B2E;
  --ocean: #2A98E1;
  --gold: #B79A5B;
  --gold-dark: #8C7236;
  --ivory: #FAF8F4;
  --linen: #F2EEE8;
  --charcoal: #232323;
  --grey: #4A4A4A;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container-max: 78rem;
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(3.5rem, 7vw, 6rem);
  --section-space-sm: clamp(2rem, 4vw, 3rem);
  --grid-gap: clamp(1.25rem, 2vw, 2rem);
  --ease: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 250ms;
  --dur-mid: 400ms;
  --shadow-card: 0 12px 40px -20px rgba(28, 59, 46, 0.16);
  --shadow-lift: 0 20px 56px -24px rgba(28, 59, 46, 0.22);
  --shadow-soft: 0 4px 20px -8px rgba(28, 59, 46, 0.1);
  --focus: 3px solid var(--gold-dark);
  --hero-overlay: linear-gradient(
      100deg,
      rgba(255, 253, 248, 0.42) 0%,
      rgba(255, 252, 245, 0.18) 30%,
      rgba(255, 253, 248, 0.04) 54%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(28, 59, 46, 0.03) 0%,
      transparent 22%,
      transparent 78%,
      rgba(28, 59, 46, 0.06) 100%
    );
  --hero-warmth:
    radial-gradient(ellipse 55% 50% at 12% 48%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 252, 245, 0.14) 40%, transparent 68%),
    radial-gradient(ellipse 45% 40% at 92% 18%, rgba(183, 154, 91, 0.14) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(52, 105, 82, 0.05) 0%, transparent 65%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  overflow-x: clip;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  padding-top: 6rem; /* room for fixed homepage-style header */
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, .font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; max-width: 68ch; }
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.4em; }
li { margin-bottom: 0.4em; }
hr { border: 0; border-top: 1px solid rgba(0,0,0,0.1); margin: 2rem 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--forest);
  color: #fff !important;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  text-decoration: none;
  /* Fully hidden until keyboard focus ? avoids green peek at top of viewport */
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.25rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border-radius: 0 0 12px 12px;
  outline: var(--focus);
  outline-offset: 2px;
  box-shadow: var(--shadow-lift);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ?? Layout ?? */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); }
.container--narrow { max-width: 52rem; }
.container--wide { max-width: 68rem; }

img, video, iframe, svg { max-width: 100%; }
.prose, .editorial, .editorial > *, .split, .split > *, .grid > *,
.magazine, .magazine > *, .listing, .process-steps, .soft-band {
  min-width: 0;
}
.prose, .prose a, .prose p, .prose li, p, h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section { padding-block: var(--section-space); }
.section--sm { padding-block: var(--section-space-sm); }
.section--linen { background: var(--linen); }
.section--forest { background: var(--forest-deep); color: rgba(255,255,255,0.88); }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--forest p { color: rgba(255,255,255,0.82); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 42rem; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head__lead {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.65;
}
.stack > * + * { margin-top: 1.25rem; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p:empty, .prose p:has(:only-child:empty) { display: none; }

/* ============================================================
   HEADER + NAVIGATION  (matches homepage design)
   ============================================================ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  color: var(--charcoal);
  /* Blur on a pseudo-element so position:fixed mobile menu is NOT trapped
     by backdrop-filter creating a containing block */
  background: transparent;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  pointer-events: none;
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 6rem;
  position: relative; z-index: 2;
}
.site-header__actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}

.nav-logo {
  display: inline-flex; align-items: center; flex-shrink: 0;
  text-decoration: none; color: inherit;
}
.nav-logo img {
  width: 5.5rem; height: 5.5rem; border-radius: 9999px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
  transition: transform var(--dur-mid) var(--ease-out);
}
@media (max-width: 380px) {
  .nav-logo img { width: 4.25rem; height: 4.25rem; }
  .site-header__bar { gap: 0.65rem; }
  .site-header__actions { gap: 0.45rem; }
}
.site-header.is-scrolled .nav-logo img { transform: scale(0.92); }

.primary-nav { display: none; }
@media (min-width: 1280px) {
  .primary-nav {
    display: flex; align-items: center; align-self: center;
    gap: 1.5rem; height: auto;
  }
}

.nav-item {
  position: relative;
  display: flex; align-items: center;
  align-self: center;
  min-height: 2.5rem;
}
.nav-link, .nav-trigger {
  display: inline-flex; align-items: center; gap: 0.3rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.6875rem; font-weight: 500;
  line-height: 1; white-space: nowrap;
  color: inherit; text-decoration: none;
  background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
  font-family: inherit; position: relative;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.primary-nav > .nav-link {
  min-height: 2.5rem;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { opacity: 0.75; }
.nav-link[aria-current="page"] { color: var(--forest); opacity: 1; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-trigger::after { display: none; }
.nav-trigger::before {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-item:hover .nav-trigger::before,
.nav-item:focus-within .nav-trigger::before,
.nav-item.is-open .nav-trigger::before {
  transform: scaleX(1); transform-origin: left;
}
.nav-trigger svg {
  width: 0.65rem; height: 0.65rem; opacity: 0.65;
  flex-shrink: 0; display: block;
  transition: transform var(--dur) var(--ease);
}
.nav-item:hover .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg,
.nav-item.is-open .nav-trigger svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(0.25rem);
  min-width: 14rem; padding: 0.625rem 0;
  background: var(--ivory); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  transition-delay: 0.22s;
  z-index: 60;
}
.nav-dropdown--scroll { max-height: 72vh; overflow-y: auto; }
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max(100%, 12rem);
  top: -1.35rem;
  height: 1.35rem;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-dropdown a {
  display: block; padding: 0.625rem 1.25rem;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal); text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-dropdown a:hover, .nav-dropdown a[aria-current="page"] {
  background: var(--linen); color: var(--forest); opacity: 1;
}
.nav-dropdown a::after { display: none; }

.nav-toggle {
  display: inline-grid; place-items: center;
  width: 2.75rem; height: 2.75rem; border-radius: 9999px;
  background: none; border: 0; cursor: pointer; color: inherit;
  transition: background var(--dur) var(--ease);
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
@media (min-width: 1280px) { .nav-toggle { display: none; } }

/* Full-screen mobile overlay — sibling of header, above page chrome */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 6rem;
  z-index: 70;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
  padding: 0.5rem 0 calc(2rem + env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open,
.mobile-nav.is-open { display: block; }
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
/* Match header bar to menu panel so open menu reads as one surface */
body.nav-open .site-header::before {
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}
.mobile-nav-group { border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  min-height: 2.75rem; padding: 1rem 0; background: none; border: 0; cursor: pointer;
  font: inherit; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.6875rem; font-weight: 500; color: var(--charcoal);
}
.mobile-nav-trigger svg {
  width: 0.875rem; height: 0.875rem; flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.mobile-nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.mobile-nav-panel.open { max-height: min(85vh, 60rem); }
.mobile-nav-panel a {
  display: flex; align-items: center;
  min-height: 2.75rem; padding: 0.75rem 0 0.75rem 1rem;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.mobile-nav-panel a:hover, .mobile-nav-panel a[aria-current="page"] { color: var(--forest); }
.mobile-nav-link {
  display: flex; align-items: center;
  min-height: 2.75rem; padding: 1rem 0;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.6875rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.85rem 1.75rem;
  border-radius: 9999px; font-size: 1rem; font-weight: 600; line-height: 1;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-dark); color: #fff; box-shadow: var(--shadow-lift); }
.btn-gold { background: var(--gold); color: var(--charcoal); box-shadow: var(--shadow-card); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; box-shadow: var(--shadow-lift); }
.btn-primary { box-shadow: var(--shadow-card); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: #fff; color: var(--forest-deep); }
.btn-ivory { background: var(--ivory); color: var(--forest-deep); }
.btn-ivory:hover { background: #fff; color: var(--forest); box-shadow: var(--shadow-soft); }
.btn-sm { min-height: 2.75rem; padding: 0.65rem 1.3rem; font-size: 0.95rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ============================================================
   PAGE HERO / BANNER + BREADCRUMBS ? soft haven overlay
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--linen);
  color: var(--forest-deep);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-warmth);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    122deg,
    transparent 52%,
    rgba(183, 154, 91, 0.07) 60%,
    rgba(255, 252, 240, 0.09) 68%,
    transparent 82%
  );
  pointer-events: none;
}
.page-hero--image {
  min-height: clamp(20rem, 46vw, 28rem);
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  background: var(--linen);
}
.page-hero--image::after {
  background: var(--hero-overlay);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--linen);
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
}
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.12) contrast(1.04) brightness(1.08);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.page-hero--image .page-hero__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2.25rem -2.75rem -2.5rem -3.25rem;
  border-radius: var(--radius-lg) 0 0 0;
  background: radial-gradient(
    ellipse 78% 82% at 18% 45%,
    rgba(255, 253, 248, 0.92) 0%,
    rgba(255, 252, 245, 0.62) 40%,
    rgba(255, 253, 248, 0.16) 64%,
    transparent 78%
  );
  box-shadow: none;
  pointer-events: none;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest);
  letter-spacing: 0.22em;
  font-weight: 600;
}
.page-hero .eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 91, 0.15));
  flex-shrink: 0;
}
.page-hero h1 {
  color: var(--forest-deep);
  margin: 0.85rem 0 0.75rem;
  text-wrap: balance;
  font-size: clamp(2.15rem, 5.2vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
}
.page-hero p {
  color: var(--grey);
  max-width: 38ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}
.page-hero .btn-group { margin-top: 1.75rem; }

.eyebrow {
  display: inline-block; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--forest);
}

.breadcrumbs { background: var(--linen); border-bottom: 1px solid rgba(0,0,0,0.05); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  list-style: none; margin: 0; padding: 0.9rem 0; font-size: 0.95rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; margin: 0; color: var(--grey); }
.breadcrumbs a { color: var(--forest); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--charcoal); font-weight: 600; }
.breadcrumbs svg { width: 0.85rem; height: 0.85rem; opacity: 0.5; }

/* ============================================================
   CARDS / GRIDS / LISTINGS
   ============================================================ */
.grid { display: grid; gap: var(--grid-gap); align-items: stretch; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* Equal-height cards in any grid row */
.grid > .card,
.grid > .card--link,
.grid > .card--media,
.grid > .feature-card,
.grid > .process-step,
.grid > .icon-tile,
.grid > .soft-band__item,
.grid > .listing__item,
.grid > .message-card,
.grid > .pillar-block,
.grid > .card-panel,
.grid > a.card,
.grid > a.card--link {
  height: 100%;
}

.card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column;
  height: 100%;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card h3 { margin-top: 0; }
.card > p:last-child,
.card .prose { flex: 1 1 auto; }
.card__meta { font-size: 0.95rem; color: var(--grey); margin-bottom: 0.5rem; }
.card--link { text-decoration: none; color: inherit; }
.card--link:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); color: inherit; border-color: rgba(52,105,82,0.2); }
.card__cta { margin-top: auto; padding-top: 1rem; color: var(--forest); font-weight: 600; }
.card--media { padding: 0; overflow: hidden; }
.card--media .card__body { padding: clamp(1.25rem, 2vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.card--media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.listing { display: grid; gap: 1rem; align-items: stretch; }
.listing__item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); text-decoration: none; color: inherit;
  height: 100%;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.listing__item:hover { background: var(--linen); border-color: var(--forest); color: inherit; box-shadow: var(--shadow-soft); }
.listing__item h3 { margin: 0; font-size: 1.3rem; }
.listing__item p { margin: 0.25rem 0 0; color: var(--grey); font-size: 1rem; }
.listing__item .card__cta { margin-left: auto; align-self: center; flex-shrink: 0; }

.members { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; margin: 0.5rem 0 0; }
.members li { margin: 0; padding: 0.4rem 0.9rem; background: var(--linen); border-radius: 9999px; font-size: 0.95rem; }
.member-role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 700; margin-right: 0.35rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* Committee page */
.committee-jump {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
}
.committee-jump a {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1rem; border-radius: 9999px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  color: var(--forest-deep); text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.committee-jump a:hover {
  background: var(--forest); color: #fff; border-color: var(--forest);
  box-shadow: var(--shadow-soft); transform: translateY(-1px);
}

.committee-stack { display: grid; gap: 1.25rem; }
.committee-card {
  display: grid; gap: 1.25rem; align-items: start;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  scroll-margin-top: 7rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.committee-card:hover { box-shadow: var(--shadow-lift); }
@media (min-width: 720px) {
  .committee-card { grid-template-columns: 5.5rem 1fr; gap: 1.75rem; }
}
.committee-card__aside {
  display: flex; flex-direction: row; align-items: center; gap: 0.85rem;
}
@media (min-width: 720px) {
  .committee-card__aside { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
.committee-card__icon {
  width: 3.25rem; height: 3.25rem; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--linen); color: var(--forest); flex-shrink: 0;
}
.committee-card__icon svg { width: 1.45rem; height: 1.45rem; }
.committee-card__index {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; color: var(--gold-dark); line-height: 1; font-weight: 500;
}
.committee-card__body h3 { margin: 0 0 0.5rem; }
.committee-card__body > p { margin: 0 0 1rem; color: var(--grey); max-width: 62ch; }
.committee-card__label {
  margin: 0 0 0.35rem; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest);
}

.timeline-compact {
  display: grid; gap: 0.75rem; margin-top: 1.5rem;
}
.timeline-compact__step {
  display: grid; gap: 0.15rem;
  padding: 0.85rem 1rem; background: #fff;
  border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
}
.timeline-compact__step strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; color: var(--forest-deep); font-weight: 600;
}
.timeline-compact__step span { font-size: 0.95rem; color: var(--grey); }

#centre { scroll-margin-top: 7rem; }
#committees { scroll-margin-top: 7rem; }

/* ============================================================
   SPLIT / MEDIA / FEATURE LAYOUTS
   ============================================================ */
.split {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
  .split--60-40 { grid-template-columns: 1.2fr 0.8fr; }
  .split--40-60 { grid-template-columns: 0.8fr 1.2fr; }
}
.split__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/3;
  background: var(--linen);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 3/4; }
.split__content .eyebrow { margin-bottom: 0.5rem; }
.split__content h2 { margin-bottom: 0.75rem; }
.split__content > p:last-child { margin-bottom: 0; }

.media-figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--linen);
}
.media-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.media-figure figcaption {
  padding: 0.85rem 1.1rem; font-size: 0.9rem; color: var(--grey);
  background: #fff; border-top: 1px solid rgba(0,0,0,0.05);
}

.feature-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-card);
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.feature-card__icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--linen); color: var(--forest);
  flex-shrink: 0;
}
.feature-card__icon svg { width: 1.4rem; height: 1.4rem; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.feature-card p { margin: 0; color: var(--grey); font-size: 1rem; flex: 1 1 auto; }

.icon-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}
.icon-tile__icon {
  flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 10px;
  display: grid; place-items: center; background: var(--linen); color: var(--forest);
}
.icon-tile__icon svg { width: 1.25rem; height: 1.25rem; }
.icon-tile h3 { margin: 0 0 0.25rem; font-size: 1.2rem; }
.icon-tile p { margin: 0; font-size: 0.95rem; color: var(--grey); }

/* ============================================================
   STATS / TIMELINE / QUOTE / CTA
   ============================================================ */
.stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center; padding: 1.5rem 1rem;
  background: #fff; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}
.stat__value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--forest);
  line-height: 1; margin-bottom: 0.4rem; font-weight: 500;
}
.stat__label { font-size: 0.9rem; color: var(--grey); margin: 0; max-width: none; }
.stats--on-dark .stat { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); box-shadow: none; }
.stats--on-dark .stat__value { color: var(--gold); }
.stats--on-dark .stat__label { color: rgba(255,255,255,0.75); }

.timeline { position: relative; display: grid; gap: 0; padding-left: 0; list-style: none; margin: 0; }
.timeline::before {
  content: ""; position: absolute; left: 1.1rem; top: 0.5rem; bottom: 0.5rem;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(183,154,91,0.2));
}
@media (min-width: 700px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}
.timeline__item {
  position: relative; padding: 0 0 2rem 3.25rem; margin: 0;
}
@media (min-width: 700px) {
  .timeline__item { width: 50%; padding: 0 2.5rem 2.5rem 0; text-align: right; }
  .timeline__item:nth-child(even) { margin-left: 50%; padding: 0 0 2.5rem 2.5rem; text-align: left; }
}
.timeline__item::before {
  content: ""; position: absolute; left: 0.7rem; top: 0.35rem;
  width: 0.9rem; height: 0.9rem; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--ivory); box-shadow: 0 0 0 2px var(--gold);
}
@media (min-width: 700px) {
  .timeline__item::before { left: auto; right: -0.5rem; }
  .timeline__item:nth-child(even)::before { left: -0.5rem; right: auto; }
}
.timeline__item h3 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.timeline__item p { margin: 0; color: var(--grey); font-size: 1rem; }

.quote-block {
  position: relative; padding: clamp(2rem, 4vw, 3rem);
  background: var(--linen); border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
}
.quote-block blockquote {
  margin: 0; font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.35;
  color: var(--forest-deep); font-weight: 500;
}
.quote-block cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-size: 0.95rem; color: var(--grey); font-family: Inter, sans-serif;
}

.cta-band {
  position: relative; overflow: hidden;
  background: var(--forest-deep); color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 0% 50%, rgba(183,154,91,0.2), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 800px) {
  .cta-band__inner { grid-template-columns: 1.4fr auto; }
}
.cta-band h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; max-width: 48ch; }

/* ============================================================
   ACCORDION / CONTACT / FORMS / GALLERY / TABLES
   ============================================================ */
.accordion { border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden; background: #fff; }
.accordion + .accordion { margin-top: 0.75rem; }
.accordion > summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.25rem;
  font-weight: 600; font-size: 1.15rem; color: var(--forest-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background var(--dur) var(--ease);
}
.accordion > summary:hover { background: var(--linen); }
.accordion > summary::-webkit-details-marker { display: none; }
.accordion > summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-dark); line-height: 1; }
.accordion[open] > summary::after { content: "?"; }
.accordion__body { padding: 0 1.25rem 1.25rem; }

.contact-block { display: grid; gap: 0.75rem; }
.contact-block a { font-weight: 600; }

.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--forest-deep); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.9rem 1.15rem; font: inherit; font-size: max(1rem, 16px);
  border: 1.5px solid rgba(28,59,46,0.18); border-radius: 12px; background: #fff;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field input:hover, .form-field textarea:hover, .form-field select:hover {
  border-color: rgba(52,105,82,0.4);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(183,154,91,0.28);
}
.form-field input.is-error, .form-field textarea.is-error {
  border-color: #B45353; box-shadow: 0 0 0 3px rgba(180,83,83,0.2);
}
.form-status {
  display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(52,105,82,0.1); color: var(--forest-deep); font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--error { background: rgba(180,83,83,0.12); color: #8B3030; }
.form-hp {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
@media (max-width: 359px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gallery-grid a, .gallery-grid figure { margin: 0; overflow: hidden; border-radius: 12px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px;
  transition: transform var(--dur-mid) var(--ease-out);
}
.gallery-grid a:hover img, .gallery-grid figure:hover img { transform: scale(1.04); }

.mass-table { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
.mass-table caption { text-align: left; color: var(--grey); margin-bottom: 1rem; }
.mass-table th, .mass-table td { padding: 0.9rem 0.75rem; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.08); }
.mass-table th[scope="row"] { text-align: left; font-family: "Cormorant Garamond", serif; font-weight: 600; color: var(--forest); font-size: 1.2rem; }
.mass-table thead th { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

.callout {
  background: var(--linen); border-left: 5px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.callout--forest {
  background: rgba(52,105,82,0.08); border-left-color: var(--forest);
}
.note { font-size: 0.95rem; color: var(--grey); font-style: italic; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.pill-row li {
  margin: 0; padding: 0.45rem 0.95rem; background: var(--linen);
  border-radius: 9999px; font-size: 0.9rem; color: var(--forest-deep); font-weight: 500;
}

/* ============================================================
   FOOTER ? homepage-matching layout
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--forest-deep);
  color: rgba(255,255,255,0.8);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.site-footer h4,
.site-footer .footer-heading {
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer a:hover { color: #fff; }

.footer-ornament {
  display: flex; justify-content: center;
  color: rgba(183, 154, 91, 0.45);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-grid--home {
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid--home { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .footer-grid--home {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }
}

.footer-brand { max-width: 22rem; }
.footer-logo {
  display: inline-block; margin-bottom: 1.25rem;
}
.footer-logo img {
  width: 6rem; height: 6rem; border-radius: 9999px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 20rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.footer-links li { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.footer-links a {
  transition: color var(--dur) var(--ease);
}

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.35rem; }
.footer-social a {
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.08); border: 0; color: #fff; transform: translateY(-2px);
}
.footer-social svg { width: 1.25rem; height: 1.25rem; }

.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom--home {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center; margin-top: 0;
}
.footer-bottom--home p { margin: 0; }
@media (min-width: 800px) {
  .footer-bottom--home {
    flex-direction: row; justify-content: space-between; text-align: left;
  }
}
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.footer-legal a:hover { color: #fff; }

/* ============================================================
   MOTION ? subtle reveals
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
/* Lift only on nested blocks — not whole sections (avoids inter-section gaps) */
[data-reveal]:not(section) {
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; }
[data-reveal]:not(section).is-visible { transform: none; }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(1rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }
[data-reveal-stagger].is-visible > *:nth-child(n+7) { transition-delay: 480ms; }
[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}
/* ============================================================
   HOMEPAGE-PARITY ELEVATION ? tokens, heroes, unique layouts
   ============================================================ */
:root {
  --section-space: clamp(4rem, 7.5vw, 6.5rem);
  --section-head-space: clamp(2.5rem, 4vw, 3.5rem);
  --card-pad: 1.75rem;
  --body-size: 1.0625rem;
}
body { font-size: var(--body-size); }
.eyebrow {
  letter-spacing: 0.26em;
  font-size: 0.6875rem;
  font-weight: 600;
}
.heading-section {
  font-size: clamp(2.375rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
}
.heading-card {
  font-size: clamp(1.4rem, 2.1vw, 1.875rem);
  line-height: 1.2;
  margin: 0;
}
.body-lg { font-size: 1.0625rem; line-height: 1.8; color: var(--grey); }
.body-sm { font-size: 0.9375rem; line-height: 1.7; color: var(--grey); }
.btn-secondary {
  background: transparent; color: var(--forest); border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest); color: #fff; box-shadow: var(--shadow-lift);
}
.nav-link[aria-current="page"],
.nav-trigger[aria-current="page"],
.nav-trigger[aria-current="true"],
.nav-dropdown a[aria-current="page"],
.mobile-nav-panel a[aria-current="page"],
#mnav a[aria-current="page"] {
  color: var(--gold-dark);
  font-weight: 600;
}
.nav-dropdown a[aria-current="page"]::before,
.mobile-nav-panel a[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 0.15em;
}
.btn-text:hover { color: var(--gold-dark); }

.page-hero--tall {
  min-height: clamp(24rem, 54vw, 34rem);
  align-items: center;
}
.page-hero--tall .page-hero__inner { max-width: 38rem; }
.page-hero--compact {
  min-height: clamp(15rem, 30vw, 19rem);
  padding-block: clamp(3.25rem, 6.5vw, 4.25rem);
}
.page-hero--split {
  min-height: 0;
  display: grid;
  align-items: stretch;
  padding: 0;
  background: linear-gradient(135deg, #FFFDFA 0%, #F7F3EC 100%);
}
.page-hero--split::before {
  background:
    radial-gradient(ellipse 80% 70% at 20% 30%, rgba(255, 250, 235, 0.7) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 12% 78%, rgba(183, 154, 91, 0.16) 0%, transparent 70%);
}
.page-hero--split::after { display: none; }
.page-hero--split .page-hero__inner::before { display: none; }
.page-hero--split .page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem) var(--container-px);
  max-width: none;
}
.page-hero--split .page-hero__media {
  position: relative;
  z-index: 0;
  min-height: clamp(15rem, 38vw, 24rem);
  transform: none;
  animation: none;
  filter: saturate(1.12) contrast(1.04) brightness(1.08);
  background-color: var(--linen);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.page-hero--split .page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(250, 248, 244, 0.14) 0%,
    transparent 50%
  );
  pointer-events: none;
}
@media (min-width: 900px) {
  .page-hero--split {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: clamp(24rem, 42vw, 30rem);
  }
  .page-hero--split .page-hero__media { min-height: 100%; order: 2; }
  .page-hero--split .page-hero__media::after {
    background: linear-gradient(
      to left,
      transparent 50%,
      rgba(255, 253, 248, 0.1) 100%
    );
  }
  .page-hero--split .page-hero__inner {
    padding: clamp(2.75rem, 5vw, 4.25rem) var(--container-px);
  }
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.page-hero--image .page-hero__actions .btn-outline,
.page-hero .page-hero__actions .btn-outline {
  border-color: rgba(28, 59, 46, 0.3);
  color: var(--forest-deep);
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(6px);
}
.page-hero--image .page-hero__actions .btn-outline:hover,
.page-hero .page-hero__actions .btn-outline:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.page-hero--image .page-hero__actions .btn-gold,
.page-hero .page-hero__actions .btn-gold {
  box-shadow: 0 10px 28px -12px rgba(140, 114, 54, 0.5);
}

.soft-band {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid; gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .soft-band--3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.soft-band__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.soft-band__item h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.soft-band__item p { margin: 0; font-size: 0.98rem; color: var(--grey); flex: 1 1 auto; }

/* Welcome page — Mission / Vision / Mother Church */
.welcome-charter {
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(250, 248, 244, 0.98) 100%);
  border: 1px solid rgba(28, 59, 46, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 860px) {
  .welcome-charter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.welcome-charter__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  min-width: 0;
}
@media (min-width: 860px) {
  .welcome-charter__item + .welcome-charter__item {
    border-left: 1px solid rgba(28, 59, 46, 0.08);
  }
}
@media (max-width: 859px) {
  .welcome-charter__item + .welcome-charter__item {
    border-top: 1px solid rgba(28, 59, 46, 0.08);
  }
}
.welcome-charter__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.75rem, 3.5vw, 2.5rem);
  right: clamp(1.75rem, 3.5vw, 2.5rem);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 91, 0.15));
  border-radius: 0 0 2px 2px;
}
.welcome-charter__index {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}
.welcome-charter__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(52, 105, 82, 0.08);
  border-radius: 12px;
}
.welcome-charter__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.welcome-charter__item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.welcome-charter__item p {
  margin: 0;
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 22rem;
  flex: 1 1 auto;
}
.welcome-charter__item .btn-text {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border: 0;
  background: none;
  padding: 0;
  transition: color var(--dur) var(--ease);
}

.schedule-strip {
  display: grid; gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--forest-deep); color: #fff;
  border-radius: var(--radius-lg);
}
@media (min-width: 700px) {
  .schedule-strip { grid-template-columns: auto 1fr auto; align-items: center; }
}
.schedule-strip__label {
  letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.7rem; font-weight: 600; color: var(--gold);
}
.schedule-strip__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 0.25rem 0 0; color: #fff;
}
.schedule-strip p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.78); max-width: none; }

.process-steps { display: grid; gap: 1.25rem; counter-reset: step; align-items: stretch; }
@media (min-width: 800px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-step {
  position: relative; padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  height: 100%;
  display: flex; flex-direction: column;
}
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem; color: var(--gold-dark); margin-bottom: 0.75rem; line-height: 1;
}
.process-step h3 { margin: 0 0 0.4rem; }
.process-step p { margin: 0; color: var(--grey); font-size: 0.98rem; flex: 1 1 auto; }

.spotlight {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--forest-deep); color: rgba(255,255,255,0.88);
  border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 860px) { .spotlight { grid-template-columns: 1fr 1fr; } }
.spotlight h2 { color: #fff; }
.spotlight p { color: rgba(255,255,255,0.8); }
.spotlight__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }

.editorial {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .editorial { grid-template-columns: minmax(0, 1fr) 18rem; align-items: start; }
}
.editorial__aside {
  padding: 1.5rem; background: var(--linen); border-radius: var(--radius);
  border-top: 4px solid var(--gold); position: sticky; top: 7rem;
}
.editorial__aside h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.editorial__aside p { margin: 0 0 1rem; font-size: 0.95rem; color: var(--grey); }

.related-rail { display: grid; gap: 0.75rem; }
.related-rail a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm); text-decoration: none; color: var(--forest-deep);
  font-weight: 600;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.related-rail a:hover {
  border-color: var(--forest); box-shadow: var(--shadow-soft); transform: translateX(3px); color: var(--forest);
}
.related-rail a span { color: var(--gold-dark); font-size: 1.1rem; }

.event-card {
  display: grid; gap: 1.25rem; align-items: center;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
@media (min-width: 720px) {
  .event-card { grid-template-columns: 7rem 1fr auto; }
}
.event-card__date {
  text-align: center; padding: 0.85rem 0.5rem;
  background: var(--linen); border-radius: var(--radius-sm);
}
.event-card__date strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 2rem; color: var(--forest); line-height: 1;
}
.event-card__date span {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey);
}

.magazine { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) {
  .magazine { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}
.magazine__lead img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.magazine__side { display: grid; gap: 1rem; }
.magazine__side article {
  padding: 1.25rem; background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-soft);
}
.magazine__side h3 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.magazine__side p { margin: 0; font-size: 0.95rem; color: var(--grey); }

.img-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--linen);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame--wide { aspect-ratio: 21/9; }
@media (max-width: 640px) {
  .img-frame--wide { aspect-ratio: 16/9; }
}
.img-frame--cinema { aspect-ratio: 16/9; }

.cta-band--linen { background: var(--linen); color: var(--charcoal); }
.cta-band--linen::before { display: none; }
.cta-band--linen h2 { color: var(--forest-deep); }
.cta-band--linen p { color: var(--grey); }

.faq-list { display: grid; gap: 0.75rem; max-width: 52rem; margin-inline: auto; }

.contact-layout {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.hub-intro {
  display: grid; gap: 1rem; max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head { margin-bottom: var(--section-head-space); }

/* ?? Our Vision / Moemoea ?? */
.vision-statement {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}
.vision-statement__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.vision-statement__core {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest-deep);
  margin: 0;
}
.vision-statement__expand {
  margin: 1.25rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--charcoal);
}
.vision-mission {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(52,105,82,0.18);
}
.vision-mission p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  color: var(--grey);
}

.pillar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.pillar-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(52,105,82,0.2);
  border-radius: 9999px;
  background: #fff;
  color: var(--forest-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pillar-nav a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.pillar-nav a small {
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.78rem;
}
.pillar-nav a:hover small { opacity: 0.9; }

.message-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}
@media (min-width: 900px) {
  .message-grid { grid-template-columns: 1fr 1fr; }
}
.message-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.message-card__role {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.message-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}
.message-card .prose { flex: 1 1 auto; }
.message-card .prose p:last-child { margin-bottom: 0; }
.message-card__sign {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--grey);
}
.message-card__sign strong {
  display: block;
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.pillar-block {
  scroll-margin-top: 7rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.pillar-block + .pillar-block { margin-top: 1.25rem; }
.pillar-block__mi {
  display: block;
  margin: 0.2rem 0 0.85rem;
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-style: italic;
}
.pillar-block .prose { max-width: none; }
.pillar-block__quote {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(52,105,82,0.15);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--forest-deep);
}
.pillar-block__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ?? Mobile quick actions + back to top (homepage parity) ?? */
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(28, 59, 46, 0.1);
  box-shadow: 0 -8px 28px -16px rgba(28, 59, 46, 0.25);
  gap: 0.65rem;
}
@media (max-width: 767px) {
  .mobile-action-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 5.25rem; }
}
.mobile-action-bar .btn { flex: 1 1 0; justify-content: center; min-height: 2.75rem; }
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 55;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9999px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
@media (max-width: 767px) {
  body.has-mobile-bar .back-to-top { bottom: 5.5rem; }
}
.back-to-top svg { width: 1.15rem; height: 1.15rem; }

.card {
  border-color: rgba(0, 0, 0, 0.04);
}
.card--link:hover,
.card:hover.card--link {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
