/* =============================================================
   THE GALENA COMMONS — SHARED DESIGN SYSTEM
   Used by: index, about, commons, faith, health, finances, contact
   ============================================================= */

:root {
  /* Color tokens */
  --navy: #1f3a5f;
  --navy-deep: #15294a;
  --navy-soft: #2d4a72;
  --sage: #6b8e5a;
  --sage-deep: #4a6b3d;
  --honey: #e9c876;
  --honey-deep: #c9a449;
  --cream: #f7f1e3;
  --cream-soft: #fbf7ec;
  --paper: #fdfaf2;
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --ink-faint: #8a8a8a;
  --line: #d9cfb8;
  --line-soft: #eae3d1;

  /* Type system */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(31, 58, 95, 0.04), 0 8px 24px rgba(31, 58, 95, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(31, 58, 95, 0.06), 0 24px 48px rgba(31, 58, 95, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper texture overlay across every page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.05 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, header, footer { position: relative; z-index: 2; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(253, 250, 242, 0.92);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.1;
}
.logo em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Image-based logo variant — used in header and footer */
.logo-img {
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 1;
}
.logo-img img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo-img:hover img {
  opacity: 0.85;
}
/* Footer brand mark is a touch larger and gets margin below */
.logo-img-footer img {
  height: 64px;
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .logo-img img { height: 44px; }
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav a:not(.nav-cta):hover { color: var(--navy); }
.nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--honey-deep);
}
.nav-cta {
  background: var(--navy);
  color: var(--cream-soft) !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-deep); }

/* Portal link — small "login" style, distinct from main nav items */
.nav-portal {
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 13px !important;
  color: var(--ink-muted) !important;
  transition: all 0.2s;
}
.nav-portal::before {
  content: '🔑';
  margin-right: 5px;
  font-size: 11px;
  opacity: 0.7;
}
.nav-portal:hover {
  border-color: var(--navy);
  color: var(--navy) !important;
  background: var(--cream-soft);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 20px;
  position: relative;
  padding: 0 32px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sage);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
.eyebrow.left {
  padding: 0 0 0 32px;
}
.eyebrow.left::before { left: 0; }
.eyebrow.left::after { display: none; }

.display-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}
.display-h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

.display-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
}
.display-h2 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

.display-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--navy);
  color: var(--cream-soft);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream-soft);
}
.btn-honey {
  background: var(--honey);
  color: var(--navy-deep);
  border-color: var(--honey);
}
.btn-honey:hover {
  background: transparent;
  color: var(--honey-deep);
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head.left {
  text-align: left;
}
.section-head p {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.section-head.left p { margin-left: 0; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 64px;
  height: 1px;
  background: var(--honey-deep);
  transform: translateX(-50%);
}
.hero .lead {
  max-width: 680px;
  margin: 24px auto 0;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SECTION HERO (Faith / Health / Finances) ----------
   Editorial layout: text on the left, icon on the right.
   Used to give the three pillar pages a distinct rhythm from
   the centered Home / About / Commons / Contact heroes. */
.section-hero {
  padding: 72px 0 56px;
  position: relative;
}
.section-hero::after {
  /* honey accent rule under the block, aligned to the left content */
  content: '';
  position: absolute;
  left: 24px;
  bottom: 16px;
  width: 64px;
  height: 1px;
  background: var(--honey-deep);
}
.section-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.section-hero .hero-text { text-align: left; }
.section-hero .hero-text .eyebrow {
  margin-bottom: 18px;
  padding: 0 0 0 32px;
}
.section-hero .hero-text .eyebrow::after { display: none; }
.section-hero .hero-text .lead {
  margin: 22px 0 0;
  max-width: 560px;
}
.section-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}
.section-hero .hero-icon {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 60%, #f0e8ce 100%);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin-left: auto;
  padding: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.section-hero .hero-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(107, 142, 90, 0.18), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(233, 200, 118, 0.20), transparent 55%);
  pointer-events: none;
}
.section-hero .hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(31, 58, 95, 0.08));
}
@media (max-width: 820px) {
  .section-hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .section-hero .hero-text { text-align: center; }
  .section-hero .hero-text .eyebrow {
    padding: 0 32px;
  }
  .section-hero .hero-text .eyebrow::after { display: block; }
  .section-hero .hero-text .lead {
    margin: 22px auto 0;
  }
  .section-hero .hero-actions { justify-content: center; }
  .section-hero .hero-icon {
    max-width: 220px;
    margin: 0 auto;
    order: -1;  /* show icon ABOVE text on mobile */
  }
}

/* ---------- THREE PILLAR / FEATURE GRID ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.pillar-card .icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}
.pillar-card .icon-wrap svg { width: 100%; height: 100%; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-card h3 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.pillar-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 18px;
  flex: 1;
}
.pillar-card .arrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.pillar-card:hover .arrow { gap: 12px; }

/* ---------- ALTERNATING IMAGE/CONTENT BLOCK ---------- */
.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 80px 0;
}
.alt-block.reverse .alt-content { order: 2; }
.alt-block.reverse .alt-media { order: 1; }
.alt-content h2 { margin-bottom: 18px; }
.alt-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.alt-content p:last-of-type { margin-bottom: 24px; }
.alt-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.alt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon-style alt-media — for SVG illustrations rather than photos.
   Adds a soft gradient backdrop + centers a smaller icon inside. */
.alt-media.icon {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 60%, #f0e8ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  border: 1px solid var(--line-soft);
}
.alt-media.icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(107, 142, 90, 0.18), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(233, 200, 118, 0.20), transparent 55%);
  pointer-events: none;
}
.alt-media.icon img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(31, 58, 95, 0.08));
}

/* Portrait-style alt-media — gentle color-preserving treatment with watercolor frame.
   Used for Jerry's headshot on About and Finances pages.
   Container is 3:4 portrait to match the natural proportions of a headshot. */
.alt-media.portrait {
  aspect-ratio: 3 / 4;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
  border: 1px solid var(--line-soft);
  padding: 18px;
}
.alt-media.portrait::before {
  /* Subtle sage/honey corner washes (kept light so photo dominates) */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(107, 142, 90, 0.10), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(233, 200, 118, 0.16), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.alt-media.portrait::after {
  /* Soft cream feathered edge — pulls photo into the cream paper */
  content: '';
  position: absolute;
  inset: 18px;
  box-shadow:
    inset 0 0 28px 10px rgba(247, 241, 227, 0.45),
    inset 0 0 6px 2px rgba(247, 241, 227, 0.55);
  pointer-events: none;
  z-index: 3;
  border-radius: 4px;
}
.alt-media.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
  /* Gentle color treatment — preserves Jerry's actual colors */
  filter:
    saturate(0.88)
    contrast(1.04)
    brightness(1.02);
  border-radius: 4px;
  mask-image:
    radial-gradient(ellipse 110% 110% at 50% 50%, #000 75%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 110% 110% at 50% 50%, #000 75%, transparent 100%);
}

.alt-media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 15px;
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.alt-media .placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(107, 142, 90, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 200, 118, 0.15), transparent 50%);
}

/* ---------- BAND (alternate background section) ---------- */
.band {
  background: var(--cream-soft);
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.band.navy {
  background: var(--navy-deep);
  color: var(--cream-soft);
  border-color: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.band.navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(107, 142, 90, 0.22), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(233, 200, 118, 0.16), transparent 45%);
  pointer-events: none;
}
.band.navy > .container { position: relative; z-index: 1; }
.band.navy h2 { color: var(--cream-soft); }
.band.navy h2 em { color: var(--honey); }
.band.navy p { color: rgba(247, 241, 227, 0.85); }

/* ---------- TESTIMONIAL ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--sage);
  border-radius: 4px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.testimonial blockquote::before {
  content: '\201C';
  font-size: 42px;
  line-height: 0;
  vertical-align: -16px;
  color: var(--honey-deep);
  margin-right: 4px;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: block;
}
.testimonial cite span {
  font-weight: 400;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- INFO STRIP ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.info-strip .item .value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  /* Allow longer stat values like "IRS Representation" to wrap gracefully */
  hyphens: auto;
  word-break: break-word;
}
.info-strip .item .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- EVENTS LIST ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.event:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.event .date {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 30px;
}
.event h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy-deep);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.event .loc {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ---------- CLOSING CTA BAND ---------- */
.closing-cta {
  text-align: center;
}
.closing-cta h2 {
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta p {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.65;
}
.closing-cta .sub {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(247, 241, 227, 0.6);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 32px;
  font-size: 14px;
  color: var(--ink-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--navy); }
.footer-brand .logo { margin-bottom: 14px; display: inline-block; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 280px;
  color: var(--ink-muted);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--navy);
  color: var(--cream-soft);
  border-color: var(--navy);
}
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-bottom .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-deep);
  margin-bottom: 8px;
  font-size: 14px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s ease forwards;
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .alt-block { grid-template-columns: 1fr; gap: 32px; margin: 56px 0; }
  .alt-block.reverse .alt-content { order: 1; }
  .alt-block.reverse .alt-media { order: 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; gap: 0; padding: 20px 24px; border-bottom: 1px solid var(--line-soft); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; }
  .nav a.nav-cta { margin-top: 8px; text-align: center; }
  .mobile-toggle { display: block; }
  .hero { padding: 56px 0 40px; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .alt-content p { font-size: 15.5px; }
}


/* ---------- PRICE PREVIEW (under hero CTAs on Finances) ---------- */
.price-preview {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.price-preview strong {
  font-style: normal;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 16px;
}
