/* =====================
   RESET & ROOT
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f5f0e8;
  --fg:       #1a1714;
  --muted:    #7a726a;
  --accent:   #c0522a;
  --accent-2: #3d6b4f;
  --line:     #d4cec5;
  --light:    #ede8e1;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   MANIFESTO
   ===================== */
.manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.manifesto__bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
}

.manifesto__bg-lines span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
  opacity: 0.4;
}

.manifesto__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.manifesto__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto__headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.manifesto__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.manifesto__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.5;
}

.manifesto__rule {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  height: 1px;
  background: var(--fg);
}

/* =====================
   ETHOS
   ===================== */
.ethos {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 2rem;
}

.ethos__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ethos__quote blockquote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.ethos__quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.ethos__descriptor p {
  font-size: 1rem;
  line-height: 1.75;
  color: #c8c4bb;
  margin-bottom: 1.25rem;
}

/* =====================
   PILLARS
   ===================== */
.pillars {
  padding: 7rem 2rem;
}

.pillars__header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.pillars__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillars__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.pillars__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid var(--line);
}

.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: none; }

.pillar__icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pillar__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pillar__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  background: var(--accent-2);
  color: var(--bg);
  padding: 7rem 2rem;
}

.closing__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 1.5rem;
}

.closing__headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing__body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 3rem;
}

.closing__rule {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.closing__rule span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.4);
}

.closing__rule span:nth-child(2) { background: rgba(245, 240, 232, 0.6); }
.closing__rule span:nth-child(3) { background: rgba(245, 240, 232, 0.8); }
.closing__rule span:nth-child(4) { background: rgba(245, 240, 232, 0.6); }

.closing__tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.9);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--fg);
  color: rgba(245, 240, 232, 0.5);
  padding: 2.5rem 2rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.85);
  letter-spacing: -0.01em;
}

.site-footer__copy {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .ethos__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
  }

  .pillar:last-child { border-bottom: none; }

  .manifesto { padding: 6rem 1.5rem 3rem; }
  .ethos { padding: 5rem 1.5rem; }
  .pillars { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }

  .site-footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .manifesto__headline { font-size: 3.5rem; }
  .closing__headline { font-size: 2.5rem; }
}