/* ─── Variables ─────────────────────────────────── */
:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DE;
  --fg: #1A1814;
  --fg-muted: #6B6560;
  --accent: #2A3D2B;
  --accent-light: #3D5C40;
  --warm: #C9B99A;
  --warm-dark: #9A8668;
  --border: #D8D0C4;
  --white: #FDFCF9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  --max-w: 1200px;
  --prose-w: 680px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ─── Manifesto ─────────────────────────────────── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.manifesto__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: var(--space-md);
}

.manifesto__label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.manifesto__sep { color: var(--warm-dark); }

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 14ch;
}

.manifesto__sub {
  max-width: 46ch;
  margin-top: var(--space-sm);
}

.manifesto__sub p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.manifesto__sub p + p { margin-top: 0.8em; }

.manifesto__divider {
  width: 60px;
  height: 1px;
  background: var(--warm-dark);
  margin: var(--space-md) 0;
}

.manifesto__statement {
  max-width: 40ch;
}

.manifesto__belief {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.4;
}

/* ─── Materials ──────────────────────────────────── */
.materials {
  padding: var(--space-xl) var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.materials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.materials__header {
  margin-bottom: var(--space-lg);
}

.materials__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.materials__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  max-width: 52ch;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.materials__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.materials__icon {
  color: var(--accent);
  width: 40px;
  height: 40px;
}

.materials__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
}

.materials__item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── The Moment ────────────────────────────────── */
.moment {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.moment__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.moment__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.moment__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 2px solid var(--warm-dark);
}

.moment__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.moment__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.moment__block {
  position: relative;
  width: 260px;
  height: 320px;
}

.moment__layer {
  position: absolute;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
}

.moment__layer--1 {
  width: 220px;
  height: 280px;
  top: 0; left: 0;
  background: var(--accent);
  opacity: 0.12;
}

.moment__layer--2 {
  width: 180px;
  height: 230px;
  top: 30px; left: 40px;
  background: var(--warm);
  opacity: 0.4;
}

.moment__layer--3 {
  width: 140px;
  height: 180px;
  top: 70px; left: 60px;
  background: var(--accent);
  opacity: 0.85;
  border-radius: 42% 58% 55% 45% / 48% 52% 45% 55%;
}

/* ─── Belgian ───────────────────────────────────── */
.belgian {
  padding: var(--space-xl) var(--space-md);
  background: var(--accent);
  color: var(--white);
}

.belgian__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.belgian__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: var(--space-md);
}

.belgian__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 22ch;
}

.belgian__body {
  font-size: 1rem;
  color: rgba(253,252,249,0.7);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: var(--space-lg);
}

.belgian__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  border-top: 1px solid rgba(253,252,249,0.15);
  padding-top: var(--space-md);
}

.belgian__value-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.5em;
}

.belgian__value p {
  font-size: 0.9rem;
  color: rgba(253,252,249,0.65);
  line-height: 1.65;
}

/* ─── Closing ────────────────────────────────────── */
.closing {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-alt);
  text-align: center;
}

.closing__inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing__line {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.2;
}

.closing__line--accent {
  color: var(--fg);
  margin-top: 0.2em;
}

.closing__divider {
  width: 40px;
  height: 1px;
  background: var(--warm-dark);
  margin: var(--space-lg) auto;
}

.closing__vision {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

.footer__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer__sep { color: var(--warm-dark); }

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
  .materials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .moment__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .moment__visual { display: none; }

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

@media (max-width: 600px) {
  .manifesto {
    padding: var(--space-lg) var(--space-sm);
    min-height: auto;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .manifesto__headline {
    font-size: 2.8rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }
}
