/* =========================================================
   A·CAMP — Adventist Camps Catalog · 2026
   Brand tokens sourced directly from book_camp.pdf brand book
   ========================================================= */

:root {
  --green:     #023936;
  --green-2:   #044b46;
  --green-3:   #01282b;
  --green-4:   #0a655d;
  --white:     #FEFEFE;
  --lime:      #D8FE01;
  --lime-soft: #b5d200;
  --orange:    #E68620;
  --orange-soft: rgba(230, 134, 32, 0.18);
  --text:      #FEFEFE;
  --muted:     rgba(254,254,254,.72);
  --dim:       rgba(254,254,254,.48);
  --line:      rgba(254,254,254,.10);
  --line-2:    rgba(254,254,254,.22);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease:      cubic-bezier(.2, .8, .2, 1);

  --font-display: 'Unbounded', 'Archivo Black', 'Arial Black', sans-serif;
  --font-body:    'Manrope', 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1360px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--green);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Typography ==================================================== */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 6px 14px;
  background: rgba(216, 254, 1, 0.09);
  border: 1px solid rgba(216, 254, 1, 0.35);
  border-radius: var(--radius-pill);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}

h2 { font-size: clamp(40px, 6vw, 84px); line-height: 0.96; letter-spacing: -0.025em; }
h3 { font-size: clamp(24px, 3vw, 36px); line-height: 1.1; }
h4 { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.2; }

p  { color: var(--muted); }
strong { color: var(--white); font-weight: 700; }

.lime { color: var(--lime); }
.orange { color: var(--orange); }

/* ===== Container ===================================================== */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ===== Header / Nav ================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(2, 40, 43, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; letter-spacing: -0.02em; font-size: 20px; color: var(--white); }
.brand-lockup .mark { width: 36px; height: 36px; color: var(--lime); }
.brand-lockup span { white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list a {
  display: inline-block; padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  color: var(--muted); transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,.06); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-2);
  color: var(--white); width: 44px; height: 44px; border-radius: var(--radius-pill); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-nav { display: none; }

@media (max-width: 880px) {
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: var(--green-3); z-index: 200; padding: 80px 24px 32px;
    transform: translateY(-100%); opacity: 0; transition: transform .4s var(--ease), opacity .3s var(--ease);
    pointer-events: none;
  }
  .mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a {
    font-family: var(--font-display); font-size: 36px; font-weight: 900;
    padding: 16px 0; color: var(--white); border-bottom: 1px solid var(--line);
  }
  .mobile-nav .close {
    position: absolute; top: 20px; right: 20px; background: transparent;
    color: var(--white); border: 1px solid var(--line-2);
    width: 44px; height: 44px; border-radius: var(--radius-pill); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

/* ===== Buttons ======================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--lime); color: var(--green);
  box-shadow: 0 10px 40px -10px rgba(216, 254, 1, 0.45);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -12px rgba(216, 254, 1, 0.6); }
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--secondary {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--line-2);
}
.btn--secondary:hover { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 10px 40px -12px rgba(230, 134, 32, 0.5);
}
.btn--orange:hover { transform: translateY(-3px); }

/* ===== Sections generic ============================================== */

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.section-head { margin-bottom: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; gap: 16px; max-width: 900px; }
.section-head h2 .accent { color: var(--lime); }
.section-lede { color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; max-width: 640px; }

/* ===== Hero ========================================================== */

.hero {
  position: relative; padding: 140px 0 80px; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(216,254,1,.08), transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(230,134,32,.10), transparent 55%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: end;
}
.hero__headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 16vw, 260px);
  line-height: 0.82; letter-spacing: -0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.hero__headline .year {
  display: inline-block; color: var(--lime); margin-left: .05em;
  text-shadow: 0 0 60px rgba(216, 254, 1, 0.35);
}
.hero__headline .year--outline {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  line-height: 0.82;
}
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  margin-top: 28px;
}
.hero__sub {
  max-width: 560px; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted); line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero__eyebrow-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.hero__eyebrow-row .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); font-weight: 700; }

/* stickers floating */
.sticker {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
  will-change: transform;
}
.sticker img { max-width: 100%; height: auto; display: block; }
.sticker--1 { top: 12%;  right: 4%;  width: clamp(120px, 16vw, 240px); transform: rotate(-8deg); }
.sticker--2 { bottom: 18%; right: 14%; width: clamp(90px, 11vw, 180px);  transform: rotate(12deg); }
.sticker--3 { top: 28%;  left: 6%;   width: clamp(80px, 9vw, 140px);   transform: rotate(-14deg); }
.sticker--pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  background: var(--lime); color: var(--green);
  font-family: var(--font-display); font-weight: 900; letter-spacing: -0.01em;
  font-size: 18px; line-height: 1;
}
.sticker--pill svg { width: 20px; height: 20px; }
.sticker--pill.orange { background: var(--orange); color: var(--white); }
.sticker--pill.green-inv { background: var(--green-3); color: var(--lime); }

@media (max-width: 720px) {
  .sticker--1 { top: 6%; right: -4%; width: 140px; }
  .sticker--2 { bottom: 6%; right: auto; left: 4%; width: 110px; }
  .sticker--3 { display: none; }
}

/* ===== Stats row ===================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat__value {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 5vw, 64px); line-height: 1;
  color: var(--lime); letter-spacing: -0.03em;
}
.stat__label {
  margin-top: 8px; color: var(--muted);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
}

/* ===== About ========================================================= */

.about { position: relative; }
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.about-copy { display: flex; flex-direction: column; gap: 24px; }
.about-copy p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; color: var(--muted); }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--green-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; place-items: center;
  padding: 40px;
}
.about-visual .mark-big {
  width: 80%; max-width: 360px; color: var(--lime);
  opacity: 0.9;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,254,1,.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(230,134,32,.14), transparent 50%);
}
.about-visual .sticker-set {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
}
.about-visual .sticker-set > span {
  display: grid; place-items: center;
}
.about-visual .sticker-set svg { width: 54px; height: 54px; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/11; }
}

/* ===== Categories overview ========================================== */

.cats { background: var(--green-3); position: relative; }
.cats::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.cats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 28px);
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: clamp(20px, 3vw, 36px) 12px;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center; cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  color: var(--white);
}
.cat-card:hover { background: rgba(216,254,1,.04); border-color: rgba(216,254,1,.45); transform: translateY(-4px); }
.cat-card__icon { width: clamp(56px, 7vw, 84px); height: clamp(56px, 7vw, 84px); color: var(--orange); transition: color .25s var(--ease); }
.cat-card:hover .cat-card__icon { color: var(--lime); }
.cat-card__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(14px, 1.3vw, 18px); letter-spacing: 0.02em; line-height: 1.1; }
.cat-card__sub { font-size: 12px; color: var(--dim); letter-spacing: 0.04em; }
.cat-card__count {
  margin-top: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
}
.cat-card.is-empty { opacity: 0.35; pointer-events: none; }

@media (max-width: 920px) { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Filters ======================================================= */

.filters {
  display: flex; flex-wrap: wrap; gap: 12px 10px; align-items: center;
  padding: 20px 0; margin-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.filter-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--lime);
  margin-right: 8px;
}
.filter-label svg { width: 16px; height: 16px; }
.chip {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--white); border-color: var(--white); }
.chip.is-active { background: var(--lime); color: var(--green); border-color: var(--lime); }
.chip--sep { pointer-events: none; border: none; padding: 8px 0; color: var(--dim); }

/* ===== Camp sections (grouped by bucket) ============================= */

.bucket { padding: clamp(40px, 6vw, 80px) 0; }
.bucket-head {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.bucket-head__icon { width: clamp(48px, 5vw, 64px); height: clamp(48px, 5vw, 64px); color: var(--orange); }
.bucket-head__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.025em;
  color: var(--white); text-transform: uppercase;
}
.bucket-head__count {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--lime); color: var(--green);
  font-family: var(--font-display); font-weight: 900; font-size: 14px; letter-spacing: 0.02em;
}
.bucket-head__sub { margin-left: auto; font-size: 13px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

.bucket-empty {
  padding: clamp(32px, 5vw, 56px); border: 1px dashed var(--line-2);
  border-radius: var(--radius); text-align: center; color: var(--dim);
  display: flex; flex-direction: column; gap: 8px;
}
.bucket-empty strong { color: var(--muted); font-weight: 700; }

/* Camps table — Grid-based for full responsive control */

.camps-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-2);
  border: 1px solid var(--line);
}
.camps-table__head {
  display: grid;
  grid-template-columns: 120px minmax(180px, 1.4fr) 140px minmax(140px, 1.2fr) 80px minmax(150px, 1.1fr) 100px;
  gap: 12px;
  padding: 18px 24px;
  background: var(--lime);
  color: var(--green);
  font-family: var(--font-body); font-weight: 800;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.camps-table__body {}
.camp-row {
  display: grid;
  grid-template-columns: 120px minmax(180px, 1.4fr) 140px minmax(140px, 1.2fr) 80px minmax(150px, 1.1fr) 100px;
  gap: 12px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  transition: background .2s var(--ease), border-color .2s var(--ease);
  align-items: start;
}
.camp-row:hover { background: rgba(216, 254, 1, 0.04); }
.camp-row .dates {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; line-height: 1.25; color: var(--lime); letter-spacing: -0.01em;
  padding: 4px 10px 4px 0;
}
.camp-row .name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; line-height: 1.2; color: var(--white); letter-spacing: -0.015em;
}
.camp-row .name em { font-style: normal; font-size: 12px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-top: 6px; font-weight: 600; font-family: var(--font-body); }
.camp-row .conf { color: var(--muted); font-size: 14px; font-weight: 600; align-self: center; }
.camp-row .place { color: var(--muted); font-size: 14px; line-height: 1.45; align-self: center; }
.camp-row .lodging { display: inline-flex; align-items: center; gap: 4px; justify-self: center; color: var(--orange); }
.camp-row .lodging svg { width: 24px; height: 24px; }
.camp-row .resp { color: var(--muted); font-size: 14px; line-height: 1.4; }
.camp-row .resp strong { color: var(--white); font-weight: 700; display: block; }
.camp-row .resp a { color: var(--lime); font-weight: 600; display: inline-block; margin-top: 4px; font-size: 13px; }
.camp-row .resp a:hover { text-decoration: underline; }
.camp-row .age {
  font-family: var(--font-display); font-weight: 900; color: var(--orange);
  font-size: 14px; letter-spacing: 0.02em; white-space: nowrap;
  align-self: center;
}
.camp-row .notes {
  grid-column: 1 / -1; margin-top: 8px; padding: 12px 16px;
  background: rgba(216, 254, 1, 0.06); border-left: 3px solid var(--lime);
  border-radius: 6px; font-size: 13px; color: var(--muted); line-height: 1.5;
}

@media (max-width: 980px) {
  .camps-table { border-radius: var(--radius); background: transparent; border: none; }
  .camps-table__head { display: none; }
  .camp-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "dates dates age"
      "name  name  name"
      "place place lodging"
      "conf  conf  conf"
      "resp  resp  resp"
      "notes notes notes";
    gap: 10px 16px;
    padding: 22px;
    background: var(--green-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
  }
  .camp-row .dates { grid-area: dates; }
  .camp-row .name  { grid-area: name; font-size: 22px; }
  .camp-row .conf  { grid-area: conf; }
  .camp-row .place { grid-area: place; display: flex; align-items: center; gap: 6px; }
  .camp-row .place::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex: 0 0 10px; }
  .camp-row .lodging { grid-area: lodging; justify-self: end; }
  .camp-row .resp  { grid-area: resp; padding-top: 8px; border-top: 1px solid var(--line); }
  .camp-row .age   { grid-area: age; justify-self: end; }
  .camp-row .notes { grid-area: notes; }
}

/* ===== Archive ======================================================= */

.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.archive-card {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--green-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.archive-card:hover { border-color: var(--lime); transform: translateY(-3px); background: rgba(216, 254, 1, 0.03); }
.archive-card__year {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 8vw, 100px); line-height: 0.9; letter-spacing: -0.04em;
  color: var(--lime);
}
.archive-card__meta { text-align: right; }
.archive-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 900; letter-spacing: -0.015em; }
.archive-card__action { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.archive-card__action svg { width: 14px; height: 14px; }

@media (max-width: 720px) { .archive-grid { grid-template-columns: 1fr; } }

/* ===== Submit CTA band =============================================== */

.submit-band {
  background: var(--lime); color: var(--green);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
}
.submit-band::before, .submit-band::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; pointer-events: none;
}
.submit-band::before { background: rgba(2, 57, 54, 0.07); top: -80px; right: -60px; }
.submit-band::after  { background: rgba(230, 134, 32, 0.15); bottom: -100px; left: 10%; }
.submit-band h2 { color: var(--green); font-size: clamp(32px, 4.5vw, 64px); line-height: 0.95; }
.submit-band p { color: rgba(2, 57, 54, 0.78); max-width: 520px; margin-top: 12px; font-size: 16px; }
.submit-band .btn { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .submit-band { grid-template-columns: 1fr; text-align: left; }
}

/* ===== Contacts ====================================================== */

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: end; }
.contact-card {
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--green-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card__role { color: var(--lime); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.contact-card__name { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.contact-card__list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.contact-card__list a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 600; color: var(--white);
  padding: 10px 14px; margin-left: -14px; border-radius: var(--radius); transition: background .2s var(--ease);
}
.contact-card__list a:hover { background: rgba(216, 254, 1, 0.08); }
.contact-card__list svg { width: 20px; height: 20px; color: var(--orange); }

.youth-promo {
  padding: clamp(24px, 4vw, 40px);
  background: transparent; border: 1px dashed var(--line-2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 12px;
}
.youth-promo__label { color: var(--dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }
.youth-promo__title { font-family: var(--font-display); font-size: 24px; font-weight: 900; }
.youth-promo a { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); font-weight: 700; margin-top: 4px; }
.youth-promo a:hover { text-decoration: underline; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Footer ======================================================== */

.site-footer {
  padding: clamp(48px, 6vw, 80px) 0 40px;
  background: var(--green-3);
  border-top: 1px solid var(--line);
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer-inner .brand-lockup .mark { color: var(--lime); }
.footer-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-meta p { font-size: 13px; color: var(--dim); }
.footer-meta .disclaimer { max-width: 420px; font-size: 12px; color: var(--dim); line-height: 1.5; margin-top: 8px; }

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

/* ===== Utility + motion ============================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Print ======================================================== */

@media print {
  .site-header, .submit-band, .filters, .hero__cta { display: none !important; }
  body { background: #fff; color: #000; }
  .camp-row { break-inside: avoid; }
}
