:root {
  --bg: #0a0a0f;
  --bg-card: #ffffff;
  --bg-card-2: #f7f7ff;
  --border: #26262f;
  --text: #070707;
  --muted: #161617;
  --cyan: #4de8ff;
  --amber: #ffb100;
  --cyan-dim: rgba(77, 232, 255, 0.12);
  --amber-dim: rgba(255, 177, 0, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  /* background: var(--bg); */
  background: linear-gradient(160deg, #f5e9cb 0%, #ffffff 10%);
  border-radius: 14px;
  padding: 24px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
::selection {
  background: var(--amber);
  color: #0a0a0f;
}
a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffc107;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #ffc107;
  display: inline-block;
}

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  width: 64px;
  opacity: 0;
  transform: scale(1);
  transition:
    width 1.1s cubic-bezier(0.5, 0, 0.2, 1),
    opacity 0.4s ease;
  position: relative;
  z-index: 2;
}
.loader-logo.grow {
  opacity: 1;
  width: min(
    46vw,
    420px
  ); /* logo grows to roughly half the screen, not fullscreen */
}
.loader-logo.settle {
  transition: opacity 0.4s ease;
  opacity: 0;
}
.loader-word {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  opacity: 0;
  bottom: 38%;
  transition: opacity 0.5s ease;
}
.loader-word.show {
  opacity: 1;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  padding: 50px 6vw 0;
  overflow: hidden;
}
/* ------------------------------------ */
.section1-flex {
  display: flex;
  flex-direction: column;
}

.flexRow-section1 {
  display: flex;
  font-size: 30px;
}

.section1-left {
  max-width: 500px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  line-height: 30px;
}

.section1-span {
  display: inline-block;
  margin-top: 30px;
}
.section1-heading {
  font-size: 40px;
}

.section1-flexgap {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.section1-flex-column {
  display: flex;
  flex-direction: column;
  border: 1px solid #000000;
  padding: 20px;
  border-radius: 20px;
  align-items: center;
  gap: 13px;
  background-color: #000000;
}

.section1-flexgap-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section1-flexgap-row1 img {
  width: 200px;
  height: auto;
  display: block;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ffffff;
}
.text-section-1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.text-section-3 {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff !important;
}
.text-section-2 button {
  background-color: #313130 !important;
  border: none;
  padding: 7px;
  border-radius: 6px;
  font-size: 14px;
}

.section1-long-button button {
  background-color: #ffc107;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  fill: #111111;
  border-radius: 8px 8px 8px 8px;
  padding: 20px 24px 20px 24px;
  border: none;
}

.bulletpoints {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff !important;
  gap: 15px;
}

.bulletpoints-1 {
  display: flex;
  gap: 10px;
  list-style: none;
}

.bulletpoints-1 div {
  position: relative;
  padding-left: 20px;
}

.bulletpoints-1 div::before {
  content: "•";
  position: absolute;
  left: 0;
}
.bulletpoints-2 {
  display: flex;
  gap: 10px;
  list-style: none;
}

.bulletpoints-2 div {
  position: relative;
  padding-left: 20px;
}

.bulletpoints-2 div::before {
  content: "•";
  position: absolute;
  left: 0;
}

.btn {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  justify-content: center;
}
.btn-primary {
  background: var(--amber);
  color: #0a0a0f;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px -8px var(--amber-dim),
    0 0 0 1px var(--amber);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* --------------------responsive ------------------- */
/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .loader-logo.grow {
    width: min(60vw, 420px);
  }

  .hero {
    padding: 40px 5vw 0;
  }

  .section1-heading {
    font-size: 32px;
  }

  .section1-flexgap {
    gap: 30px;
  }

  .section1-left {
    max-width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .section1-flexgap {
    flex-direction: column;
  }

  .section1-flex-column {
    width: 100%;
  }

  .section1-flexgap-row1 img {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 5vw 0;
  }

  .flexRow-section1 {
    font-size: 20px;
    gap: 8px;
  }

  .section1-heading {
    font-size: 24px;
  }

  .section1-left {
    font-size: 15px;
    line-height: 22px;
  }

  .section1-span {
    margin-top: 16px;
  }

  .section1-flexgap {
    margin-top: 24px;
    gap: 20px;
  }

  .section1-flex-column {
    padding: 16px;
    border-radius: 14px;
    gap: 10px;
  }

  .section1-flexgap-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section1-flexgap-row1 img {
    width: 100px;
  }

  .text-section {
    align-items: center;
    text-align: center;
  }

  .text-section-1 {
    font-size: 16px;
  }

  .section1-long-button button {
    width: 100%;
    padding: 16px;
    font-size: 14px;
  }

  .bulletpoints-1,
  .bulletpoints-2 {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 12px;
  }

  .loader-logo.grow {
    width: min(70vw, 300px);
  }

  .loader-word {
    font-size: 10px;
    bottom: 34%;
  }
}

@media (max-width: 380px) {
  .section1-heading {
    font-size: 20px;
  }

  .section1-left {
    font-size: 14px;
  }
}
/* ===================== COUNTDOWN BAR ===================== */
.countdown-bar {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center; /* ← THIS IS THE KEY CHANGE - centers everything horizontally */
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
.countdown-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: #ffc107;
  color: #0a0a0f;
  padding: 20px 18px;
  border-radius: 6px;
}
.countdown-units {
  display: flex;
  gap: 10px;
  /* margin-bottom: 30px; */
}
.countdown-unit {
  background: #e9e9e9;
  border-radius: 6px;
  padding: 10px 20px;
  text-align: center;
  min-width: 64px;
}
.countdown-unit b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0f;
}
.countdown-unit span {
  display: block;
  font-size: 10.5px;
  color: #6a6a6a;
  margin-top: 2px;
}
@media (max-width: 560px) {
  .countdown-bar > .countdown-label {
    display: none;
  }
}
@media (max-width: 560px) {
  .countdown-units {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .countdown-unit {
    flex-shrink: 0;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .countdown-bar {
    gap: 4px;
    padding: 6px 4px;
  }

  .countdown-units {
    gap: 3px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .countdown-unit b {
    font-size: 14px;
  }

  .countdown-unit span {
    font-size: 8px;
  }
}
/* ----------------------------- */

.ehg-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ehg-word {
  font-weight: 500;
  font-size: clamp(30px, 5vw, 58px);
  letter-spacing: -1px;
  color: #111111;

  opacity: 0;
  transform: translateY(-70px);
  animation: ehgDrop 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.ehg-dot {
  font-size: clamp(24px, 4vw, 40px);
  color: #ffc107;

  opacity: 0;
  transform: translateY(-40px);
  animation: ehgDropDot 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes ehgDrop {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  40% {
    opacity: 1;
  }
  55% {
    transform: translateY(0);
  }
  72% {
    transform: translateY(-10px);
  }
  86% {
    transform: translateY(0);
  }
  94% {
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ehgDropDot {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: translateY(0);
  }
  85% {
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .ehg-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 30px 10px !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;
    white-space: nowrap !important;
  }

  .ehg-section .ehg-word,
  .ehg-section .ehg-dot {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ehg-word,
  .ehg-dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.text-section-1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.text-section-3 {
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}
.text-section-2 button {
  color: #000000 !important;
  background-color: #ffffed !important;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12.5px;
}

.section1-long-button {
  width: 100%;
}
.section1-long-button button {
  width: 100%;
  background-color: #ffc107;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  fill: #111111;
  color: #111111;
  border-radius: 8px 8px 8px 8px;
  padding: 15px 20px;
  border: none;
}

.bulletpoints {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000000;
  gap: 6px;
  font-size: 13px;
  width: 100%;
}

.bulletpoints-1 {
  display: flex;
  gap: 16px;
  list-style: none;
}

.bulletpoints-1 div {
  position: relative;
  padding-left: 16px;
}

.bulletpoints-1 div::before {
  content: "•";
  position: absolute;
  left: 0;
}
.bulletpoints-2 {
  display: flex;
  gap: 10px;
  list-style: none;
}

.bulletpoints-2 div {
  position: relative;
  padding-left: 16px;
}

.bulletpoints-2 div::before {
  content: "•";
  position: absolute;
  left: 0;
}

.btn {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  justify-content: center;
}
.btn-primary {
  background: var(--amber);
  color: #0a0a0f;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px -8px var(--amber-dim),
    0 0 0 1px var(--amber);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ------------card bounce------------ */
.ehg-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ehg-word,
.ehg-dot {
  opacity: 0;
  display: inline-block;
}

@keyframes ehgBounce {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(-24px);
  }
  40% {
    transform: translateY(0);
  }
  55% {
    transform: translateY(-14px);
  }
  70% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-6px);
  }
  92% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* animation-name/duration set here, delay set per-element via JS below */
.ehg-section.in-view .ehg-word,
.ehg-section.in-view .ehg-dot {
  animation-name: ehgBounce;
  animation-duration: 1.2s; /* longer bounce */
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
/* ------------------------------------------------ */

/* =========================================================
   Experience section — styles only.
   Fonts used: Fraunces (display) + Work Sans (body).
   Add to <head>:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&family=Work+Sans:wght@400;500;600&display=swap" rel="stylesheet">
   ========================================================= */

.experience-section {
  --ink: #16302c;
  --paper: #f6f2e9;
  --moss: #5c7a6e;
  --ember: #c98a4b;

  /* no section background — sits on whatever the page already has */
  background: transparent;
  color: var(--ink);
  padding: 80px 24px 90px;
  -webkit-font-smoothing: antialiased;
}

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

.experience-header {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.experience-header > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--ember);
  font-weight: 600;
}

.experience-header > span::before,
.experience-header > span::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ember);
  opacity: 0.6;
}

.experience-header h2 {
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.15;
  margin: 16px 0 14px;
  color: var(--ink);
}

.experience-header h2 i {
  font-style: italic;
  color: var(--ember);
}

.experience-header p {
  color: var(--moss);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---- grid ---- */

.experience-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ---- card (image-led) ---- */

.experience-card {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  cursor: default;

  opacity: 1;
}
.experience-card.in-view {
  opacity: 1;
}

.experience-image {
  position: absolute;
  inset: 0;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* smoky effect kept — layered gradient at the bottom of the image */
.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 48, 44, 0) 40%,
    rgba(22, 48, 44, 0.55) 65%,
    rgba(15, 26, 24, 0.9) 100%
  );
  z-index: 1;
}

.experience-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 18px 18px;
  text-align: center;
}

.experience-content > span {
  display: block;
  font-style: italic;
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.experience-content h3 {
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.28;
  margin: 0 auto;
  max-width: 20ch;
  color: #fff;
}

.experience-content p {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(246, 242, 233, 0.8);
  margin: 8px auto 0;
  max-width: 22ch;
}

@media (prefers-reduced-motion: reduce) {
  .experience-card {
    transition: none !important;
  }
  .experience-card {
    opacity: 1;
  }
}
/* ----------------------------------------------------- */

.rmhc-motto {
  --bg: #ffffff;
  --panel: #ffffff;
  --ink: #22291f;
  --ink-soft: #6e7568;
  --sage-deep: #4a5b3f;
  --line: #e4e1d5;
  --card-shadow:
    0 1px 2px rgba(34, 41, 31, 0.04), 0 8px 24px rgba(34, 41, 31, 0.05);
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  padding: 64px 28px;
  border-radius: 24px;
}

.rmhc-motto * {
  box-sizing: border-box;
}

.rmhc-motto .grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.rmhc-motto .left {
  position: static;
}

.rmhc-motto .photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.rmhc-motto .photo-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.rmhc-motto .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.rmhc-motto .eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--sage-deep);
  display: inline-block;
}

.rmhc-motto .statement-card {
  background: var(--ink);
  color: #f5f3ec;
  border-radius: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 16px;
  padding-right: 16px;
  position: static;
  z-index: 222;
}

.rmhc-motto .statement-card h2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.28;
  margin: 0;
}

.rmhc-motto .statement-card .accent {
  color: #b7c7a3;
}

.rmhc-motto .org-tag {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.rmhc-motto .right {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rmhc-motto .reframe {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  align-items: center;
  gap: 14px;
  box-shadow: var(--card-shadow);
}

.rmhc-motto .myth {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

.rmhc-motto .arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef0e6;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.rmhc-motto .truth {
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
}

.rmhc-motto .closing {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--card-shadow);
}

.rmhc-motto .closing .equation {
  font-weight: 600;
  font-size: 19px;
  color: var(--sage-deep);
  margin: 0 0 6px 0;
}

.rmhc-motto .closing p {
  margin: 10px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
}

.rmhc-motto .closing .muted {
  color: var(--ink-soft);
}

.rmhc-motto .signoff {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
}

@media (max-width: 860px) {
  .rmhc-motto .grid {
    grid-template-columns: 1fr;
  }
  .rmhc-motto .left {
    position: static;
  }
  .rmhc-motto .photo-frame img {
    height: 320px;
  }
  .rmhc-motto .reframe {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .rmhc-motto .arrow {
    transform: rotate(90deg);
  }
}
/* ------------------------------------------------------ */
.camp-section * {
  box-sizing: border-box;
}

.camp-section {
  /* --bg1: #FFF9E3; */
  --bg2: #ffefb0;
  --ink: #4a3f1e;
  --ink-soft: #8a7a45;
  --paper: #fffdf3;
  --line: rgba(154, 130, 40, 0.2);

  --c1: #c9a227;
  --c1-soft: #fff3c4;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  padding: 6rem 1.5rem 7rem;
  max-width: 1180px;
  /* margin: 0 auto; */
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  color: var(--ink);
  font-family: var(--font-body);
}

.camp-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.camp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.camp-eyebrow::before,
.camp-eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink-soft);
  opacity: 0.5;
}

.camp-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.camp-head p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.camp-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .camp-boxes {
    grid-template-columns: 1fr;
  }
}

.camp-box {
  background: linear-gradient(160deg, var(--paper), var(--bg2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.camp-box.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.camp-box:nth-child(1) {
  transition-delay: 0s;
}
.camp-box:nth-child(2) {
  transition-delay: 0.12s;
}
.camp-box:nth-child(3) {
  transition-delay: 0.24s;
}

.camp-box:hover {
  box-shadow: 0 18px 34px -20px rgba(154, 130, 40, 0.35);
  border-color: var(--c1);
}

.box-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: var(--c1-soft);
  color: var(--c1);
  --pulse: rgba(201, 162, 39, 0.15);
  animation: breathe 4.5s ease-in-out infinite;
}

.box-icon svg {
  width: 21px;
  height: 21px;
}

@keyframes breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--pulse);
  }
  50% {
    box-shadow: 0 0 0 8px var(--pulse);
  }
}

.box-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0.35rem;
}

.box-sub {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  line-height: 1.5;
}

/* sub-items: no box background, just a gradient underline */
.sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
}

.sub-item {
  background: none;
  border: none;
  padding: 0 0 0.6rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--c1), transparent) 1;
}

.sub-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .camp-box,
  .box-icon {
    transition: none !important;
    animation: none !important;
  }
  .camp-box {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ------------------------------------------------------- */

:root {
  --ln-bg: #171d19; /* near-black campsite dusk */
  --ln-bg-soft: #1f2620;
  --ln-panel: #20271f;
  --ln-line: rgba(243, 238, 226, 0.1);
  --ln-ink: #f3eee2;
  --ln-ink-soft: rgba(243, 238, 226, 0.62);

  --ln-1: #e8a94c; /* individuals — amber lantern */
  --ln-1-glow: rgba(232, 169, 76, 0.28);
  --ln-2: #e0876f; /* parents — ember rose */
  --ln-2-glow: rgba(224, 135, 111, 0.28);
  --ln-3: #6fb3b8; /* students — cool lantern teal */
  --ln-3-glow: rgba(111, 179, 184, 0.28);

  --ln-font-display: "Fraunces", serif;
  --ln-font-body: "Manrope", sans-serif;
  --ln-font-mono: "IBM Plex Mono", monospace;
}

.lantern-section * {
  box-sizing: border-box;
}

.lantern-section {
  background: var(--ln-bg);
  color: var(--ln-ink);
  font-family: var(--ln-font-body);
  padding: 6rem 1.5rem 7rem;
}

.lantern-inner {
  max-width: 900px;
  margin: 0 auto;
}

.lantern-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.lantern-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ln-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ln-ink-soft);
  margin-bottom: 1.1rem;
}

.lantern-eyebrow::before,
.lantern-eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.lantern-head h2 {
  font-family: var(--ln-font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ln-ink);
}

.lantern-head p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ln-ink-soft);
  margin: 0;
}

/* ---- stacked rows ---- */
.lantern-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lantern-row {
  border: 1px solid var(--ln-line);
  border-radius: 10px;
  background: var(--ln-panel);
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.lantern-row[data-tone="l1"].is-open {
  border-color: var(--ln-1);
  box-shadow:
    0 0 0 1px var(--ln-1),
    0 0 42px -10px var(--ln-1-glow);
}
.lantern-row[data-tone="l2"].is-open {
  border-color: var(--ln-2);
  box-shadow:
    0 0 0 1px var(--ln-2),
    0 0 42px -10px var(--ln-2-glow);
}
.lantern-row[data-tone="l3"].is-open {
  border-color: var(--ln-3);
  box-shadow:
    0 0 0 1px var(--ln-3),
    0 0 42px -10px var(--ln-3-glow);
}

.lantern-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  text-align: left;
  color: var(--ln-ink);
}

.lantern-trigger:focus-visible {
  outline: 2px solid var(--ln-ink);
  outline-offset: -3px;
}

.lantern-flame {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ln-bg-soft);
  border: 1px solid var(--ln-line);
  position: relative;
}

.lantern-flame svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

[data-tone="l1"] .lantern-flame {
  color: var(--ln-1);
}
[data-tone="l2"] .lantern-flame {
  color: var(--ln-2);
}
[data-tone="l3"] .lantern-flame {
  color: var(--ln-3);
}

.lantern-row.is-open .lantern-flame {
  animation: flicker 1.8s ease-in-out infinite;
}

[data-tone="l1"].is-open .lantern-flame {
  box-shadow: 0 0 18px 4px var(--ln-1-glow);
  background: var(--ln-1);
  color: var(--ln-bg);
}
[data-tone="l2"].is-open .lantern-flame {
  box-shadow: 0 0 18px 4px var(--ln-2-glow);
  background: var(--ln-2);
  color: var(--ln-bg);
}
[data-tone="l3"].is-open .lantern-flame {
  box-shadow: 0 0 18px 4px var(--ln-3-glow);
  background: var(--ln-3);
  color: var(--ln-bg);
}

@keyframes flicker {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.lantern-title-wrap {
  flex: 1;
  min-width: 0;
}

.lantern-title {
  font-family: var(--ln-font-display);
  font-weight: 500;
  font-size: 1.28rem;
  margin: 0 0 0.15rem;
}

.lantern-tagline {
  font-size: 0.84rem;
  color: var(--ln-ink-soft);
  margin: 0;
}

.lantern-count {
  flex-shrink: 0;
  font-family: var(--ln-font-mono);
  font-size: 0.72rem;
  color: var(--ln-ink-soft);
  border: 1px solid var(--ln-line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

.lantern-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.lantern-row.is-open .lantern-chevron {
  transform: rotate(180deg);
}

/* ---- expanding panel ---- */
.lantern-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.lantern-row.is-open .lantern-panel {
  grid-template-rows: 1fr;
}

.lantern-panel-inner {
  overflow: hidden;
}

.lantern-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
  padding: 0 1.5rem 1.6rem;
}

.lantern-item {
  border: 1px solid var(--ln-line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: var(--ln-bg-soft);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    border-color 0.3s ease;
}

.lantern-row.is-open .lantern-item {
  opacity: 1;
  transform: translateY(0);
}

.lantern-row.is-open .lantern-item:nth-child(1) {
  transition-delay: 0.05s;
}
.lantern-row.is-open .lantern-item:nth-child(2) {
  transition-delay: 0.1s;
}
.lantern-row.is-open .lantern-item:nth-child(3) {
  transition-delay: 0.15s;
}
.lantern-row.is-open .lantern-item:nth-child(4) {
  transition-delay: 0.2s;
}
.lantern-row.is-open .lantern-item:nth-child(5) {
  transition-delay: 0.25s;
}

[data-tone="l1"] .lantern-item:hover {
  border-color: var(--ln-1);
}
[data-tone="l2"] .lantern-item:hover {
  border-color: var(--ln-2);
}
[data-tone="l3"] .lantern-item:hover {
  border-color: var(--ln-3);
}

.lantern-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--ln-ink);
}

.lantern-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ln-ink-soft);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lantern-row,
  .lantern-chevron,
  .lantern-panel,
  .lantern-item,
  .lantern-flame {
    transition: none !important;
    animation: none !important;
  }
  .lantern-row.is-open .lantern-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* --------------------- */
/* ===================== STATS STRIP ===================== */
.stats-strip {
  background: var(--text);
  padding: 44px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-strip .stat {
  padding: 0 48px;
  text-align: center;
  border-right: 1px solid rgba(10, 10, 15, 0.12);
}
.stats-strip .stat:last-child {
  border-right: none;
}
.stats-strip .stat b {
  display: block;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #0a0a0f;
}
.stats-strip .stat .stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 28px;
}
.stats-strip .stat span {
  display: block;
  margin-top: 6px;
  font-size: 41px;
  letter-spacing: 0.04em;
  color: #ffff;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .stats-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
    padding: 20px 5px !important;
    gap: 0 !important;
  }

  .stats-strip .stat {
    width: 33.333% !important;
    flex: 0 0 33.333% !important;
    min-width: 0 !important;
    padding: 8px 4px !important;
    border-right: 1px solid rgba(10, 10, 15, 0.12) !important;
    box-sizing: border-box;
  }

  .stats-strip .stat:last-child {
    border-right: none !important;
  }

  .stats-strip .stat b {
    display: flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 20px !important;
    line-height: 1.2;
  }
  .stats-strip .stat span {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #ffff;
    text-transform: uppercase;
  }
  .stats-strip .stat > span {
    display: block;
    margin-top: 5px;
    font-size: 9px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  .stats-strip .stat .stars {
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }
}

/* section shared */
section {
  padding: 120px 6vw;
  position: relative;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-top: 18px;
}
.section-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== PROBLEM ===================== */
.problem {
  background: var(--bg-card);
}
.problem-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.problem-item {
  background: var(--bg-card);
  padding: 30px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-item .mark {
  color: var(--amber);
  font-size: 14px;
  flex-shrink: 0;
}
.problem-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ===================== CURRICULUM ===================== */
.curriculum-list {
  max-width: 820px;
  margin: 0 auto;
}
.curric-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.curric-row:first-child {
  border-top: 1px solid var(--border);
}
.curric-num {
  color: var(--cyan);
  font-size: 14px;
  padding-top: 4px;
}
.curric-row h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.curric-row p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
}

/* ===================== COACH ===================== */
/* ===================== COACH ===================== */
.coach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  width: 100%;
  margin: auto;
  align-items: center;
  padding-top: 20px;
}
.coach-portrait {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.coach-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--cyan-dim), transparent 60%),
    radial-gradient(circle at 70% 80%, var(--amber-dim), transparent 60%);
}
.coach-portrait img {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}
.coach-copy .eyebrow {
  margin-bottom: 18px;
}
.coach-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 20px;
}
.coach-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.coach-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}
.coach-stats div {
  font-family: "JetBrains Mono", monospace;
}
.coach-stats b {
  display: block;
  font-size: 26px;
  color: var(--amber);
  font-family: "Space Grotesk", sans-serif;
}
.coach-stats span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--bg-card);
  padding: 10px 6vw;
}
.test-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.test-card {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-card .stars {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 2px;
}
.test-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.9;
}
.test-card footer {
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}
.test-card footer b {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
}
/* ===================== BONUS ===================== */
.bonus-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bonus-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.bonus-row .tag {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}
.bonus-row h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.bonus-row p {
  color: var(--muted);
  font-size: 14px;
}
.bonus-row .price {
  text-align: right;
}
.bonus-row .strike {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
  display: block;
}
.bonus-row .free {
  color: var(--amber);
  font-weight: 600;
}

/* ===================== GUARANTEE ===================== */
.guarantee {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  padding: 64px 48px;
  background: radial-gradient(
    circle at 50% 0%,
    var(--cyan-dim),
    transparent 60%
  );
}
.guarantee .mark {
  width: 56px;
  height: 56px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--cyan);
  font-size: 20px;
}
.guarantee h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 18px;
}
.guarantee p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================== FAQ ===================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  padding: 26px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .plus {
  color: var(--cyan);
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 26px;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  text-align: center;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  margin-bottom: 20px;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 16px;
}

footer.site-footer {
  padding: 48px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.foot-brand img {
  width: 20px;
  height: 20px;
}

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

.gallery-section {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0px;
}

/* =========================================================
   GALLERY HEADER
========================================================= */

.gallery-header {
  width: 90%;
  max-width: 1180px;

  margin: 0 auto 45px;

  text-align: left;
}

.gallery-label {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  color: #d99a00;
}

.gallery-header h2 {
  margin: 0;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.05;

  letter-spacing: -2px;

  font-weight: 600;

  color: #111111;
}

.gallery-header h2 span {
  color: #ffc107;
}

.gallery-header p {
  max-width: 560px;

  margin: 18px 0 0;

  font-size: 16px;

  line-height: 1.7;

  color: #666666;
}

/* MOBILE */

@media (max-width: 768px) {
  .gallery-header {
    width: 88%;

    margin-bottom: 35px;
  }

  .gallery-header h2 {
    letter-spacing: -1.5px;
  }

  .gallery-header p {
    font-size: 15px;

    line-height: 1.65;
  }
}
/* =========================================================
   WRAPPER
========================================================= */

.gallery-wrapper {
  width: 100%;

  overflow: hidden;

  cursor: grab;

  user-select: none;
  -webkit-user-select: none;

  touch-action: pan-y;

  -webkit-tap-highlight-color: transparent;
}

.gallery-wrapper.dragging {
  cursor: grabbing;
}

/* =========================================================
   TRACK
========================================================= */

.gallery-track {
  display: flex;

  gap: 20px;

  width: max-content;

  /*
    JavaScript controls the movement.
  */

  transform: translate3d(0, 0, 0);

  will-change: transform;
}

/* =========================================================
   ITEM
========================================================= */

.gallery-item {
  position: relative;

  width: 250px;
  height: 300px;

  flex: 0 0 250px;

  overflow: hidden;

  border-radius: 18px;

  background: #eeeeee;

  cursor: pointer;
}

/* =========================================================
   IMAGE
========================================================= */

.gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  pointer-events: none;

  user-select: none;

  -webkit-user-drag: none;

  transition: transform 0.4s ease;
}

/* =========================================================
   IMAGE HOVER
========================================================= */

.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  box-sizing: border-box;

  background: rgba(0, 0, 0, 0.94);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

/* =========================================================
   LIGHTBOX IMAGE
========================================================= */

.gallery-lightbox img {
  display: block;

  width: auto;
  height: auto;

  max-width: 90vw;
  max-height: 85vh;

  object-fit: contain;

  border-radius: 12px;

  transform: scale(0.9);

  opacity: 0;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.gallery-lightbox.open img {
  transform: scale(1);

  opacity: 1;
}

/* =========================================================
   CLOSE
========================================================= */

.gallery-lightbox-close {
  position: absolute;

  top: 25px;
  right: 30px;

  z-index: 10;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.gallery-lightbox-close svg {
  width: 22px;
  height: 22px;
}

.gallery-lightbox-close:hover {
  background: #ffc107;

  color: #111111;

  transform: rotate(90deg);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .gallery-header {
    width: 88%;

    margin-bottom: 35px;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .gallery-header h2 {
    letter-spacing: -1.5px;
  }

  .gallery-header p {
    font-size: 15px;

    line-height: 1.65;
  }

  .gallery-track {
    gap: 14px;
  }

  .gallery-item {
    width: 260px;
    height: 340px;

    flex-basis: 260px;

    border-radius: 16px;
  }

  .gallery-lightbox {
    padding: 20px;
  }

  .gallery-lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }

  .gallery-lightbox-close {
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .gallery-header {
    width: 90%;
  }

  .gallery-item {
    width: 230px;
    height: 300px;

    flex-basis: 230px;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-lightbox img {
    max-width: 96vw;
    max-height: 78vh;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gallery-item img,
  .gallery-lightbox,
  .gallery-lightbox img,
  .gallery-lightbox-close {
    transition: none !important;
  }
}
.camp-title-area {
  position: relative;
  min-height: 390px;
}

.camp-image-grid {
  position: relative;
  width: 430px;
  height: 330px;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 40px;
}

/* Common image styling */
.camp-img {
  position: absolute;
  object-fit: cover;
  border: 5px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Top-left image */
.camp-img-1 {
  width: 280px;
  height: 190px;
  left: 0;
  top: 0;
  z-index: 1;
}

/* Right image */
.camp-img-2 {
  width: 270px;
  height: 190px;
  right: 0;
  top: 55px;
  z-index: 3;
}

/* Bottom image */
.camp-img-3 {
  width: 245px;
  height: 165px;
  left: 105px;
  bottom: 0;
  z-index: 2;
}
/* =========================================================
   RESPONSIVE - THIS CAMP IS FOR YOU
========================================================= */

/* Large tablets / smaller laptops */
@media (max-width: 1100px) {
  .mhc-for-you-inner {
    gap: 35px;
  }

  .camp-title-area {
    min-height: 360px;
  }

  .camp-image-grid {
    width: 380px;
    height: 300px;
    margin-right: 0;
  }

  .camp-img-1 {
    width: 245px;
    height: 170px;
  }

  .camp-img-2 {
    width: 240px;
    height: 170px;
    top: 50px;
  }

  .camp-img-3 {
    width: 220px;
    height: 150px;
    left: 85px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {
  .mhc-for-you-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }

  .mhc-for-you-heading {
    width: 100%;
    text-align: center;
  }

  .camp-title-area {
    width: 100%;
    min-height: 0;
  }

  .camp-image-grid {
    width: min(430px, 90vw);
    height: 330px;
    margin: 35px auto 0;
  }

  .mhc-for-you-list {
    width: 90%;
  }

  .mhc-for-you-note {
    width: 90%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .mhc-for-you {
    padding: 50px 0;
  }

  .mhc-for-you-inner {
    width: 100%;
    gap: 35px;
  }

  .mhc-for-you-heading {
    width: 100%;
  }

  .mhc-logo-circle {
    margin: 0 auto 20px;
  }

  .camp-title-area {
    width: 100%;
    min-height: 0;
  }

  .camp-title-area h2 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 25px;
  }

  .camp-image-grid {
    width: 94vw;
    max-width: 430px;
    height: 300px;
    margin: 25px auto 0;
  }

  .camp-img {
    border-width: 4px;
    border-radius: 16px;
  }

  .camp-img-1 {
    width: 62%;
    height: 165px;
    left: 0;
    top: 0;
  }

  .camp-img-2 {
    width: 60%;
    height: 165px;
    right: 0;
    top: 45px;
  }

  .camp-img-3 {
    width: 55%;
    height: 145px;
    left: 23%;
    bottom: 0;
  }

  .mhc-for-you-list {
    width: 92%;
  }

  .mhc-for-you-item {
    gap: 12px;
  }

  .mhc-for-you-item p {
    font-size: 15px;
    line-height: 1.5;
  }

  .mhc-for-you-note {
    width: 92%;
    padding: 12px 16px;
    text-align: center;
    flex-wrap: wrap;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
  .mhc-for-you {
    padding: 40px 0;
  }

  .camp-title-area h2 {
    font-size: 28px;
  }

  .camp-image-grid {
    width: 74vw;
    height: 260px;
  }

  .camp-img-1 {
    width: 64%;
    height: 145px;
  }

  .camp-img-2 {
    width: 62%;
    height: 145px;
    top: 38px;
  }

  .camp-img-3 {
    width: 56%;
    height: 125px;
    left: 22%;
  }

  .mhc-for-you-item p {
    font-size: 14px;
  }

  .mhc-for-you-note {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* =========================================================
   TESTIMONIALS - RESPONSIVE
========================================================= */

/* Tablet */
@media (max-width: 900px) {
  .testimonials {
    padding: 10px 4vw;
  }

  .test-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
  }

  .test-card {
    padding: 28px 24px;
    gap: 16px;
  }

  .test-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonials {
    padding: 10px 5vw;
  }

  .test-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1px;
  }

  .test-card {
    padding: 25px 22px;
    gap: 15px;
  }

  .test-card .stars {
    font-size: 12px;
  }

  .test-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .test-card footer {
    font-size: 11px;
  }

  .test-card footer b {
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .testimonials {
    padding: 10px 4vw;
  }

  .test-card {
    padding: 22px 18px;
  }

  .test-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .test-card footer b {
    font-size: 12.5px;
  }
}
/* FIX EXPERIENCE CARDS */
.experience-section .experience-card {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  padding-right: 10px;
  padding-left: 10px;
}

.experience-section .experience-card:nth-child(8) {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.experience-section .experience-card:nth-child(8) .experience-image,
.experience-section .experience-card:nth-child(8) .experience-image img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* =========================================
   MOBILE + TABLET — REMOVE ALL ANIMATIONS
========================================= */

@media (max-width: 900px) {
  /* Remove AOS animations */
  [data-aos="fade-left"],
  [data-aos="fade-right"],
  [data-aos="zoom-in"],
  [data-aos="zoom-out"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  /* Experience section */
  .experience-section,
  .experience-section * {
    animation: none !important;
    transition: none !important;
    padding-left: 0px;
    padding-right: 0px;
  }

  /* Cards stay completely still */
  .experience-section .experience-card,
  .experience-section .experience-card.in-view {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  /* Images stay still */
  .experience-section .experience-image,
  .experience-section .experience-image img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  /* Disable hover movement */
  .experience-section .experience-card:hover {
    transform: none !important;
  }

  .experience-section .experience-card:hover img {
    transform: none !important;
  }
}
@media (max-width: 900px) {
  .bulletpoints {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .experience-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .experience-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 10px;
  }

  .experience-card {
    aspect-ratio: 3 / 4;
  }

  .experience-content {
    padding: 14px 8px 12px;
  }

  .experience-content h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .experience-content > span {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
@media (max-width: 768px) {
  .mental-step-text p {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .camp-section {
    padding: 25px 15px !important;
  }
}
/* =========================
   GALLERY - TABLET & MOBILE
========================= */

@media (max-width: 900px) {
  .gallery-section {
    padding: 5px 0 !important;
  }

  .gallery-header {
    margin-bottom: 20px !important;
  }

  .gallery-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .gallery-item {
    width: 180px !important;
    height: 220px !important;
  }

  .gallery-track {
    gap: 10px !important;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 600px) {
  .gallery-section {
    padding: 0 !important;
  }

  .gallery-header {
    padding: 0 15px;
    margin-bottom: 15px !important;
  }

  .gallery-item {
    width: 130px !important;
    height: 165px !important;
  }

  .gallery-track {
    gap: 8px !important;
  }
}
@media (max-width: 900px) {
  .testimonials {
    padding: 35px 15px !important;
  }

  .section-head {
    margin-bottom: 25px !important;
  }

  .section-head h2 {
    font-size: 25px !important;
  }

  .test-card {
    padding: 16px !important;
  }

  .test-card p {
    font-size: 12px !important;
  }
}
/* ================================
   FOUNDER SECTION - MOBILE
================================ */

@media (max-width: 768px) {
  .coach-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;
    box-sizing: border-box;
  }

  .coach-copy .eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .coach-copy h2 {
    font-size: 30px !important;
    line-height: 1.15;
    margin: 8px 0 10px !important;
  }

  .role-line {
    font-size: 12px !important;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .coach-copy > p {
    font-size: 13px !important;
    line-height: 1.6;
    margin-bottom: 12px !important;
  }

  /* Stats */
  .coach-stats {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px !important;
    margin-top: 25px !important;
  }

  .coach-stats > div {
    text-align: center;
    padding: 10px 4px !important;
  }

  .coach-stats b {
    display: block;
    font-size: 21px !important;
    line-height: 1.2;
  }

  .coach-stats span {
    display: block;
    margin-top: 5px;
    font-size: 8px !important;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 480px) {
  .coach-copy {
    padding: 0 12px !important;
  }

  .coach-copy h2 {
    font-size: 26px !important;
  }

  .role-line {
    font-size: 11px !important;
  }

  .coach-copy > p {
    font-size: 12px !important;
    line-height: 1.55;
  }

  .coach-stats {
    gap: 4px !important;
  }

  .coach-stats > div {
    padding: 8px 2px !important;
  }

  .coach-stats b {
    font-size: 18px !important;
  }

  .coach-stats span {
    font-size: 7px !important;
  }
}
@media (max-width: 900px) {
  .coach-portrait {
    display: none !important;
  }
  .coach-section {
    display: block !important;
  }

  .coach-copy {
    width: 100% !important;
    max-width: 100% !important;
  }
  .coach {
    display: block !important;
    grid-template-columns: none !important;
  }
}
/* =========================================
   STATIC CTA — MOBILE & TABLET SINGLE ROW
========================================= */

@media (max-width: 900px) {
  .static-cta-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .static-cta-bar .bar-logo {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  .static-cta-bar .bar-logo img {
    width: 65px !important;
    height: auto !important;
    display: block !important;
  }

  .static-cta-bar .bar-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .static-cta-bar .bar-text h2 {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .static-cta-bar .bar-text .sub {
    display: none !important;
  }

  .static-cta-bar .bar-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}

/* Smaller mobile */
@media (max-width: 640px) {
  .static-cta-bar {
    gap: 7px !important;
    padding: 10px 12px !important;
  }

  .static-cta-bar .bar-logo img {
    width: 48px !important;
  }

  .static-cta-bar .bar-text h2 {
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  .static-cta-bar .bar-btn {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }
}
@media (max-width: 900px) {
  .mental-outcomes-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mental-outcome-card {
    width: 100%;
    box-sizing: border-box;
  }
}
/* ================================
   TABLET + MOBILE WIDTH FIX
   ================================ */

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  section,
  header,
  footer,
  main,
  .container,
  .section,
  .section-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Prevent padding from increasing total width */
  section,
  header,
  footer,
  main,
  div {
    box-sizing: border-box;
  }

  /* Images/videos stay inside their containers */
  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  /* Grids fit available width */
  [class*="grid"] {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Flex children are allowed to shrink */
  .container,
  .section-inner,
  [class*="inner"],
  [class*="content"] {
    min-width: 0;
  }
}

/* ================================
   MOBILE
   ================================ */

@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  section,
  main,
  header,
  footer {
    width: 100%;
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }
}
/* ================================
   CAMP MOTTO - COMPACT CONTENT
================================ */

.camp-motto-section {
  padding: 55px 20px;
}

.camp-motto-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.camp-motto-inner .eyebrow {
  font-size: 12px;
  margin-bottom: 8px;
}

.camp-motto-inner h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 25px;
}

.camp-motto-inner p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.camp-motto-inner .motto-lead {
  font-size: 16px;
  line-height: 1.65;
  margin-top: 22px;
}

.camp-motto-signoff {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 22px;
  letter-spacing: 0.5px;
}

.camp-motto-cta {
  margin-top: 22px;
}

/* Image sizing */
.photo-layout {
  margin: 20px 0;
}

.photo-header img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.photo-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.photo-box {
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {
  .camp-motto-section {
    padding: 45px 20px;
  }

  .camp-motto-inner h2 {
    font-size: 29px;
  }

  .camp-motto-inner p {
    font-size: 14px;
    line-height: 1.6;
  }

  .camp-motto-inner .motto-lead {
    font-size: 15px;
  }

  /* Only ONE image */
  .photo-columns {
    display: block;
  }

  .photo-columns .photo-box:not(:first-child) {
    display: none;
  }

  .photo-columns .photo-box:first-child {
    width: 100%;
    height: 260px;
  }

  .photo-header {
    display: none;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .camp-motto-section {
    padding: 35px 16px;
  }

  .camp-motto-inner .eyebrow {
    font-size: 10px;
  }

  .camp-motto-inner h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .camp-motto-inner p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 11px;
  }

  .camp-motto-inner .motto-lead {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 16px;
  }

  .photo-layout {
    margin: 16px 0;
  }

  /* Hide banner */
  .photo-header {
    display: none;
  }

  /* Keep only first image */
  .photo-columns {
    display: block;
  }

  .photo-columns .photo-box:not(:first-child) {
    display: none;
  }

  .photo-columns .photo-box:first-child {
    display: block;
    width: 100%;
    height: 210px;
  }

  .camp-motto-signoff {
    font-size: 9px;
    line-height: 1.45;
    margin-top: 18px;
  }

  .camp-motto-cta {
    margin-top: 18px;
  }
}
@media (max-width: 900px) {
  .healthcare-register-description {
    display: none !important;
  }

  .healthcare-register-content {
    gap: 10px;
  }
}
