:root {
  --bg: #F5F0EA;
  --bg-alt: #EDE8E0;
  --fg: #2C4A3A;
  --fg-muted: #5A7A60;
  --accent: #B8835A;
  --accent-light: #D4A87A;
  --white: #FFFFFF;
  --border: rgba(44, 74, 58, 0.15);
  --radius: 4px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.nav-actions {
  margin-left: auto;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white) !important;
  text-decoration: none;
  padding: 0.45rem 1.25rem;
  background: var(--accent);
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--fg);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 70px;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

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

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem 5rem 5rem;
  background: var(--bg);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 42ch;
}

/* ── Commitment / Gallery ────────────────────── */
.commitment {
  background: var(--white);
  padding: 7rem 0 6rem;
}

.commitment-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.gallery-item-wide .gallery-img {
  aspect-ratio: 16 / 9;
}

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 0.85rem;
  margin-bottom: 0.2rem;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Manifesto ───────────────────────────────── */
.manifesto {
  background: var(--fg);
  padding: 7rem 2.5rem;
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin: 0 auto;
}

/* ── Principles ──────────────────────────────── */
.principles {
  background: var(--bg);
  padding: 7rem 2.5rem;
}

.principles-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.principles-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.principles-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.principle-item:first-child { border-top: 1px solid var(--border); }

.principle-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.2rem;
}

.principle-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.principle-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Outcomes ────────────────────────────────── */
.outcomes {
  background: var(--bg-alt);
  padding: 7rem 2.5rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.outcome-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.outcome-stat {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.outcome-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Closing ─────────────────────────────────── */
.closing {
  background: var(--accent);
  padding: 7rem 2.5rem;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.closing-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--fg);
  padding: 3.5rem 2.5rem;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-img {
    min-height: 320px;
  }

  .hero-text-col {
    padding: 3rem 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-wide .gallery-img {
    aspect-ratio: 4 / 3;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .principle-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
}