/* TeamWerman / La Salle Baseball Camps — static site */
:root {
  --blue: #004B8C;
  --gold: #BBAA66;
  --gray: #CCCED1;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #333333;
  --blue-dark: #003666;
  --gold-dark: #9a8c4f;
  --shadow: 0 8px 28px rgba(0, 40, 80, 0.18);
  --radius-pill: 999px;
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { font-family: var(--font-sans); line-height: 1.2; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--blue);
  padding: 10px 16px;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* —— Header / Nav —— */
.site-header {
  background: var(--blue);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  color: var(--white);
}
.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.brand-sub {
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.9;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.82rem;
  font-weight: 500;
}
.nav > a,
.nav .nav-drop > summary {
  color: var(--white);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
}
.nav > a:hover,
.nav > a.active,
.nav .nav-drop[open] > summary,
.nav .nav-drop > summary:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav .nav-drop > summary::-webkit-details-marker { display: none; }
.nav .nav-drop > summary::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.85;
}
.nav-drop {
  position: relative;
}
.nav-drop .drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  color: var(--blue);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 120;
}
.nav-drop .drop-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-drop .drop-menu a:hover,
.nav-drop .drop-menu a.active {
  background: rgba(0, 75, 140, 0.08);
  color: var(--blue-dark);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--blue) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill) !important;
  border-bottom: none !important;
  margin-left: 4px;
}
.nav-cta:hover {
  background: #c9ba78 !important;
  color: var(--blue-dark) !important;
  border-bottom: none !important;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(187, 170, 102, 0.4);
}
.btn-gold:hover { background: #c9ba78; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-blue:hover { background: rgba(0, 75, 140, 0.08); }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(105deg, rgba(0, 40, 80, 0.88) 0%, rgba(0, 75, 140, 0.55) 48%, rgba(0, 30, 60, 0.35) 100%),
    url("../images/hero-dugout.jpg") center 40% / cover no-repeat;
  color: var(--white);
}
.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 64px 28px 72px;
}
.hero-kicker {
  display: inline-block;
  background: rgba(187, 170, 102, 0.95);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  max-width: 18ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero-tagline {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.95;
  max-width: 40ch;
}
.hero-address {
  margin: 0 0 28px;
  font-size: 0.95rem;
  opacity: 0.88;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(120deg, rgba(0, 54, 102, 0.95), rgba(0, 75, 140, 0.88)),
    linear-gradient(135deg, #004B8C, #BBAA66);
  color: var(--white);
  padding: 48px 28px 44px;
  background-size: cover;
  background-position: center;
}
.page-hero.skills-hero {
  background-image:
    linear-gradient(120deg, rgba(0, 54, 102, 0.88), rgba(0, 75, 140, 0.72)),
    url("../images/skills-session.jpg");
}
.page-hero.boot-hero {
  background-image:
    linear-gradient(120deg, rgba(0, 54, 102, 0.88), rgba(0, 75, 140, 0.72)),
    url("../images/throwing-drill.jpg");
}
.page-hero.exposure-hero {
  background-image:
    linear-gradient(120deg, rgba(0, 54, 102, 0.88), rgba(0, 75, 140, 0.72)),
    url("../images/batter-cage.jpg");
}
.page-hero.facilities-hero {
  background-image:
    linear-gradient(120deg, rgba(0, 54, 102, 0.88), rgba(0, 75, 140, 0.72)),
    url("../images/ward-field.jpg");
}
.page-hero.camps-hero {
  background-image:
    linear-gradient(120deg, rgba(0, 54, 102, 0.88), rgba(0, 75, 140, 0.72)),
    url("../images/camper-running.jpg");
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 10px;
}
.page-hero .breadcrumb a { color: var(--gold); font-weight: 600; }
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
}
.page-hero p {
  margin: 0;
  max-width: 60ch;
  opacity: 0.92;
  font-size: 1.02rem;
}

/* —— Pedigree —— */
.pedigree {
  background: var(--blue-dark);
  color: var(--white);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.pedigree-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.pedigree-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
}
.pedigree-item span {
  font-size: 0.82rem;
  opacity: 0.92;
  line-height: 1.4;
}

/* —— Sections —— */
.section { padding: 56px 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--blue);
}
.section-lead {
  margin: 0 0 28px;
  color: var(--ink-soft);
  max-width: 62ch;
}
.band-gray { background: var(--gray); }
.band-white { background: var(--white); }
.band-blue { background: var(--blue); color: var(--white); }

/* —— Tables —— */
.dates-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
}
.dates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.dates-table th,
.dates-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e4e5e8;
}
.dates-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dates-table tr:last-child td { border-bottom: none; }
.dates-table tr:nth-child(even) td { background: #f7f7f8; }
.dates-table .camp-name { font-weight: 700; color: var(--blue); }
.badge-grade {
  display: inline-block;
  background: rgba(0, 75, 140, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* —— Camp cards —— */
.camp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.camp-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.camp-card:nth-child(1),
.camp-card:nth-child(3) { background: var(--gray); }
.camp-card:nth-child(2) { background: var(--gold); }
.camp-photo {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.camp-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.camp-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 75, 140, 0.85);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.camp-photo.skills {
  /* Live home Skills ≈ group under tree; closest local: coach-huddle */
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/coach-huddle.jpg");
}
.camp-photo.skills.running {
  /* Live camps hub Skills = camper running */
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/camper-running.jpg");
}
.camp-photo.boot {
  /* Live home Bootcamp ≈ catching clinic; closest local: throwing-drill */
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/throwing-drill.jpg");
}
.camp-photo.exposure {
  /* Live home Exposure = batter in cage */
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/batter-cage.jpg");
}
.camp-photo.exposure.dugout {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/dugout-crew.jpg");
}
.camp-photo.exposure.handshake {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.35)),
    url("../images/handshake-line.jpg");
}
.camp-photo.facility {
  background-image: none;
  background-color: #003666;
}
.camp-photo.staff {
  background-image:
    linear-gradient(145deg, #003666 0%, #004B8C 50%, #BBAA66 100%);
}
.camp-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--blue);
}
.camp-body h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
}
.camp-body p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  color: var(--ink-soft);
}
.camp-card:nth-child(2) .camp-body p,
.camp-card:nth-child(2) .camp-body { color: var(--blue); }
.camp-meta {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.55;
}
.camp-meta .label {
  display: block;
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.camp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.camp-card:nth-child(2) .btn-gold {
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
}
.camp-card:nth-child(2) .btn-gold:hover { background: var(--blue-dark); }
.camp-card:nth-child(2) .btn-outline-blue {
  border-color: var(--blue);
  color: var(--blue);
}

/* Card grid with gap (hub / facilities) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.info-card .card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.info-card h3 { margin: 0 0 10px; color: var(--blue); font-size: 1.25rem; font-weight: 800; }
.info-card p { color: var(--ink-soft); font-size: 0.95rem; }
.info-card .meta-list {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.info-card .meta-list li {
  padding: 4px 0 4px 14px;
  position: relative;
}
.info-card .meta-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* —— Explorers / split —— */
.explorers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.explorers-copy {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at bottom left, rgba(204, 206, 209, 0.45) 0%, transparent 55%),
    var(--white);
}
.explorers-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
}
.explorers-copy p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 1.02rem;
}
.explorers-visual { display: grid; grid-template-rows: 1.4fr 0.7fr; }
.explorers-photo {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(0,40,80,0.25), rgba(0,40,80,0.55)),
    url("../images/hero-celebration.jpg") center 40% / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}
.explorers-blue {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.stat-row {
  display: flex;
  gap: 28px;
  color: var(--white);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-row strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
}
.stat-row span { font-size: 0.75rem; opacity: 0.9; }

/* —— Content prose —— */
.prose {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.prose h2, .prose h3 {
  color: var(--blue);
  margin: 1.6rem 0 0.6rem;
}
.prose ul, .content-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.prose li, .content-list li { margin-bottom: 0.4rem; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.detail-panel {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.detail-panel h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
}
.detail-panel h4 {
  margin: 18px 0 8px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
}
.fee-list { margin: 0; }
.fee-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fee-list li:last-child { border-bottom: none; }
.fee-list strong { color: var(--blue); font-weight: 700; white-space: nowrap; }
.schedule-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list .time {
  display: inline-block;
  min-width: 7.5rem;
  font-weight: 700;
  color: var(--blue);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.topic-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,40,80,0.08);
  border-top: 4px solid var(--gold);
}
.topic-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.1rem;
}
.topic-card p, .topic-card ul {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.topic-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin-top: 8px;
}

/* —— FAQ —— */
.faq-list { max-width: 800px; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 40, 80, 0.06);
  overflow: hidden;
}
.faq-item .faq-q,
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  text-align: left;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-q::after,
.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q::after,
.faq-item details[open] summary::after { content: '−'; }
.faq-item .faq-a {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  margin-top: -4px;
  padding-top: 14px;
  display: none;
}
.faq-item.is-open .faq-a,
.faq-item details[open] .faq-a { display: block; }
.faq-item details .faq-a { display: block; }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.safety-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,40,80,0.07);
}
.safety-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.05rem;
}
.safety-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* —— Staff —— */
.staff-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.staff-photo {
  aspect-ratio: 3/4;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  background: #e8eef5;
  box-shadow: var(--shadow);
}
.staff-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.staff-bio h2 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1.85rem;
  font-weight: 800;
}
.staff-role {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.staff-bio p { color: var(--ink-soft); font-size: 1.02rem; }

/* —— Contact / Form —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
}
.contact-card p { margin: 0 0 12px; opacity: 0.95; font-size: 0.95rem; }
.contact-card a { color: var(--gold); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card .label-sm {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-bottom: 2px;
  margin-top: 14px;
}
.form-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.form-card h2 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 800;
}
.form-card .form-lead {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  
  border: 1.5px solid #c8c9cc;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 140, 0.15);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: 80px 28px;
  max-width: 560px;
  margin: 0 auto;
}
.thank-you h1 {
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.thank-you p { color: var(--ink-soft); font-size: 1.05rem; }

/* —— CTA band —— */
.cta-band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 48px 28px;
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 800;
}
.cta-band p { margin: 0 0 22px; opacity: 0.9; }
.social-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.9rem;
}
.social-inline a { color: var(--gold); font-weight: 600; }
.social-inline a:hover { text-decoration: underline; }

/* —— Footer —— */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 40px 28px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer-domain {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.footer-address {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.55;
}
.footer-address a { color: var(--gold); font-weight: 600; }
.footer-address a:hover { text-decoration: underline; }
.footer-col h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-col a:hover { text-decoration: underline; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  opacity: 0.9;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.75rem;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
  }
  .nav.is-open { display: flex; }
  .header-inner {
    flex-wrap: wrap;
  }
  .nav > a,
  .nav .nav-drop > summary {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav-drop .drop-menu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
    margin: 4px 0 8px;
  }
  .nav-drop .drop-menu a { color: var(--white); }
  .nav-drop .drop-menu a:hover,
  .nav-drop .drop-menu a.active {
    background: rgba(255,255,255,0.08);
    color: var(--gold);
  }
  .nav-cta {
    margin: 10px 0 0 !important;
    text-align: center;
    justify-content: center;
  }
  .pedigree-inner { grid-template-columns: 1fr; }
  .camp-grid,
  .card-grid,
  .card-grid.two { grid-template-columns: 1fr; }
  .explorers-grid { grid-template-columns: 1fr; }
  .explorers-copy { padding: 40px 28px; }
  .two-col,
  .contact-grid,
  .staff-layout { grid-template-columns: 1fr; }
  .topic-grid,
  .safety-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .hero-inner { padding: 40px 20px 48px; }
  .hero h1 { max-width: none; }
  .section { padding: 40px 20px; }
  .page-hero { padding: 36px 20px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .dates-table th,
  .dates-table td { padding: 10px 12px; font-size: 0.8rem; }
}


/* Lead / gallery photos */
.lead-photo {
  margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #003666;
}
.lead-photo img {
  display: block;
  width: 100%;
  height: clamp(200px, 32vw, 360px);
  object-fit: cover;
  object-position: center;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.photo-strip figure {
  margin: 0;
}
.photo-strip img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.photo-strip figcaption {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 800px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img { height: 120px; }
}
