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

:root {
  --navy: #0b1d35;
  --navy-mid: #122847;
  --blue: #3d5f7a;
  --blue-bright: #4e7490;
  --gold: #d4922a;
  --gold-light: #f5e4c3;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --ink: #0d1b2a;
  --muted: #5b6880;
  --border: #dde3ec;
  --radius: 8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ── */
nav {
  background: var(--navy);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img { height: 40px; filter: brightness(0) invert(1); }

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

nav ul a:hover { color: #fff; background: rgba(255,255,255,0.07); }
nav ul a.active { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(11,29,53,0.82) 0%,
    rgba(11,29,53,0.55) 50%,
    rgba(11,29,53,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 8vw;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: #8ba4f7;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy-mid);
  padding: 2.5rem 8vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stat {
  text-align: center;
  color: #fff;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: #8ba4f7;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11,29,53,0.92) 0%,
    rgba(11,29,53,0.45) 45%,
    rgba(11,29,53,0.1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 8vw;
  color: #fff;
}

.page-hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ba4f7;
  margin-bottom: 0.75rem;
}

.page-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 12px rgba(212,146,42,0.35);
}
.btn-gold:hover {
  background: #c07d1a;
  box-shadow: 0 4px 20px rgba(212,146,42,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(65,105,225,0.3);
}
.btn-blue:hover { background: #2d4fd4; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(65,105,225,0.4); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: #060f1d; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-alt); }

/* ── Sections ── */
section { padding: 5.5rem 8vw; }

.section-white { background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy-mid { background: var(--navy-mid); color: #fff; }
.section-blue { background: var(--blue); color: #fff; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: block;
}

.section-navy .section-label,
.section-navy-mid .section-label,
.section-blue .section-label { color: #8ba4f7; }

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-navy p,
.section-navy-mid p,
.section-blue p { color: rgba(255,255,255,0.72); }

.lead {
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.85;
}

/* ── Mission ── */
.mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-text { max-width: 520px; }

.mission-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mission-visual img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.mission-visual img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11,29,53,0.12);
  border-color: transparent;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-img { transform: scale(1.04); }

.card-img-wrap { overflow: hidden; }

.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.card-body h3 { color: var(--ink); }
.card-body p { font-size: 0.94rem; flex: 1; }

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.25rem;
}

/* ── Quote ── */
.quote-section {
  padding: 7rem 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12rem;
  line-height: 0.7;
  color: var(--blue);
  opacity: 0.12;
  position: absolute;
  top: 3rem;
  left: 6vw;
  font-weight: 700;
  user-select: none;
}

blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.section-navy blockquote { color: #fff; }

.quote-attr {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.section-navy .quote-attr { color: rgba(255,255,255,0.45); }

/* ── Two-column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(11,29,53,0.15);
}

/* ── Feature list ── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-icon.blue { background: #dbeafe; }

.feature-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.feature-item p { font-size: 0.92rem; margin: 0; }

/* ── Impact strip ── */
.impact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.impact-strip-text h2 { color: #fff; margin-bottom: 0.5rem; }
.impact-strip-text p { color: rgba(255,255,255,0.65); margin: 0; max-width: 480px; }

/* ── Action cards (Golf) ── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.action-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.action-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.action-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.action-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.action-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

.action-card-link {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #8ba4f7;
  text-transform: uppercase;
}

/* ── Photo grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.photo-grid img:hover { transform: scale(1.02); }

/* ── Sponsor tiers ── */
.sponsor-tier { margin-bottom: 4.5rem; }

.sponsor-tier-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sponsor-tier-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.sponsor-tier-line {
  height: 1px;
  background: var(--border);
  flex: 1;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sponsor-grid.eagle { grid-template-columns: repeat(3, 1fr); }
.sponsor-grid.birdie { grid-template-columns: repeat(2, 1fr); }

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  gap: 1.25rem;
}

.sponsor-item:hover {
  box-shadow: 0 8px 32px rgba(11,29,53,0.1);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.sponsor-item img {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%) opacity(0.88);
  transition: filter 0.2s;
}

.sponsor-item:hover img { filter: grayscale(0%) opacity(1); }

.sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.sponsor-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.sponsor-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.friend-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ── Make a Splash ── */
.splash-hero-inner {
  background: linear-gradient(135deg, #0d4f6e 0%, #0a3a52 100%);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-hero-inner img { max-height: 130px; width: auto; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--blue);
}

.pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pillar h3 { color: var(--navy); }

/* ── Page header (no image) ── */
.page-header {
  background: var(--navy);
  padding: 4rem 8vw 3.5rem;
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0;
}

/* ── Photo Carousel ── */
.carousel-section {
  background: var(--navy);
  padding: 5.5rem 0 4rem;
}

.carousel-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 8vw;
}

.carousel-header .section-label { display: block; text-align: center; }
.carousel-header h2 { color: #fff; }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,29,53,0.55);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.1rem;
  line-height: 1;
}

.carousel-btn:hover { background: rgba(11,29,53,0.85); border-color: rgba(255,255,255,0.6); }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 860px) {
  .carousel-btn { width: 38px; height: 38px; font-size: 0.9rem; }
  .carousel-slide img {
    height: 240px;
    object-fit: cover;
    object-position: center 30%;
  }
}

@media (max-width: 520px) {
  .carousel-slide img { height: 200px; }
}

/* ── Footer ── */
footer {
  background: #060e1c;
  color: rgba(255,255,255,0.5);
  padding: 4rem 8vw 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand img { height: 24px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 240px; }

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Contact widget ── */
.chat-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.35rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(11,29,53,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.chat-btn:hover { background: #060f1d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,29,53,0.45); }
.chat-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,29,53,0.45);
  z-index: 201;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.75rem;
}
.contact-overlay.open { display: flex; }

.contact-panel {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(11,29,53,0.25);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.contact-panel-header h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
}

.contact-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.contact-close:hover { color: var(--ink); }

.contact-panel form { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.contact-panel input:focus,
.contact-panel textarea:focus { border-color: var(--blue); }

.contact-panel textarea { min-height: 90px; }

.contact-panel .btn { width: 100%; justify-content: center; }

.contact-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
  color: var(--navy);
}
.contact-success p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  nav ul.open { display: flex; }
  nav { position: relative; }

  .hero { min-height: 420px; }
  .hero-content h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
  .hero-img { object-position: 65% 35%; }

  .page-hero { height: 260px; }
  .page-hero-img { object-position: 65% 20%; }

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

  .mission-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .mission-visual { display: none; }

  .cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .card-img { height: 200px; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .two-col img { height: 300px; }

  .action-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 180px; }

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

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

  section { padding: 4rem 6vw; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .impact-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 2rem 6vw; }
  .photo-grid { grid-template-columns: 1fr; }
  .friends-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: 380px; }
  .sponsor-grid,
  .sponsor-grid.eagle,
  .sponsor-grid.birdie { grid-template-columns: 1fr; }
  .two-col img { height: 240px; }
}
