@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --charcoal: #15191b;
  --snow: #f4f5f1;
  --orange: #ff6b2c;
  --ice: #bde8f4;
  --steel: #5f7178;
  --line: rgba(21, 25, 27, 0.17);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
}

.site-header {
  min-height: 76px;
  padding: 15px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand span {
  padding: 10px;
  background: var(--orange);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-header nav ul,
footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.site-header nav a,
footer a {
  color: inherit;
  text-decoration: none;
}

.site-header nav a[aria-current='page'],
.site-header nav a:hover {
  color: var(--orange);
}

.hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 82vh;
  min-height: 640px;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 15, 0.9), rgba(9, 13, 15, 0.2) 72%);
}

.hero-content {
  width: min(900px, calc(100% - 42px));
  position: absolute;
  left: clamp(22px, 6vw, 88px);
  bottom: clamp(44px, 8vw, 100px);
  color: var(--snow);
}

.route-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

h1 {
  max-width: 950px;
  margin: 0 0 24px;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.035em;
}

.hero-content > p:not(.route-label) {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-content > a {
  display: inline-flex;
  margin-top: 20px;
  padding: 15px 22px;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.premise,
.camp-grid,
.operating-rhythm,
.principles,
.closing {
  width: min(1240px, calc(100% - 42px));
  margin: 110px auto;
}

.premise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 110px);
}

.premise h2,
.closing h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.88;
}

.premise-copy {
  font-size: 1.07rem;
  line-height: 1.85;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.camp-grid article {
  min-height: 320px;
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ice);
}

.camp-grid .large-card {
  min-height: 654px;
  grid-row: span 2;
  background: var(--charcoal);
  color: var(--snow);
}

.camp-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.88;
}

.camp-grid p:last-child {
  max-width: 680px;
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--charcoal);
}

.timeline article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.timeline span {
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.timeline h3 {
  margin: 55px 0 15px;
  font-size: 2rem;
}

.timeline p,
.principles p,
.closing p {
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.principles article {
  padding: 34px;
  background: var(--snow);
}

.principles span {
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.principles h2 {
  margin: 80px 0 20px;
  font-size: 2.8rem;
  line-height: 0.9;
}

.closing {
  max-width: 940px;
  text-align: center;
}

footer {
  padding: 38px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--charcoal);
  color: var(--snow);
}

@media (max-width: 850px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .premise,
  .camp-grid {
    grid-template-columns: 1fr;
  }

  .camp-grid .large-card {
    min-height: 520px;
    grid-row: auto;
  }

  .timeline,
  .principles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .timeline,
  .principles {
    grid-template-columns: 1fr;
  }
}
