/* -- Website designed by Pro Media Management - www.promediamgmt.com -- */

/* ============================================================
   Freedom Park Association — Main Stylesheet
   Site: freedomparkassociation.com
   Built by: Pro Media Management | promediamgmt.com
   ============================================================ */


/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --navy:          #1A3A6B;
  --deep-navy:     #0F2347;
  --red:           #B22234;
  --light-blue:    #EEF3FA;
  --white:         #FFFFFF;
  --near-black:    #3A3A3A;
  --mid-gray:      #6B7280;
  --font:          'Outfit', sans-serif;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-bold:       700;
  --fs-h1:         36px;
  --fs-h2:         26px;
  --fs-h3:         20px;
  --fs-h4:         16px;
  --fs-eyebrow:    11px;
  --fs-body:       15px;
  --fs-small:      12px;
  --fs-nav:        13px;
  --fs-btn:        14px;
  --fs-btn-sm:     12px;
  --section-pad:   80px 0;
  --container-max: 1160px;
  --container-pad: 0 24px;
  --pill:          100px;
  --transition:    0.2s ease;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--near-black);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }


/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  font-size: var(--fs-body);
  color: var(--near-black);
  line-height: 1.65;
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.text-small  { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--near-black); }
.text-muted  { color: var(--mid-gray); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-red    { color: var(--red); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: var(--fw-medium);
  font-size: var(--fs-btn);
  border-radius: var(--pill);
  padding: 12px 28px;
  cursor: pointer;
  transition: opacity var(--transition), background-color var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary     { background-color: var(--red);   color: var(--white); }
.btn-primary:hover { opacity: 0.88; }

.btn-navy        { background-color: var(--navy);  color: var(--white); }
.btn-navy:hover  { opacity: 0.88; }

.btn-ghost       { background-color: var(--white); color: var(--navy); border: none; font-weight: var(--fw-medium); }
.btn-ghost:hover { opacity: 0.90; }

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

.btn-tertiary    { background-color: var(--navy); color: var(--white); font-size: var(--fs-btn-sm); padding: 9px 20px; }
.btn-tertiary:hover { opacity: 0.88; }

.btn-nav         { background-color: var(--red); color: var(--white); font-size: var(--fs-btn-sm); padding: 9px 20px; }
.btn-nav:hover   { opacity: 0.88; }

.btn-nav-outline {
  background-color: var(--red);
  color: var(--white);
  border: none;
  font-size: var(--fs-btn-sm);
  font-weight: var(--fw-medium);
  padding: 9px 20px;
  border-radius: var(--pill);
  font-family: var(--font);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.btn-nav-outline:hover { opacity: 0.88; }

.btn-banner      { background-color: var(--white); color: var(--red); font-size: var(--fs-btn-sm); font-weight: var(--fw-medium); padding: 9px 20px; }
.btn-banner:hover { opacity: 0.90; }

.btn-full        { width: 100%; text-align: center; }


/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */

.section           { padding: var(--section-pad); }
.section-white     { background-color: var(--white); }
.section-light     { background-color: var(--light-blue); }
.section-navy      { background-color: var(--navy); }
.section-deep-navy { background-color: var(--deep-navy); }
.section-red       { background-color: var(--red); }


/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-main { background-color: var(--white); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 24px;
  gap: 32px;
}

.header-inner nav { margin-left: auto; }
.header-logo      { flex-shrink: 0; }
.header-logo img  { display: block; height: 56px; width: auto; }

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

.nav-links a {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--navy);
  transition: color var(--transition);
  white-space: nowrap;
}

/* Active state — desktop top-level */
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}

/* Active state — desktop dropdown */
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--red);
}

.nav-dropdown-menu a[aria-current="page"] {
  font-weight: var(--fw-bold);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Desktop dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 210px;
  border-top: 3px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 200;
  border-radius: 0 0 6px 6px;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--navy);
  border-bottom: 1px solid var(--light-blue);
  transition: background-color var(--transition);
}

.nav-dropdown-menu a:last-child  { border-bottom: none; }
.nav-dropdown-menu a:hover       { background-color: var(--light-blue); }

/* Navy accent strip */
.header-accent-strip { height: 10px; background-color: var(--navy); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer   { background-color: var(--deep-navy); }
.footer-main   { padding: 56px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: var(--fs-small);
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--mid-gray);
  transition: color var(--transition);
}
.footer-facebook:hover { color: var(--white); }

.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.footer-link-col h5 {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-link-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-link-col a {
  font-size: var(--fs-small);
  color: var(--mid-gray);
  transition: color var(--transition);
}
.footer-link-col a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }

.footer-bottom-inner { display: flex; align-items: center; justify-content: center; }

.footer-copy { font-size: var(--fs-small); color: var(--mid-gray); text-align: center; }

.footer-credit {
  background-color: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* PMM Credit — fireworks animation */
.pmm-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: var(--fw-medium);
  font-family: var(--font);
}

.pmm-logo-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  overflow: visible;
}

.pmm-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-left: -100px;
  margin-top: -100px;
  pointer-events: none;
  z-index: 100;
}

.pmm-logo-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transform-origin: center center;
}

.pmm-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
  z-index: 1;
}

.pmm-char {
  display: inline-block;
  transition: none;
  color: rgba(255,255,255,0.5);
  -webkit-text-fill-color: currentColor;
  background: none;
}


/* ============================================================
   INTERIOR PAGE HEROES
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero--short { min-height: 320px; }

.page-hero--light {
  background-color: var(--light-blue);
  min-height: auto;
  padding: 64px 0;
  display: block;
}

.page-hero--light h1 { font-size: 36px; max-width: 720px; margin-bottom: 16px; line-height: 1.15; }
.page-hero--light p  { max-width: 620px; font-size: 16px; color: var(--near-black); }

.page-hero__image { position: absolute; inset: 0; z-index: 0; }

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,71,0.2) 0%, rgba(15,35,71,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0 48px;
}

.page-hero__content .eyebrow { color: rgba(255,255,255,0.75); }
.page-hero__content h1       { color: var(--white); font-size: 40px; max-width: 680px; margin-bottom: 16px; line-height: 1.15; }
.page-hero__content p        { color: rgba(255,255,255,0.88); font-size: 16px; max-width: 560px; }


/* ============================================================
   HOMEPAGE
   ============================================================ */

.hero-home {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-home__image         { position: absolute; inset: 0; z-index: 0; }
.hero-home__image img     { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,71,0.15) 0%, rgba(15,35,71,0.72) 100%);
}

.hero-home__content       { position: relative; z-index: 1; width: 100%; padding: 72px 0 64px; }
.hero-home__content .eyebrow { color: rgba(255,255,255,0.80); }
.hero-home__content h1    { color: var(--white); font-size: 48px; line-height: 1.1; margin-bottom: 18px; max-width: 620px; }
.hero-home__content p     { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 540px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Mission */
.section-mission .mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-mission .mission-text h2 { margin-bottom: 16px; line-height: 1.25; }
.section-mission .mission-text p  { color: var(--near-black); line-height: 1.7; }
.section-mission .mission-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; }

/* Get Involved */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.involved-card {
  background-color: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.involved-card__icon { color: var(--navy); margin-bottom: 16px; }
.involved-card h4    { font-size: 18px; margin-bottom: 10px; }
.involved-card p     { color: var(--near-black); font-size: 14px; line-height: 1.65; flex: 1; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

.stat-item { padding: 32px 16px; border-right: 1px solid var(--light-blue); }
.stat-item:last-child { border-right: none; }

.stat-number { display: block; font-size: 40px; font-weight: var(--fw-bold); color: var(--navy); line-height: 1; margin-bottom: 10px; }
.stat-label  { display: block; font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.04em; }

/* Photo Strip */
.section-photo-strip { line-height: 0; }
.photo-strip-grid    { display: grid; grid-template-columns: repeat(4, 1fr); height: 280px; }
.photo-strip-item    { overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.04); }

/* News cards */
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.news-header h2 { margin-top: 6px; }
.news-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
}

.news-card__meta time { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.04em; }
.news-card h4         { margin: 10px 0; font-size: 15px; line-height: 1.4; }
.news-card p          { font-size: 14px; color: var(--near-black); line-height: 1.65; flex: 1; }

.news-card__link { display: inline-block; margin-top: 16px; font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--red); transition: opacity var(--transition); }
.news-card__link:hover { opacity: 0.75; }

/* Newsletter */
.section-newsletter { padding: 64px 0; }
.newsletter-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.newsletter-text h2 { margin-bottom: 12px; font-size: 26px; }
.newsletter-fields  { display: flex; gap: 12px; flex-wrap: wrap; }

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: var(--pill);
  border: 1.5px solid rgba(255,255,255,0.3);
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--fs-body);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus        { border-color: rgba(255,255,255,0.7); }

/* Visit */
.section-visit .visit-inner       { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-visit .visit-text h2     { margin-bottom: 16px; }
.section-visit .visit-text > p    { margin-bottom: 24px; }
.visit-details                    { display: flex; flex-direction: column; gap: 14px; }
.visit-detail-item                { display: flex; flex-direction: column; gap: 2px; }
.visit-detail-item strong         { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }
.visit-detail-item span           { font-size: var(--fs-body); color: var(--near-black); }


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.highlight-tile {
  background-color: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 32px 28px;
}

.highlight-tile--featured                 { background-color: var(--navy); border-color: var(--navy); }
.highlight-tile--featured h4,
.highlight-tile--featured p               { color: var(--white); }
.highlight-tile--featured .highlight-tile__number { color: rgba(255,255,255,0.7); }

.highlight-tile__number { display: block; font-size: 32px; font-weight: var(--fw-bold); color: var(--red); margin-bottom: 10px; line-height: 1; }
.highlight-tile h4 { margin-bottom: 10px; font-size: 17px; }
.highlight-tile p  { font-size: 14px; line-height: 1.65; }

.who-inner    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.who-text h2  { margin-bottom: 16px; }
.who-text p   { margin-bottom: 14px; line-height: 1.7; }
.who-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; }

.origin-inner    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.origin-text h2  { margin-bottom: 16px; }
.origin-text p   { margin-bottom: 14px; line-height: 1.7; }
.origin-image img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; opacity: 0.85; }

.about-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.about-cta-card {
  background-color: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.about-cta-card h4 { font-size: 18px; margin-bottom: 10px; }
.about-cta-card p  { font-size: 14px; line-height: 1.65; flex: 1; }


/* ============================================================
   HISTORY PAGE
   ============================================================ */

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--navy);
  opacity: 0.15;
}

.timeline-item {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-blue);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-marker {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--navy);
  text-align: right;
  padding-right: 40px;
  padding-top: 4px;
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--red);
  border-radius: 50%;
}

.timeline-content h4 { margin-bottom: 10px; font-size: 17px; }
.timeline-content p  { font-size: 14px; line-height: 1.7; }

.pearl-harbor-inner     { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pearl-harbor-text h2   { margin-bottom: 16px; }
.pearl-harbor-text p    { margin-bottom: 14px; line-height: 1.7; }
.pearl-harbor-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; opacity: 0.85; }

.story-inner    { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: flex-start; }
.story-main h2  { margin-bottom: 28px; }
.story-main h3  { margin: 28px 0 10px; font-size: 18px; color: var(--navy); }
.story-main p   { margin-bottom: 14px; line-height: 1.75; }

.story-fact-card { background-color: var(--light-blue); border-radius: 8px; padding: 28px; margin-bottom: 24px; }
.story-fact-card h5 { font-size: 11px; font-weight: var(--fw-bold); color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }

.fact-list { display: flex; flex-direction: column; gap: 14px; }
.fact-list li { font-size: 13px; color: var(--near-black); line-height: 1.5; border-bottom: 1px solid rgba(26,58,107,0.1); padding-bottom: 14px; }
.fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fact-list strong { display: block; font-size: 11px; font-weight: var(--fw-bold); color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

.story-image-stack     { display: flex; flex-direction: column; gap: 12px; }
.story-image-stack img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; }

.rules-inner > p { max-width: 600px; margin-bottom: 32px; }
.rules-grid      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.rule-item { background-color: var(--white); border-radius: 8px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.rule-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.rule-item p { font-size: 14px; line-height: 1.5; }


/* ============================================================
   BOARD PAGE
   ============================================================ */

.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.board-card {
  background-color: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.board-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.board-card__photo             { width: 100%; height: 200px; overflow: hidden; }
.board-card__photo img         { width: 100%; height: 100%; object-fit: cover; }
.board-card__photo--placeholder { background-color: var(--light-blue); display: flex; align-items: center; justify-content: center; color: var(--mid-gray); }
.board-card__info              { padding: 24px; }
.board-card__info h4           { margin-bottom: 4px; }

.board-card__role {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.board-card__info p { font-size: 13px; line-height: 1.65; color: var(--mid-gray); }

.board-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.board-cta-inner h2 { margin-bottom: 12px; }
.board-cta-inner p  { max-width: 600px; }

/* Board hero */
.section-board-hero { min-height: 400px; align-items: center; }
.section-board-hero .page-hero__image img { object-position: center 35%; }
.section-board-hero .page-hero__overlay  { background: linear-gradient(to right, rgba(15,35,71,0.82) 0%, rgba(15,35,71,0.82) 45%, rgba(15,35,71,0.2) 100%); }


/* ============================================================
   VOLUNTEER PAGE
   ============================================================ */

.why-volunteer-inner     { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-volunteer-text h2   { margin-bottom: 16px; }
.why-volunteer-text p    { margin-bottom: 14px; line-height: 1.7; }
.why-volunteer-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; }

.opportunities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.opportunity-card { background-color: var(--white); border-radius: 8px; padding: 28px; border-top: 3px solid var(--navy); }
.opportunity-card__icon { color: var(--navy); margin-bottom: 14px; }
.opportunity-card h4    { margin-bottom: 8px; font-size: 16px; }
.opportunity-card p     { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }

.opportunity-tag { display: inline-block; font-size: 11px; font-weight: var(--fw-medium); color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }

.volunteer-form-inner   { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: flex-start; }
.volunteer-form-text h2 { margin-bottom: 16px; }
.volunteer-form-text p  { margin-bottom: 14px; line-height: 1.7; }

.volunteer-contact-note { margin-top: 32px; padding: 20px; background-color: var(--light-blue); border-radius: 8px; }
.volunteer-contact-note strong { display: block; font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.volunteer-contact-note p { font-size: 14px; margin: 0; }
.volunteer-contact-note a { color: var(--red); font-weight: var(--fw-medium); }

.volunteer-form { display: flex; flex-direction: column; gap: 20px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--navy); }
.form-optional    { font-weight: var(--fw-regular); color: var(--mid-gray); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-family: var(--font);
  font-size: var(--fs-body);
  color: var(--near-black);
  background-color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-checkboxes { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.checkbox-label  { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--near-black); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }


/* ============================================================
   VOLUNTEER THANKS PAGE
   ============================================================ */

.section-thanks { padding: 80px 0; }

.thanks-inner { max-width: 540px; margin: 0 auto; text-align: center; padding: 60px 0; }
.thanks-icon  { color: var(--navy); margin-bottom: 24px; display: flex; justify-content: center; }
.thanks-inner h1 { margin-bottom: 16px; }
.thanks-inner h2 { margin-bottom: 16px; }
.thanks-inner p  { margin-bottom: 14px; line-height: 1.7; color: var(--near-black); }

.thanks-links { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; text-align: left; }

.thanks-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background-color: var(--light-blue);
  border-radius: 8px;
  color: var(--navy);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  transition: background-color var(--transition);
}
.thanks-link-card:hover { background-color: #dce8f7; }
.thanks-link-card svg   { flex-shrink: 0; color: var(--navy); }

.thanks-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }


/* ============================================================
   FAQ PAGE
   ============================================================ */

.section-faq { padding-bottom: 0; }

.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: flex-start; }

.faq-nav { position: sticky; top: 120px; }
.faq-nav__label { font-size: 11px; font-weight: var(--fw-bold); color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.faq-nav ul { display: flex; flex-direction: column; gap: 4px; }
.faq-nav a  { display: block; font-size: 13px; font-weight: var(--fw-medium); color: var(--mid-gray); padding: 8px 12px; border-radius: 6px; transition: color var(--transition), background-color var(--transition); }
.faq-nav a:hover { color: var(--navy); background-color: var(--light-blue); }

.faq-category { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--light-blue); }
.faq-category:last-child { border-bottom: none; margin-bottom: 0; }
.faq-category__title { font-size: 20px; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }

.faq-item           { border-bottom: 1px solid var(--light-blue); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--red); }

.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer { display: block; max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 600px; padding: 0 0 20px; }
.faq-answer p    { font-size: 14px; line-height: 1.75; color: var(--near-black); margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a    { color: var(--red); font-weight: var(--fw-medium); text-decoration: underline; text-underline-offset: 2px; }

.faq-contact-cta { background-color: var(--light-blue); border-radius: 8px; padding: 32px; margin-top: 48px; margin-bottom: 80px; }
.faq-contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.faq-contact-cta h3 { font-size: 18px; margin-bottom: 6px; }
.faq-contact-cta p  { font-size: 14px; color: var(--near-black); margin: 0; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.contact-form-wrap h2   { margin-bottom: 12px; }
.contact-form-wrap > p  { color: var(--near-black); line-height: 1.7; margin-bottom: 32px; }
.contact-form           { display: flex; flex-direction: column; gap: 20px; }

.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-field         { display: flex; flex-direction: column; gap: 6px; }
.form-field label   { font-size: 14px; font-weight: 500; color: var(--navy); }
.required           { color: var(--red); margin-left: 2px; }
.optional           { font-size: 12px; font-weight: 400; color: var(--near-black); opacity: 0.6; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,40,104,0.1); }

.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--near-black); opacity: 0.65; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--near-black); opacity: 0.7; text-align: center; margin-top: 8px; }

.contact-info-card { background: var(--light-blue); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 28px; margin-bottom: 24px; }
.contact-info-block { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.contact-info-block p { font-size: 15px; color: var(--near-black); line-height: 1.6; margin: 0; }

.contact-facebook { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-facebook:hover { text-decoration: underline; }
.contact-map { border-radius: 8px; overflow: hidden; }


/* ============================================================
   DONATE PAGE
   ============================================================ */

.donate-intro    { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.donate-intro h2 { margin-bottom: 16px; }
.donate-intro p  { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; }

.donate-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.donate-impact-item { text-align: center; padding: 28px 20px; background: var(--light-blue); border-radius: 12px; }
.donate-impact-icon { color: var(--navy); margin-bottom: 16px; display: flex; justify-content: center; }
.donate-impact-item h4 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.donate-impact-item p  { font-size: 13px; color: var(--near-black); line-height: 1.65; margin: 0; }

.donate-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.donate-tier {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.donate-tier--featured { border: 2px solid var(--navy); }

.donate-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.donate-tier__header { display: flex; flex-direction: column; gap: 4px; }
.donate-tier__name   { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); }
.donate-tier__amount { font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; }
.donate-tier p       { font-size: 14px; color: var(--near-black); line-height: 1.65; flex: 1; margin: 0; }

.donate-custom { text-align: center; padding: 40px; background: var(--white); border-radius: 12px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.donate-custom > p { font-size: 15px; color: var(--near-black); margin: 0; }
.donate-or { font-size: 13px; color: var(--near-black); opacity: 0.5; }
.donate-check-info { font-size: 14px; color: var(--near-black); line-height: 1.7; margin: 0; }

.picket-inner    { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.picket-text h2  { margin-bottom: 16px; }
.picket-text p   { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin-bottom: 12px; }
.picket-image img { width: 100%; border-radius: 12px; display: block; }

.donate-tax { max-width: 640px; margin: 0 auto; text-align: center; }
.donate-tax p { font-size: 14px; color: var(--near-black); line-height: 1.7; margin-bottom: 8px; }


/* ============================================================
   RENT THE SIGN PAGE
   ============================================================ */

.sign-layout   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.sign-info h2  { margin-bottom: 16px; }
.sign-info > p { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin-bottom: 12px; }

.sign-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.sign-highlight-item { background: var(--light-blue); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.sign-highlight-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy); }
.sign-highlight-value { font-size: 15px; font-weight: 600; color: var(--near-black); }
.sign-image img { width: 100%; border-radius: 12px; display: block; }

.sign-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sign-step  { text-align: center; padding: 28px 20px; background: var(--white); border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.sign-step__number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.sign-step h4 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.sign-step p  { font-size: 13px; color: var(--near-black); line-height: 1.65; margin: 0; }

.sign-rules { max-width: 680px; }
.sign-rules h2 { margin-bottom: 20px; }
.sign-rules-list { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.sign-rules-list li { font-size: var(--fs-body); color: var(--near-black); line-height: 1.6; }

.sign-book-layout { max-width: 680px; margin: 0 auto; }
.sign-book-header p { font-size: var(--fs-body); color: var(--near-black); max-width: 500px; margin: 8px auto 0; }


/* ============================================================
   NEWS PAGE
   ============================================================ */

.news-full-grid { display: flex; flex-direction: column; gap: 48px; max-width: 760px; margin: 0 auto; }

.news-full-card { padding-bottom: 48px; border-bottom: 1px solid #e2e8f0; }
.news-full-card:last-child { border-bottom: none; padding-bottom: 0; }

.news-full-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-full-card__meta time { font-size: 13px; color: var(--near-black); opacity: 0.6; }

.news-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; background: var(--light-blue); color: var(--navy); padding: 3px 10px; border-radius: 20px; }

.news-full-card h2 { font-size: 24px; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.news-full-card p  { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin-bottom: 12px; }
.news-full-card a[href*="facebook"] { color: var(--navy); font-weight: 500; }


/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--light-blue);
  text-decoration: none;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,40,104,0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,40,104,0.5); }

.gallery-item__overlay span { color: white; font-size: 14px; font-weight: 600; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item:hover .gallery-item__overlay span { opacity: 1; transform: translateY(0); }

.gallery-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.gallery-cta-inner h2 { margin-bottom: 12px; }
.gallery-cta-inner p  { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin: 0; }


/* ============================================================
   ART WALK PAGE
   ============================================================ */

.art-walk-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.art-walk-intro p { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin-bottom: 16px; }
.art-walk-intro a { color: var(--navy); }
.art-walk-intro a:hover { text-decoration: underline; }

.artwork-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.artwork-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.artwork-card__image { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--light-blue); }
.artwork-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.artwork-card:hover .artwork-card__image img { transform: scale(1.03); }

.artwork-card__image--placeholder { display: flex; align-items: center; justify-content: center; }
.artwork-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--mid-gray); }
.artwork-placeholder span { font-size: 13px; color: var(--mid-gray); }

.artwork-card__info { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.artwork-card__info h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }

.artwork-card__artist {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.artwork-card__info p { font-size: 14px; color: var(--near-black); line-height: 1.7; margin: 0; flex: 1; }

.art-walk-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.art-walk-cta h2 { margin-bottom: 12px; }
.art-walk-cta p  { margin: 0; }


/* ============================================================
   FRIENDS OF THE PARK PAGE
   ============================================================ */

.friends-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.friends-intro p { font-size: var(--fs-body); color: var(--near-black); line-height: 1.7; margin-bottom: 16px; }
.friends-intro a { color: var(--navy); }
.friends-intro a:hover { text-decoration: underline; }

.friends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.friend-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.friend-card--linked:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }

.friend-card__logo { width: 120px; height: 60px; display: flex; align-items: center; justify-content: center; }
.friend-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.friend-card__name    { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.friend-card__tagline { font-size: 13px; color: var(--near-black); line-height: 1.5; }

.friends-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 12px;
  border: 2px dashed rgba(0,40,104,0.15);
}

.friends-placeholder p { font-size: var(--fs-body); color: var(--near-black); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.friends-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.friends-cta-inner h2 { margin-bottom: 12px; }
.friends-cta-inner p  { margin: 0; }


/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .board-grid  { grid-template-columns: repeat(3, 1fr); }
  .story-inner { grid-template-columns: 1fr 280px; gap: 40px; }

  .stat-item:nth-child(2)           { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)           { border-bottom: none; }
}


/* ============================================================
   RESPONSIVE — 768px (Tablet / Mobile)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --fs-h1: 28px;
    --fs-h2: 22px;
    --fs-h3: 18px;
  }

  .section   { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Hamburger */
  .nav-toggle { display: block; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile nav drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 3px solid var(--navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0 24px;
    gap: 0;
    z-index: 200;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.open { max-height: 800px; padding: 8px 24px 16px; }

  /* All nav links on mobile */
  .nav-links a,
  .nav-links .nav-dropdown-menu a {
    display: block;
    padding: 12px 0;
    color: var(--navy);
    font-size: 14px;
    font-weight: var(--fw-medium);
    text-align: center;
    border-bottom: 1px solid var(--light-blue);
    background: none;
    -webkit-text-fill-color: var(--navy);
  }

  /* Active states — MUST be more specific than the base rule above */
  .nav-links a[aria-current="page"],
  .nav-links .nav-dropdown-menu a[aria-current="page"] {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
    font-weight: var(--fw-bold);
  }

  .nav-links a:hover,
  .nav-links .nav-dropdown-menu a:hover {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
  }

  .nav-links li:last-child > a,
  .nav-links .nav-dropdown-menu li:last-child a { border-bottom: none; }

  .nav-ctas { display: none; }

  /* Mobile dropdown — flat, not floating */
  .nav-dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    display: block;
    padding: 0;
    background: none;
    transition: none;
  }

  .nav-dropdown-menu li { display: block; }

  /* Grids */
  .grid-3, .grid-2        { grid-template-columns: 1fr; }
  .involved-grid          { grid-template-columns: 1fr; }
  .highlights-grid        { grid-template-columns: 1fr; }
  .about-cta-grid         { grid-template-columns: 1fr; }
  .opportunities-grid     { grid-template-columns: 1fr; }
  .news-grid              { grid-template-columns: 1fr; }
  .stats-grid             { grid-template-columns: repeat(2, 1fr); }
  .board-grid             { grid-template-columns: repeat(2, 1fr); }
  .rules-grid             { grid-template-columns: 1fr 1fr; }
  .form-row               { grid-template-columns: 1fr; }

  /* Homepage */
  .hero-home                              { min-height: 480px; }
  .hero-home__content h1                  { font-size: 32px; }
  .hero-actions                           { flex-direction: column; align-items: flex-start; }
  .section-mission .mission-inner         { grid-template-columns: 1fr; gap: 32px; }
  .section-mission .mission-image         { order: -1; }
  .section-mission .mission-image img     { height: 240px; }
  .photo-strip-grid                       { grid-template-columns: repeat(2, 1fr); height: 320px; }
  .newsletter-inner                       { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-fields                      { flex-direction: column; }
  .newsletter-input                       { min-width: 100%; }
  .section-visit .visit-inner             { grid-template-columns: 1fr; gap: 32px; }

  /* Page heroes */
  .page-hero                              { min-height: 220px; }
  .page-hero--short                       { min-height: 180px; }
  .page-hero__content h1                  { font-size: 26px; }
  .page-hero__content p                   { font-size: 14px; }

  /* About / History / Board */
  .who-inner, .origin-inner,
  .pearl-harbor-inner,
  .why-volunteer-inner,
  .volunteer-form-inner                   { grid-template-columns: 1fr; gap: 32px; }
  .story-inner                            { grid-template-columns: 1fr; gap: 40px; }
  .story-image-stack                      { flex-direction: row; }
  .story-image-stack img                  { height: 140px; flex: 1; }
  .timeline::before                       { display: none; }
  .timeline-item                          { grid-template-columns: 80px 1fr; gap: 16px; }
  .timeline-marker                        { font-size: 16px; padding-right: 16px; }
  .board-cta-inner                        { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand        { text-align: center; }
  .footer-facebook     { justify-content: center; }

  /* FAQ */
  .faq-layout          { grid-template-columns: 1fr; gap: 32px; }
  .faq-nav             { position: static; background-color: var(--light-blue); border-radius: 8px; padding: 20px; }
  .faq-nav ul          { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .faq-nav a           { background-color: var(--white); font-size: 12px; padding: 6px 10px; }
  .faq-contact-cta__inner { flex-direction: column; align-items: flex-start; }

  /* Contact */
  .contact-layout      { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-card   { padding: 24px; }
  .form-row--2         { grid-template-columns: 1fr; }

  /* Donate */
  .donate-tiers        { grid-template-columns: 1fr; }
  .donate-impact-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .donate-tier         { padding: 28px 20px; }
  .donate-tier__amount { font-size: 28px; }
  .donate-custom       { padding: 28px 20px; }
  .picket-inner        { grid-template-columns: 1fr; gap: 32px; }

  /* Sign */
  .sign-layout         { grid-template-columns: 1fr; gap: 32px; }
  .sign-steps          { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sign-highlights     { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-cta-inner   { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Art Walk */
  .artwork-grid        { grid-template-columns: 1fr; gap: 24px; }
  .art-walk-cta        { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Friends */
  .friends-grid        { grid-template-columns: repeat(2, 1fr); }
  .friends-cta-inner   { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* News */
  .news-full-card h2   { font-size: 20px; }

  /* Thanks */
  .thanks-actions      { flex-wrap: wrap; }

  /* PMM credit */
  .pmm-canvas          { width: 120px; height: 120px; margin-left: -60px; margin-top: -60px; }
  .footer-credit-inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .pmm-text            { font-size: 11px; }
}


/* ============================================================
   RESPONSIVE — 480px (Small phones)
   ============================================================ */

@media (max-width: 480px) {
  .section   { padding: 48px 0; }

  /* Hero */
  .hero-home                { min-height: 380px; }
  .hero-home__content h1    { font-size: 26px; line-height: 1.2; }
  .hero-actions .btn        { width: 100%; text-align: center; }
  .photo-strip-grid         { grid-template-columns: repeat(2, 1fr); height: 240px; }

  /* Stats */
  .stats-grid               { grid-template-columns: repeat(2, 1fr); }
  .stat-number              { font-size: 32px; }

  /* Board */
  .board-grid               { grid-template-columns: 1fr; }

  /* Sign */
  .sign-steps               { grid-template-columns: 1fr; }
  .sign-highlights          { grid-template-columns: 1fr; }

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

  /* Donate */
  .donate-impact-grid       { grid-template-columns: 1fr; }

  /* Friends */
  .friends-grid             { grid-template-columns: 1fr; }

  /* Rules */
  .rules-grid               { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links-grid        { grid-template-columns: 1fr; gap: 24px; }

  /* Thanks */
  .thanks-actions .btn      { width: 100%; text-align: center; }

  /* Art walk */
  .artwork-card__info       { padding: 18px; }
  .artwork-card__info h3    { font-size: 18px; }

  /* PMM credit */
  .pmm-text                 { font-size: 10px; }
  .pmm-logo-img             { width: 22px; height: 22px; }
}
