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

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

body {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  background-color: #f5f0e8;
  color: #2c2416;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Typography === */
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
}

/* === Hero === */
.hero {
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  border-bottom: 2px solid #c9b99a;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rule-line {
  display: block;
  width: 4rem;
  height: 1px;
  background: #8b7355;
}

.rule-text {
  font-family: "Lora", serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8b7355;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: #5a4a35;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-subtitle em {
  font-weight: 600;
  color: #2c2416;
  font-style: italic;
}

.flourish {
  font-size: 1.8rem;
  color: #c9b99a;
  margin-top: 2.5rem;
  user-select: none;
}

/* === Manifesto === */
.manifesto {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.manifesto h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.manifesto p {
  margin-bottom: 1.5rem;
  color: #3d3225;
  font-size: 1rem;
}

.manifesto blockquote {
  border-left: 4px solid #8b7355;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #5a4a35;
  font-size: 1.05rem;
}

/* === Principles === */
.principles {
  background: #2c2416;
  color: #f5f0e8;
  padding: 5rem 1.5rem;
}

.principles-inner {
  max-width: 720px;
  margin: 0 auto;
}

.principles h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.principle {
  display: flex;
  gap: 1rem;
}

.numeral {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #c9b99a;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.principle h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.principle p {
  color: #bfb49d;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Join === */
.join {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.join h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.join > p {
  font-size: 1.05rem;
  color: #5a4a35;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: 2px solid #2c2416;
  color: #2c2416;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color 0.3s, color 0.3s;
}

.cta:hover {
  background: #2c2416;
  color: #f5f0e8;
}

.join-hint {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #8b7355;
}

/* === Footer === */
footer {
  border-top: 2px solid #c9b99a;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-top: auto;
}

footer .flourish {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-name {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  color: #8b7355;
  letter-spacing: 0.05em;
}

.footer-url {
  font-size: 0.7rem;
  color: #b0a28a;
  margin-top: 0.25rem;
}

/* === Responsive === */
@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .manifesto,
  .join {
    padding: 3.5rem 1.25rem;
  }

  .principles {
    padding: 3.5rem 1.25rem;
  }
}
