/* =========================================================
   Body Lab — stylesheet
   Brand: "Science of Movement"
   Edit colors, fonts, and spacing in :root below.
   Most other styles cascade from those variables.
   ========================================================= */

:root {
  /* Brand palette pulled from bodylabtx.com (red / black / white). */
  --color-bg:        #ffffff;
  --color-soft:      #f6f3f3;   /* light warm gray section bg */
  --color-ink:       #111111;   /* near-black text */
  --color-muted:     #727272;   /* muted gray text */
  --color-line:      #e5e2e2;

  --color-red:       #ed1c24;   /* primary brand red */
  --color-red-deep:  #d40615;   /* deeper red (hover / logo) */

  --font-display: "Oswald", "Helvetica Neue", Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;

  --max-width: 1180px;
  --content-width: 760px;
  --radius: 4px;
  --header-height: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--color-red-deep); transition: color 120ms ease; }
a:hover { color: var(--color-red); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--color-soft);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.6em;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; }
p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--color-muted); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.content {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-red);
  background: var(--color-red);
  color: #fff;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.btn:hover { background: var(--color-red-deep); border-color: var(--color-red-deep); color: #fff; }
button.btn { cursor: pointer; }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-ink); }
.btn--ghost:hover { background: var(--color-ink); color: #fff; }
.btn--light { background: #fff; color: var(--color-ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }

/* Row of call-to-action buttons, centered and wrapping by default. */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.05rem; }
.nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--color-red); }
.nav a.active { border-bottom-color: var(--color-red); color: var(--color-red); }
.nav .btn { color: #fff; border-bottom: 0; padding: 0.55rem 1rem; }
.nav .btn:hover { color: #fff; }

.nav-group { position: relative; }
.nav-group > a { display: inline-block; }
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16.5rem;
  padding: 0.55rem 0;
  background: #fff;
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 40;
}
.nav-group:hover > .nav-submenu,
.nav-group:focus-within > .nav-submenu,
.nav-group.open > .nav-submenu { display: block; }
.nav-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  border-bottom: 0;
  font-size: 0.78rem;
  white-space: normal;
}
.nav-submenu a:hover { background: var(--color-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-ink);
}

/* ---------- Sections ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 16vw, 9rem) 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 60%, #2a0608 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.hero .content { position: relative; z-index: 2; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45); }
.hero h1 .accent { color: var(--color-red); }
.hero .lead { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.6rem; }

.section { padding: clamp(2.5rem, 7vw, 5rem) 0; }
.section--soft { background: var(--color-soft); }
.section--center { text-align: center; }
.section--page-header { padding-bottom: 0.5rem; }
.section--tight { padding-top: 1.5rem; }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section h2 .accent { color: var(--color-red); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--color-red);
  margin: 0 0 0.5rem;
}

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  background: #fff;
  text-align: left;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card p { color: var(--color-muted); margin: 0; }

/* ---------- Company grid ---------- */
.company-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.company-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.company-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-soft);
  overflow: hidden;
}
.company-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-card__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-red);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius);
}
.company-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.company-card__link:hover .company-card__body h2 { color: var(--color-red); }
.company-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.company-card__body h2 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.company-card__body p {
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Team roster ---------- */
.team-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.team-member {
  display: flex;
  background: #fff;
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.team-member__link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
}
.team-member__link:hover .team-member__name { color: var(--color-red); }
.team-member__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-ink);
}
.team-member__role {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.team-member__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 0.7rem;
  background: var(--color-soft);
}

/* ---------- Schedule hub tiles ---------- */
.schedule-tiles {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.schedule-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: #000;
}
.schedule-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 200ms ease;
  opacity: 0.78;
}
.schedule-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.schedule-tile:hover img { transform: scale(1.06); opacity: 0.9; }
.schedule-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

/* ---------- Schedule sub-page layout ---------- */
.sched-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.5rem 0 0;
}
.season-box {
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius);
  background: var(--color-soft);
  padding: 1.25rem 1.5rem;
  margin: 0 auto;
  max-width: var(--content-width);
}
.season-box h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.season-box ul { margin: 0; padding-left: 1.1rem; color: var(--color-muted); }

/* ---------- Schedule tables (converted from Google Docs) ---------- */
.sched-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
table.sched {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
  font-size: 0.85rem;
  background: #fff;
}
table.sched th,
table.sched td {
  border: 1px solid var(--color-line);
  padding: 0.6rem 0.7rem;
  vertical-align: top;
  text-align: left;
}
table.sched .colhead,
table.sched tr:first-child th {
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
table.sched th.day {
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
table.sched th.day span { writing-mode: vertical-rl; transform: rotate(180deg); }
table.sched td.empty { background: var(--color-soft); }
table.sched .lvl {
  margin: 0.5rem 0 0.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--color-red-deep);
}
table.sched .lvl:first-child { margin-top: 0; }
table.sched .note {
  margin: 0.4rem 0;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-muted);
}
table.sched ul { margin: 0 0 0.3rem; padding: 0; list-style: none; }
table.sched li { margin: 0 0 0.2rem; line-height: 1.35; }
table.sched .t { font-weight: 700; color: var(--color-ink); white-space: nowrap; }

.scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0.5rem 0 0;
}
@media (min-width: 900px) { .scroll-hint { display: none; } }

/* ---------- Camps / intensives list ---------- */
.camp-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.camp-card {
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem 1.4rem;
  text-align: left;
}
.camp-card h3 { font-size: 1.15rem; margin: 0 0 0.6rem; }
.camp-meta { display: flex; gap: 1.5rem; margin: 0; }
.camp-meta div { display: flex; flex-direction: column; }
.camp-meta dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  color: var(--color-muted);
}
.camp-meta dd { margin: 0; font-weight: 600; }
.camp-meta .price { color: var(--color-red-deep); }

/* ---------- Contact + map ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 2rem auto 0;
  text-align: left;
}
.contact-details ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.contact-details li { margin: 0 0 0.35rem; color: var(--color-muted); }
.contact-details .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--color-red);
  display: block;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.2);
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Company detail page ---------- */
/* ---------- Full-width banner image (e.g. top of About page) ---------- */
.page-banner {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.page-banner img { display: block; width: 100%; height: auto; }

.company-detail-hero { padding-top: clamp(2rem, 5vw, 3.5rem); }
.company-detail-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.company-detail-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  aspect-ratio: 4 / 3;
}
.company-detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Instructor bio pages reuse the company-detail-hero layout but use a
   portrait-oriented headshot instead of a 4:3 company photo. */
.company-detail-hero__media--portrait { aspect-ratio: 3 / 4; }
.company-detail-hero__intro h1 { margin-bottom: 0.5rem; }
.company-detail-hero__intro .btn { margin-top: 1.25rem; }

.company-meta {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.company-meta li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.6rem;
}
.company-meta .label {
  flex: 0 0 8.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--color-red);
}
.company-meta .value { color: var(--color-ink); }

/* Structured info blocks (schedules, reminders, timelines). */
.info-block {
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  background: #fff;
  margin-bottom: 1.25rem;
}
.info-block h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.info-block ul { margin: 0; padding-left: 1.1rem; }
.info-block li { margin-bottom: 0.35rem; }
.info-block .note {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}
.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .company-detail-hero__inner { grid-template-columns: 1fr; }
  .company-meta .label { flex-basis: 7rem; }
}

/* ---------- Media + text split (alternating sections) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 0.75rem; }
.split__body .btn { margin-top: 1.25rem; }
.split--reverse .split__media { order: 2; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Pricing ---------- */
.price-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.price-card--featured {
  border-color: var(--color-red);
  border-top-color: var(--color-red);
  box-shadow: 0 10px 28px rgba(237, 28, 36, 0.14);
}
.price-card__tier {
  align-self: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}
.price-card--featured .price-card__tier {
  color: #fff;
  background: var(--color-red);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}
.price-card__name {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-ink);
  margin: 0 0 0.6rem;
}
.price-card__amount span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: lowercase;
}
.price-card__detail {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Fee list ---------- */
.fee-list {
  list-style: none;
  margin: 1.5rem 0 1rem;
  padding: 0;
  border-top: 1px solid var(--color-line);
}
.fee-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line);
}
.fee-list__label {
  font-weight: 500;
}
.fee-list__amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-red);
  white-space: nowrap;
}
.fine-print { color: var(--color-muted); font-size: 0.9rem; }

/* ---------- SMS signup form ---------- */
.sms-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.15rem;
}
.sms-form__field label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.sms-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #fff;
}
.sms-form input[type="tel"]:focus {
  outline: 2px solid var(--color-red);
  outline-offset: 1px;
  border-color: var(--color-red);
}
.sms-form__consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-ink);
}
.sms-form__consent input[type="checkbox"] {
  margin-top: 0.28rem;
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--color-red);
}
.sms-form .btn { justify-self: start; }
.sms-form__thanks {
  margin-top: 1.25rem;
}
.callout {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--color-red);
  margin: 1rem 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 4px solid var(--color-red);
  background: #0d0d0d;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--color-red); }
.footer-contact { list-style: none; padding: 0; margin: 0 0 0.75rem; }
.footer-contact a { text-decoration: none; }
.copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.footer-links { margin: 0 0 0.75rem; font-size: 0.85rem; }
.footer-links a { text-decoration: none; }
.footer-legal { margin: 0.45rem 0 0; font-size: 0.8rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- Mobile tab bar ---------- */
.mobile-tabbar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    padding: 0.5rem 1.25rem 1rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--color-line); white-space: normal; }
  .nav a.active { border-bottom-color: var(--color-red); }
  .nav .btn { text-align: center; margin-top: 0.6rem; border: 2px solid var(--color-red); }
  .nav-group { border-bottom: 1px solid var(--color-line); }
  .nav-group > a { border-bottom: 0; width: 100%; }
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-top: 0;
    box-shadow: none;
    padding: 0 0 0.4rem 0.8rem;
    background: transparent;
  }
  .nav-group.open > .nav-submenu { display: block; }
  .nav-submenu a { padding: 0.45rem 0; font-size: 0.8rem; }

  /* Bottom tab bar replaces the toggle nav on small screens. */
  .mobile-tabbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--color-bg);
    border-top: 1px solid var(--color-line);
  }
  .mobile-tabbar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    text-decoration: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--color-muted);
  }
  .mobile-tabbar a.active { color: var(--color-red); font-weight: 600; }
  body { padding-bottom: 56px; }
}

/* ---------- Testimonials ---------- */
.testimonial {
  max-width: 46rem;
  margin: 1.5rem auto 0;
}
.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  font-style: italic;
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after { content: "\201D"; }
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--color-red);
}

/* ---------- Dress code table ---------- */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}
table.data th,
table.data td {
  border: 1px solid var(--color-line);
  padding: 0.7rem 0.75rem;
  vertical-align: top;
}
table.data th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-soft);
  font-size: 0.78rem;
}
table.data tr:nth-child(even) td { background: #faf8f8; }

/* ---------- Admin / contact cards ---------- */
.admin-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.admin-card {
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  background: #fff;
  text-align: left;
}
.admin-card h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.admin-card .role { color: var(--color-muted); margin: 0 0 0.55rem; font-size: 0.9rem; }
.admin-card a { text-decoration: none; }

.camp-card a { text-decoration: none; color: inherit; }
.camp-card a:hover h3 { color: var(--color-red); }
