/* Camp Wise — pill nav, diagonal hero, fanned cards, timeline */
:root {
  --mustard: #d4a017;
  --mustard-dark: #b8860b;
  --forest: #2d5a3f;
  --forest-light: #3d7a55;
  --cream: #f5f0e8;
  --text: #1a1c18;
  --text-light: #6b6f68;
  --white: #fcfaf7;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--cream);
  line-height: 1.6;
}

/* Pill nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%; background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}
nav .brand { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.3px; color: var(--forest); }
nav .brand .w { color: var(--mustard); }
nav .pill-links { display: flex; gap: 6px; }
nav .pill-links a {
  padding: 6px 18px; border-radius: 30px;
  font-size: 0.72rem; font-weight: 500; text-decoration: none;
  color: var(--text-light); transition: 0.2s;
}
nav .pill-links a:hover, nav .pill-links a.active { background: var(--forest); color: var(--white); }

/* Diagonal hero */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center;
  padding: 80px 6%; overflow: hidden;
  background: var(--white);
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 520px; }
.hero-inner .tag {
  display: inline-block; font-size: 0.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--mustard);
  margin-bottom: 12px;
}
.hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -1px; margin-bottom: 12px;
}
.hero-inner h1 .hl { color: var(--forest); }
.hero-inner p { font-size: 0.92rem; color: var(--text-light); max-width: 420px; line-height: 1.7; margin-bottom: 28px; }
.hero-inner .btn {
  display: inline-block; padding: 12px 32px; border-radius: 30px;
  background: var(--mustard); color: var(--white); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; transition: 0.3s;
}
.hero-inner .btn:hover { background: var(--mustard-dark); transform: translateY(-2px); }

/* Fan deck — overlapping program cards */
.fan-deck { padding: 80px 6%; background: var(--cream); }
.fan-deck h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--forest); text-align: center; margin-bottom: 4px; }
.fan-deck .sub { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-bottom: 50px; }
.fan-wrap {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; gap: -20px; /* overlap */
  position: relative;
}
.fan-card {
  flex: 0 0 260px; padding: 28px 24px; border-radius: 20px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative; transition: 0.3s;
  margin-left: -30px; /* overlap */
}
.fan-card:first-child { margin-left: 0; }
.fan-card:nth-child(2) { margin-top: 20px; }
.fan-card:nth-child(3) { margin-top: 40px; }
.fan-card:nth-child(4) { margin-top: 20px; }
.fan-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px rgba(45,90,63,0.08); z-index: 2; }
.fan-card .fc-num { font-size: 2rem; font-weight: 800; color: var(--mustard); opacity: 0.2; line-height: 1; margin-bottom: 6px; }
.fan-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.fan-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* Timeline */
.timeline-s { padding: 80px 6%; background: var(--white); }
.timeline-s h2 { text-align: center; font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--forest); margin-bottom: 40px; }
.tl { max-width: 700px; margin: 0 auto; position: relative; }
.tl::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--mustard); opacity: 0.3; transform: translateX(-50%); }
.tl-item { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 40px; position: relative; }
.tl-item:nth-child(odd) { flex-direction: row; }
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-item .tl-dot { flex: 0 0 14px; height: 14px; border-radius: 50%; background: var(--mustard); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--mustard); z-index: 1; margin-top: 3px; }
.tl-item .tl-text { flex: 1; }
.tl-item .tl-text .tl-year { font-size: 0.7rem; font-weight: 700; color: var(--mustard); letter-spacing: 1px; }
.tl-item .tl-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.tl-item .tl-text p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* Stats strip */
.stats-strip { padding: 50px 6%; background: var(--forest); display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.ss-item { text-align: center; }
.ss-item .ss-num { font-size: 1.8rem; font-weight: 800; color: var(--mustard); line-height: 1; }
.ss-item .ss-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* CTA */
.cta { padding: 100px 6%; background: var(--cream); text-align: center; position: relative; }
.cta .c-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--mustard); opacity: 0.04;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--forest); position: relative; margin-bottom: 8px; }
.cta p { color: var(--text-light); font-size: 0.85rem; max-width: 380px; margin: 0 auto 24px; position: relative; }
.cta .btn {
  display: inline-block; padding: 12px 34px; border-radius: 30px;
  background: var(--forest); color: var(--white); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; position: relative; transition: 0.3s;
}
.cta .btn:hover { background: var(--forest-light); transform: translateY(-2px); }

/* Footer */
footer { padding: 28px 6%; background: var(--text); text-align: center; }
footer p { font-size: 0.65rem; color: rgba(255,255,255,0.2); }
footer a { color: var(--mustard); text-decoration: none; }
footer .fb { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 4px; }
footer .fb a { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
footer .fb a:hover { color: var(--mustard); }

/* Pages */
.p-hero { padding: 70px 8% 20px; background: var(--white); }
.p-hero h1 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--forest); margin-bottom: 4px; }
.p-hero p { color: var(--text-light); font-size: 0.85rem; max-width: 460px; }
.p-body { padding: 16px 8% 70px; background: var(--white); }
.p-bi { max-width: 700px; }
.p-bi h2 { font-size: 0.95rem; margin: 22px 0 6px; color: var(--forest); }
.p-bi p, .p-bi li { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }
.p-bi ul { padding-left: 16px; margin: 4px 0 10px; }

/* Contact */
.cf { max-width: 520px; }
.cf .fg { margin-bottom: 12px; }
.cf label { display: block; font-size: 0.68rem; font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.cf input, .cf textarea { width: 100%; padding: 8px 12px; border: 1px solid rgba(0,0,0,0.05); border-radius: 8px; font-size: 0.85rem; font-family: inherit; background: var(--cream); }
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--mustard); }
.cf textarea { height: 70px; }
.cf .btn { padding: 10px 32px; border: none; border-radius: 30px; background: var(--mustard); color: var(--white); font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.cf .btn:hover { background: var(--mustard-dark); }
.cd { margin-top: 28px; font-size: 0.8rem; color: var(--text-light); line-height: 1.6; border-top: 1px solid rgba(0,0,0,0.04); padding-top: 18px; }
.cd strong { color: var(--text); }

@media (max-width: 768px) {
  .hero::after { width: 0; }
  .fan-wrap { flex-direction: column; align-items: center; }
  .fan-card { margin-left: 0; margin-bottom: -20px; flex: 0 0 auto; width: 80%; max-width: 300px; }
  .fan-card:nth-child(2), .fan-card:nth-child(3), .fan-card:nth-child(4) { margin-top: -20px; }
  .tl-item:nth-child(even) { flex-direction: row; }
  .tl::before { left: 20px; }
  .tl-item .tl-dot { flex: 0 0 14px; }
  nav .pill-links a { padding: 4px 12px; font-size: 0.65rem; }
  nav { flex-wrap: wrap; gap: 8px; }
}
