/* =============================================
   Living Well Mission - Global Stylesheet
   Elevated Design System
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #1A2A4A;
  --navy-deep: #0F1D33;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-subtle: rgba(201, 168, 76, 0.12);
  --teal: #5B9EA6;
  --ivory: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #2A2A2A;
  --warm-gray: #6B6560;
  --max-width: 1140px;
  --section-pad: clamp(48px, 6vw, 80px);
  --section-pad-sm: clamp(32px, 4vw, 56px);
  --radius-card: 12px;
  --radius-btn: 8px;
  --gap: 24px;
  --nav-height: 72px;
  --shadow-sm: 0 1px 3px rgba(26, 42, 74, 0.06), 0 1px 2px rgba(26, 42, 74, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 42, 74, 0.08), 0 2px 6px rgba(26, 42, 74, 0.04);
  --shadow-lg: 0 12px 40px rgba(26, 42, 74, 0.12), 0 4px 12px rgba(26, 42, 74, 0.06);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Calibri, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding-bottom: 2px;
  transition: color 280ms ease, background-size 280ms ease;
}

a:hover {
  color: var(--teal);
  background-size: 100% 2px;
}

ul, ol {
  list-style: none;
}

/* ---------- Focus & Selection ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--navy);
  color: var(--ivory);
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
  background-image: none;
}

.skip-link:focus {
  top: 8px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: Georgia, 'Lora', serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.tagline,
.subtitle {
  font-family: Georgia, 'Lora', serif;
  font-style: italic;
  font-weight: 400;
}

small, .caption {
  font-size: 14px;
  line-height: 1.5;
}

/* Hero H1 gold underline flourish */
.hero-content h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* Section H2 decorative underline */
h2 {
  transition: letter-spacing 400ms ease;
}

.section h2,
.cta-banner h2 {
  position: relative;
}

.section .text-center h2::after,
.section.text-center h2::after,
.section > .container > h2.text-center::after,
h2.text-center::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* Blockquote treatment */
blockquote {
  position: relative;
  font-family: Georgia, 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  padding-left: 40px;
  margin: 20px 0;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 0;
  font-family: Georgia, 'Lora', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

/* Drop cap on Who We Are */
.drop-cap::first-letter {
  font-family: Georgia, 'Lora', serif;
  font-size: 56px;
  color: var(--gold);
  float: left;
  line-height: 1;
  padding-right: 8px;
  margin-top: -2px;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--gray {
  background: var(--ivory);
}

.section--navy {
  background: var(--navy);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: Calibri, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 280ms var(--ease-out);
  text-decoration: none;
  line-height: 1;
  background-image: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '\2192';
  font-size: 16px;
  transition: transform 280ms var(--ease-out);
  display: inline-block;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn svg,
.btn .arrow {
  transition: transform 240ms var(--ease-out);
}

.btn:hover svg,
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  color: var(--ivory);
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.lwm-scrolled {
  background: rgba(250, 247, 242, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 1px 12px rgba(26, 42, 74, 0.06);
}

.site-header.lwm-scrolled .nav-links a {
  color: var(--navy);
}

.site-header.lwm-scrolled .nav-links a:hover {
  color: var(--gold);
}

.site-header.lwm-scrolled .nav-logo img {
  filter: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: Calibri, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .external-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.7;
}

/* Golf Tournament nav link - distinguished style */
.nav-links a.nav-golf {
  color: var(--gold);
  font-weight: 600;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  padding: 6px 12px;
  margin-left: 4px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.nav-links a.nav-golf::after {
  display: none;
}

.nav-links a.nav-golf:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.site-header.lwm-scrolled .nav-links a.nav-golf {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.5);
}

.site-header.lwm-scrolled .nav-links a.nav-golf:hover {
  color: var(--navy);
  background: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--navy-deep);
  z-index: 1050;
  transition: right 0.35s var(--ease-out);
  padding: var(--nav-height) 32px 32px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: Calibri, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s, padding-left 0.25s;
  text-decoration: none;
  background-image: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  padding-left: 8px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  backdrop-filter: blur(4px);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Video Hero ---------- */
.hero-video-wrap {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 29, 51, 0.55) 0%,
    rgba(26, 42, 74, 0.40) 50%,
    rgba(15, 29, 51, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  container-type: inline-size;
  max-width: 960px;
  width: 100%;
  padding: 0 24px;
}

.hero-content .hero-logo {
  max-width: 40cqi;
  margin: 0 auto 24px;
}

.hero-content h1 {
  font-family: Georgia, 'Lora', serif;
  font-size: clamp(40px, 9cqi, 86px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-content .tagline {
  font-size: clamp(22px, 4cqi, 36px);
  color: var(--gold);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap video {
    display: none;
  }

  .hero-video-wrap {
    background: var(--navy);
  }

  .scroll-indicator {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Page Hero (non-video) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #243B65 100%);
  padding: 110px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.page-hero .subtitle {
  font-size: 19px;
  color: var(--gold);
  position: relative;
  opacity: 0.9;
}

/* ---------- Content Sections ---------- */
.section p + p {
  margin-top: 1em;
}

.section h2 {
  margin-bottom: 20px;
}

/* Subtle section dividers */
.section + .section {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.section--gray + .section,
.section + .section--gray {
  border-top: none;
}

/* ---------- Steps / Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  margin-top: 32px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: Georgia, 'Lora', serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.step p {
  font-size: 15px;
}

/* ---------- Donate CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #243B65 100%);
  padding: var(--section-pad-sm) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.cta-banner h2 {
  font-family: Georgia, 'Lora', serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 16px;
}

/* ---------- Stat Cards ---------- */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 320ms ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-number {
  font-family: Georgia, 'Lora', serif;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---------- How It Works (3-step) ---------- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
  position: relative;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.flow-step:hover .flow-step-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.flow-step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Connector arrows between flow steps on desktop */
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ---------- Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}

.team-card {
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card .headshot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headshot-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ivory) 0%, #f0ece4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Lora', serif;
  font-size: 34px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 auto 14px;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.2);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card .title {
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.team-card .bio {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ---------- Founder Section ---------- */
.founder-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.founder-photo {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.founder-photo .headshot-placeholder {
  width: 260px;
  height: 300px;
  border-radius: var(--radius-card);
  font-size: 44px;
}

.founder-headshot {
  width: 260px;
  height: 300px;
  border-radius: var(--radius-card);
  object-fit: cover;
  object-position: center 18%;
}

.team-headshot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  margin: 0 auto 14px;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-left: 3px solid var(--gold);
  margin-bottom: 6px;
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 280ms ease, border-left-color 280ms ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.is-open {
  border-left-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 48px 18px 20px;
  font-family: Calibri, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out), color 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.is-open .faq-question::after {
  content: '\2212';
  color: var(--teal);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

/* ---------- Contribute Pillar Cards ---------- */
.contribute-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.contribute-pillar-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 40px 28px 32px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.contribute-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contribute-pillar-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.contribute-pillar-card h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.contribute-pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ---------- Donate Form Embed ---------- */
.donate-embed {
  max-width: 800px;
  margin: 0 auto;
}

.donate-embed iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}

/* ---------- Sponsor Cards ---------- */
.sponsors-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsor-logo-item {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
  text-decoration: none;
}

.sponsor-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.sponsor-logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ---------- Core Values ---------- */
.core-values-section {
  background: var(--navy);
  color: var(--white);
}

.core-values-section h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.core-value-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.core-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.core-value-icon {
  color: var(--gold);
  margin-bottom: 12px;
}

.core-value-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--navy);
}

.core-value-verse {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.core-value-quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ---------- Gala Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ivory) 0%, #f0ece4 100%);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  opacity: 0.6;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.gallery-placeholder:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Founding Benefactor ---------- */
.benefactor-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}

.benefactor-logo-img {
  width: 100%;
  height: auto;
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.benefactor-logo .sponsor-logo-placeholder {
  width: 280px;
  height: 160px;
  font-size: 18px;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

/* ---------- Mission/Vision Side-by-Side ---------- */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-vision > div {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-top: 3px solid var(--gold);
  transition: box-shadow 320ms ease, transform 320ms var(--ease-out);
}

.mission-vision > div:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mission-vision h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 40px 0 20px;
  text-align: center;
  border-top: 2px solid var(--gold);
  position: relative;
}

.footer-motto {
  font-family: Georgia, 'Lora', serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-email {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: color 280ms ease, background-size 280ms ease;
}

.footer-email:hover {
  color: var(--gold);
  background-size: 100% 1px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s, transform 0.25s var(--ease-out);
  text-decoration: none;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s var(--ease-out);
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.5px;
}

/* ---------- 404 Page ---------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.page-404 h1 {
  font-size: 72px;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ---------- Numbered List in Steps ---------- */
.steps-list {
  counter-reset: step-counter;
  list-style: none;
  max-width: 600px;
  margin: 28px auto;
}

.steps-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: box-shadow 280ms ease, transform 280ms var(--ease-out);
}

.steps-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.steps-list li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: Georgia, 'Lora', serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(201, 168, 76, 0.25);
}

/* ---------- "Case for giving" list ---------- */
.giving-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.giving-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}

.giving-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 1px 3px rgba(201, 168, 76, 0.3);
}

/* ---------- Image Treatment ---------- */
.section img:not(.hero-logo):not(.nav-logo img),
.headshot img,
.gallery-placeholder {
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-btn);
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.section img:not(.hero-logo):not(.nav-logo img):hover,
.headshot img:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

.sponsor-logo-placeholder,
.nav-logo img {
  transition: transform 240ms ease;
}

.sponsor-logo-placeholder:hover,
.nav-logo img:hover {
  transform: scale(1.03);
}

/* ---------- Scroll Progress Bar ---------- */
.lwm-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1001;
  pointer-events: none;
}

/* ---------- Section Entry Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .lwm-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 700ms var(--ease-out),
                transform 700ms var(--ease-out);
  }

  .lwm-reveal.lwm-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Numbered step stagger */
  .steps-list {
    position: relative;
  }

  .steps-list::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
    z-index: 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 900ms var(--ease-out);
  }

  .steps-list.lwm-steps-revealed::before {
    transform: scaleY(1);
  }

  .steps-list li::before {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 400ms var(--ease-out),
                transform 400ms var(--ease-out);
  }

  .steps-list.lwm-steps-revealed li::before {
    opacity: 1;
    transform: scale(1);
  }

  .steps-list.lwm-steps-revealed li:nth-child(1)::before { transition-delay: 0ms; }
  .steps-list.lwm-steps-revealed li:nth-child(2)::before { transition-delay: 120ms; }
  .steps-list.lwm-steps-revealed li:nth-child(3)::before { transition-delay: 240ms; }
  .steps-list.lwm-steps-revealed li:nth-child(4)::before { transition-delay: 360ms; }
  .steps-list.lwm-steps-revealed li:nth-child(5)::before { transition-delay: 480ms; }
}

/* Reduced motion: reveal with opacity only */
@media (prefers-reduced-motion: reduce) {
  .lwm-reveal {
    opacity: 0;
    transition: opacity 200ms ease;
  }

  .lwm-reveal.lwm-revealed {
    opacity: 1;
  }

  .btn:hover,
  .btn:active {
    transform: none !important;
  }

  .btn:hover svg,
  .btn:hover .arrow {
    transform: none !important;
  }

  .section img:not(.hero-logo):hover,
  .headshot img:hover,
  .gallery-placeholder:hover {
    transform: none !important;
  }

  .sponsor-logo-placeholder:hover,
  .nav-logo img:hover {
    transform: none !important;
  }
}

/* ---------- Responsive: 1200px ---------- */
@media (max-width: 1200px) {
  .nav-links a {
    font-size: 12.5px;
    padding: 8px 8px;
  }
}

/* ---------- Responsive: 768px (Tablet) ---------- */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }


  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo .headshot-placeholder,
  .founder-headshot {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }

  .benefactor-layout {
    grid-template-columns: 1fr;
  }

  .benefactor-logo {
    text-align: center;
  }

  .benefactor-logo-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .benefactor-logo .sponsor-logo-placeholder {
    margin: 0 auto;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .contribute-pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-video-wrap {
    background: var(--navy);
  }

  .hero-video-wrap video {
    object-fit: cover;
    transform: translate(-50%, -50%) scale(0.7);
  }

  .page-hero {
    padding: 96px 0 40px;
  }

  .stat-card .stat-number {
    font-size: 36px;
  }
}

/* ---------- Responsive: 480px (Mobile) ---------- */
@media (max-width: 480px) {
  .drop-cap::first-letter {
    float: none;
    font-size: inherit;
    color: inherit;
    padding: 0;
  }

  .stat-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sponsors-showcase {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .page-404 h1 {
    font-size: 48px;
  }

  .mission-vision > div {
    padding: 24px 20px;
  }
}
