:root {
  --spotify: #316D43;
  --forest: #2B5839;
  --black: #1A1C1A;
  --espresso: #4D342B;
  --bronze: #5C4E37;
  --sage: #6E8C61;
  --olive: #8FA66C;
  --silver: #D3D7D4;
  --white: #FFFFFF;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html, body {
  background: var(--black);
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(26,28,26,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(211,215,212,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.mark {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--serif); font-weight: 500; font-size: 20px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.mark-leaf { color: var(--olive); font-size: 22px; transform: translateY(2px); }
.nav nav { display: flex; gap: 28px; }
.nav nav a {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s ease;
}
.nav nav a:hover { color: var(--olive); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(43,88,57,0.55), transparent 60%),
    linear-gradient(180deg, rgba(26,28,26,0.55) 0%, rgba(26,28,26,0.82) 60%, rgba(26,28,26,0.98) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 22px;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px; background: var(--olive);
}
.eyebrow.gold { color: var(--olive); }

h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 12ch;
}
h1 .accent {
  color: var(--olive);
  font-weight: 400;
}
h1 .accent em {
  font-style: italic;
  font-family: var(--serif);
}

.lede {
  margin-top: 32px;
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 52ch;
  color: var(--silver);
  line-height: 1.6;
}
.lede.light { color: rgba(255,255,255,0.85); }

.cta-row {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.04em;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--spotify); color: var(--white);
}
.btn-primary:hover { background: var(--olive); color: var(--black); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--silver);
  border-color: rgba(211,215,212,0.35);
}
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); }
.btn-ghost.light { color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost.light:hover { border-color: var(--olive); color: var(--olive); }

/* ---------- Vision grid ---------- */
.vision {
  background: var(--black);
  padding: 90px 24px;
}
.vision-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.v-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--forest);
}
.v-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s ease;
}
.v-card:hover img { transform: scale(1.04); }
.v-card figcaption {
  position: absolute; left: 20px; bottom: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 2;
}
.v-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,28,26,0.6) 100%);
  z-index: 1;
}
.v-tall { grid-row: span 2; }
.v-wide { grid-column: span 2; }

/* ---------- Section head ---------- */
.section-head {
  max-width: 1200px; margin: 0 auto 60px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 16ch;
}
.section-head h2 .soft { color: var(--olive); font-style: italic; font-weight: 400; }

/* ---------- Principles ---------- */
.principles {
  background: var(--forest);
  padding: 120px 24px;
  border-top: 1px solid rgba(143,166,108,0.15);
  border-bottom: 1px solid rgba(143,166,108,0.15);
}
.prin-list {
  list-style: none;
  max-width: 1000px; margin: 0 auto;
}
.prin-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px dashed rgba(211,215,212,0.22);
}
.prin-list li:last-child { border-bottom: 1px dashed rgba(211,215,212,0.22); }
.num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--olive);
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.prin-list h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.prin-list p {
  color: var(--silver);
  font-size: 16px;
  max-width: 60ch;
}

/* ---------- How ---------- */
.how {
  background: var(--black);
  padding: 120px 24px;
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how-card {
  background: linear-gradient(180deg, rgba(49,109,67,0.18), rgba(49,109,67,0.04));
  border: 1px solid rgba(143,166,108,0.18);
  padding: 32px 26px;
  border-radius: 6px;
  min-height: 220px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.how-card:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
}
.how-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}
.how-card p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Reach ---------- */
.reach {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
  border-top: 1px solid rgba(143,166,108,0.15);
}
.reach-bg { position: absolute; inset: 0; z-index: 0; }
.reach-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7);
}
.reach-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(43,88,57,0.75), rgba(26,28,26,0.85));
}
.reach-inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  text-align: left;
}
.reach h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.reach h2 .soft { color: var(--olive); font-style: italic; font-weight: 400; }
.reach .lede { margin-top: 26px; max-width: 50ch; }
.reach-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  padding: 56px 24px 72px;
  border-top: 1px solid rgba(211,215,212,0.08);
}
.foot-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.foot-inner .mark-leaf { font-size: 22px; margin-bottom: 8px; }
.foot-inner p { color: var(--silver); font-size: 14px; }
.foot-inner .muted { color: rgba(211,215,212,0.5); font-style: italic; font-family: var(--serif); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .v-tall { grid-row: span 1; }
  .v-wide { grid-column: span 2; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .nav nav { gap: 16px; }
  .nav nav a { font-size: 11px; }
  .hero { min-height: 88vh; padding: 90px 20px 70px; }
  .lede { margin-top: 22px; }
  .cta-row { margin-top: 30px; }
  .btn { padding: 14px 22px; }
  .vision { padding: 60px 16px; }
  .vision-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 12px; }
  .v-wide { grid-column: span 1; }
  .principles, .how, .reach { padding: 80px 20px; }
  .prin-list li { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .num { font-size: 18px; }
  .how-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .reach-cta { flex-direction: column; align-items: stretch; }
  .reach-cta .btn { width: 100%; }
}
