/*
Theme Name: Ben Bolopue
Theme URI: https://thesfdcgeek.com
Author: Ben Bolopue
Description: Personal branding site — thesfdcgeek.com
Version: 1.0
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --dark:           #1B2418;
  --dark-mid:       #253321;
  --cream:          #F5F0E8;
  --cream-mid:      #EAE4D6;
  --gold:           #A87820;
  --gold-light:     #C8962A;
  --green:          #4A7055;
  --text:           #1B2418;
  --text-mid:       #4A5247;
  --text-light:     #F5F0E8;
  --text-muted-dark: rgba(245,240,232,0.65);
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); margin-bottom: 0.875rem; }
h4 { font-size: 1.0625rem; }
p  { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1875rem; line-height: 1.75; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  display: block;
  opacity: 0.65;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 110px 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease),
              padding    0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
#site-nav.scrolled {
  background: var(--dark);
  padding: 1rem 2.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 0.5rem 1.375rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
}

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile-close {
  position: absolute;
  top: 1.75rem; right: 2.25rem;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 620px;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,36,24,0.45) 0%,
    rgba(27,36,24,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 820px;
  padding: 0 2rem;
}
.hero-content .eyebrow {
  color: var(--gold-light);
  opacity: 1;
  font-size: 0.7rem;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-content p {
  color: rgba(245,240,232,0.88);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.9375rem 2.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-scroll {
  position: absolute;
  bottom: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  animation: heroBounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}
@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   FAMILY SECTION
   ============================================================ */
#family { background: var(--cream); padding: 110px 0; }

.family-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.family-hero-photo {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  margin-bottom: 5.5rem;
}
.family-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}
.family-story-text .eyebrow { opacity: 0.55; color: var(--text); }
.family-quote {
  border-left: 3px solid var(--gold);
  padding: 0.625rem 0 0.625rem 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
}
.family-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.family-photo-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.family-photo-tall {
  grid-row: span 2;
  aspect-ratio: 2 / 3;
}
.family-photo-sm { aspect-ratio: 4 / 3; }
.family-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.family-grid-4 img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.family-callout {
  background: var(--cream-mid);
  padding: 3.5rem 3rem;
  border-radius: 2px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.family-callout .eyebrow { opacity: 0.5; color: var(--text); }
.family-callout blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.family-callout p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
#music {
  background: var(--dark);
  color: var(--text-light);
  padding: 110px 0;
}
#music h2 { color: var(--text-light); }
#music .eyebrow { color: var(--gold-light); opacity: 1; }
#music p { color: rgba(245,240,232,0.83); }

.music-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.music-stat-row {
  display: flex;
  gap: 0;
  margin: 2.25rem 0;
  border-top: 1px solid rgba(245,240,232,0.12);
  border-bottom: 1px solid rgba(245,240,232,0.12);
}
.music-stat-item {
  flex: 1;
  padding: 1.5rem 0;
  text-align: center;
  border-right: 1px solid rgba(245,240,232,0.12);
}
.music-stat-item:last-child { border-right: none; }
.music-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.625rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.music-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.music-hero-photo {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.music-caption {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.music-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.music-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================================
   SCOUTS SECTION
   ============================================================ */
#scouts { background: var(--cream-mid); padding: 110px 0; }

.scouts-full-photo {
  width: 100%;
  height: 52vh;
  min-height: 380px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  margin-bottom: 5.5rem;
}
.scouts-header { text-align: center; margin-bottom: 3.5rem; }
.scouts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.scouts-stat-row {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(27,36,24,0.14);
}
.scouts-stat-item {
  flex: 1;
  padding: 1.5rem 0;
  text-align: center;
  border-right: 1px solid rgba(27,36,24,0.14);
}
.scouts-stat-item:last-child { border-right: none; }
.scouts-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.375rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.scouts-stat-label {
  font-size: 0.7rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scouts-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.scouts-photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}
.scouts-photo-grid .scouts-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
  object-position: center 40%;
}
.scouts-pullquote {
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
  padding: 5.5rem 2rem;
  margin-top: 5.5rem;
}
.scouts-pullquote > .container { max-width: 820px; }
.scouts-pullquote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.625rem);
  font-style: italic;
  color: rgba(245,240,232,0.9);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.scouts-pullquote p {
  color: rgba(245,240,232,0.7);
  font-size: 1.0625rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
}
.scouts-pullquote cite {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   PROFESSIONAL SECTION
   ============================================================ */
#professional {
  background: var(--dark-mid);
  color: var(--text-light);
  padding: 110px 0;
}
#professional h2 { color: var(--text-light); }
#professional .eyebrow { color: var(--gold-light); opacity: 1; }
#professional p { color: rgba(245,240,232,0.83); }

.pro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}
.pro-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(245,240,232,0.1);
  margin-bottom: 2rem;
}
.pro-stat-cell {
  background: var(--dark-mid);
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.pro-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pro-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.pro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pro-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.pro-photos .pro-photo-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
  object-position: center 35%;
}
.pro-rec {
  border-left: 3px solid var(--gold);
  padding: 0.875rem 0 0.875rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: rgba(245,240,232,0.8);
  font-size: 1rem;
  line-height: 1.7;
}
.pro-rec cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 0.625rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   ADVENTURES SECTION
   ============================================================ */
#adventures { background: var(--cream); padding: 110px 0; }

.adventures-intro { max-width: 640px; margin-bottom: 4.5rem; }
.adventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 5.5rem;
}
.adventures-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.adventures-grid .adv-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.adventures-grid .adv-wide-bottom {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
  object-position: center 40%;
}
.adventures-ireland {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid var(--cream-mid);
}
.adventures-ireland img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.adventures-ireland .eyebrow { opacity: 0.55; color: var(--text); }

/* ============================================================
   BUILDER SECTION
   ============================================================ */
#builder {
  background: var(--dark);
  color: var(--text-light);
  padding: 110px 0;
}
#builder h2 { color: var(--text-light); }
#builder h3 { color: var(--text-light); }
#builder .eyebrow { color: var(--gold-light); opacity: 1; }
#builder p { color: rgba(245,240,232,0.83); }

.builder-intro { max-width: 700px; margin-bottom: 5rem; }
.builder-intro .lead { color: rgba(245,240,232,0.88); }

.builder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 5.5rem;
}
.builder-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}
.builder-grid .build-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.builder-grid .build-wide-3 {
  grid-column: span 3;
  aspect-ratio: 3 / 1;
}

.builder-heart {
  text-align: center;
  padding: 4rem 2rem 5rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  border-bottom: 1px solid rgba(245,240,232,0.1);
  margin-bottom: 5rem;
}
.builder-heart img {
  max-width: 460px;
  width: 100%;
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.builder-heart h3 { margin-bottom: 0.75rem; }

.builder-receipt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 5rem;
}
.builder-receipt-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
}

.builder-what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.1);
}
.builder-what-cell {
  background: var(--dark);
  padding: 2.5rem 2rem;
  text-align: center;
}
.builder-what-cell h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}
.builder-what-cell p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   A FEW THINGS SECTION
   ============================================================ */
#fun { background: var(--cream); padding: 110px 0; }
#fun .section-header { text-align: center; margin-bottom: 4rem; }

.fun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fun-card {
  background: var(--cream-mid);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}
.fun-card:hover { transform: translateY(-4px); }
.fun-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.fun-card-body { padding: 1.5rem 1.375rem; }
.fun-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.fun-card-body p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--dark);
  color: var(--text-light);
  padding: 110px 0;
  text-align: center;
}
#contact h2 { color: var(--text-light); }
#contact .eyebrow { color: var(--gold-light); opacity: 1; }
#contact p { color: rgba(245,240,232,0.82); }

.contact-photo {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  margin-bottom: 5.5rem;
}
.contact-body { max-width: 620px; margin: 0 auto; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 2.25rem;
  border: 1.5px solid rgba(245,240,232,0.25);
  border-radius: 2px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s;
}
.contact-btn:hover {
  border-color: var(--gold-light);
  background: rgba(200,150,42,0.12);
  color: var(--text-light);
}
.contact-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.contact-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}
.contact-btn svg { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 2rem;
  text-align: center;
  color: rgba(245,240,232,0.35);
  font-size: 0.8125rem;
}
#site-footer a {
  color: rgba(245,240,232,0.35);
  transition: color 0.2s;
}
#site-footer a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
  .family-story        { grid-template-columns: 1fr; gap: 3rem; }
  .music-layout        { grid-template-columns: 1fr; gap: 4rem; }
  .scouts-layout       { grid-template-columns: 1fr; gap: 3.5rem; }
  .pro-layout          { grid-template-columns: 1fr; gap: 4rem; }
  .adventures-ireland  { grid-template-columns: 1fr; gap: 3rem; }
  .pro-stat-grid       { grid-template-columns: 1fr 1fr; }
  .adventures-grid     { grid-template-columns: 1fr 1fr; }
  .adventures-grid .adv-wide { grid-column: span 2; }
  .adventures-grid .adv-wide-bottom { grid-column: span 2; aspect-ratio: 16/9; }
  .builder-grid        { grid-template-columns: repeat(2, 1fr); }
  .builder-grid .build-wide   { aspect-ratio: 2/1; }
  .builder-grid .build-wide-3 { grid-column: span 2; aspect-ratio: 2/1; }
  .builder-what        { grid-template-columns: 1fr 1fr; }
  .fun-grid            { grid-template-columns: 1fr 1fr; }
  .family-callout      { padding: 2.5rem 1.75rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  #site-nav   { padding: 1.25rem 1.25rem; }
  #site-nav.scrolled { padding: 0.875rem 1.25rem; }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  #hero { background-attachment: scroll; }

  .family-photo-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .family-photo-tall { grid-row: auto; aspect-ratio: 4/3; }
  .family-grid-4 { grid-template-columns: 1fr; }
  .family-grid-4 img { aspect-ratio: 16/9; }

  .music-photo-grid { grid-template-columns: 1fr; }
  .music-photo-grid img { aspect-ratio: 16/9; }

  .scouts-photo-grid { grid-template-columns: 1fr; }
  .scouts-photo-grid .scouts-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .scouts-photo-grid img { aspect-ratio: 4/3; }

  .pro-stat-grid { grid-template-columns: 1fr; }
  .pro-photos    { grid-template-columns: 1fr; }
  .pro-photos .pro-photo-wide { grid-column: span 1; aspect-ratio: 4/3; }

  .adventures-grid { grid-template-columns: 1fr; }
  .adventures-grid .adv-wide,
  .adventures-grid .adv-wide-bottom { grid-column: span 1; aspect-ratio: 4/3; }

  .builder-grid { grid-template-columns: 1fr 1fr; }
  .builder-grid .build-wide   { grid-column: span 2; aspect-ratio: 16/9; }
  .builder-grid .build-wide-3 { grid-column: span 2; aspect-ratio: 16/9; }
  .builder-receipt-row { grid-template-columns: 1fr; }
  .builder-what { grid-template-columns: 1fr; }

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

  .contact-links { flex-direction: column; align-items: center; }
  .contact-btn   { width: 100%; max-width: 320px; justify-content: center; }

  .scouts-stat-row,
  .music-stat-row { flex-wrap: wrap; }
  .scouts-stat-item,
  .music-stat-item { border-right: none; border-bottom: 1px solid rgba(27,36,24,0.14); }
  .music-stat-item { border-bottom-color: rgba(245,240,232,0.12); }
  .scouts-stat-item:last-child,
  .music-stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
  animation: lbFadeIn 0.22s ease;
}
.lightbox.is-open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  cursor: default;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
  cursor: default;
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 1.125rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 2.75rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s, transform 0.2s;
  z-index: 10000;
  padding: 0.25rem 0.5rem;
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   MIRRORED IMAGE (grammar sign flip)
   ============================================================ */
.mirrored { transform: scaleX(-1); }

/* ============================================================
   FAMILY — image position fix for top-right grid photo
   ============================================================ */
.family-photo-left { object-position: left center !important; }

/* ============================================================
   OUR BACKYARD — wall photo grid inside callout
   ============================================================ */
.wall-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.wall-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  cursor: zoom-in;
}
@media (max-width: 640px) {
  .wall-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MUSIC — instruments stat (no large number)
   ============================================================ */
.music-stat-instruments {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   SCOUTS — image crop fix (more mountain, less sky)
   ============================================================ */
.scouts-full-photo { object-position: center 45%; }

/* ============================================================
   CONTACT — center text layout (no photo above)
   ============================================================ */
#contact { text-align: center; }
#contact .contact-body { max-width: 620px; margin: 0 auto; }
