@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #1c1e22;
  --paper: #f3f1eb;
  --paper-2: #ece8df;
  --gold: #b08d3f;
  --teal: #1f4b4c;
  --muted: #6b6a63;
  --rule: #d8d4c8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.2em; }

a { color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--rule); }
a:hover { border-bottom-color: var(--teal); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.prose {
  max-width: 700px;
}

/* Header */
header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  border: none;
}
.logo:hover { border: none; }
nav.main a {
  color: var(--ink);
  border: none;
  margin-left: 26px;
  font-size: 0.96rem;
  padding-bottom: 2px;
}
nav.main a:hover { border-bottom: 1px solid var(--gold); }
nav.main { display: flex; flex-wrap: wrap; }
@media (max-width: 640px) {
  nav.main a { margin-left: 0; margin-right: 18px; }
}

/* Hero */
.hero {
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--rule);
}
.hero .tagline {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.hero h1 {
  opacity: 0;
  animation: reveal 1.1s ease-out forwards;
}
.hero .lede {
  max-width: 620px;
  font-size: 1.15rem;
  color: #3a3c40;
  margin-top: 24px;
  opacity: 0;
  animation: reveal 1.1s ease-out 0.25s forwards;
}
.hero .cta-row {
  margin-top: 34px;
  opacity: 0;
  animation: reveal 1.1s ease-out 0.45s forwards;
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .lede, .hero .cta-row { animation: none; opacity: 1; }
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 26px;
  border-radius: 2px;
  border: none;
  font-size: 0.98rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
}
.btn:hover { background: var(--teal); border: none; }
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  margin-left: 14px;
}
.btn.secondary:hover { border-color: var(--gold); background: transparent; color: var(--ink); }

/* Sections */
section {
  padding: 70px 0;
  border-bottom: 1px solid var(--rule);
}
section:last-of-type { border-bottom: none; }

.section-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; gap: 30px; }
}

blockquote {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
}

/* Manifesto / tenet list */
.tenets {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.tenets li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.tenets .num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
.tenets h3 { margin-bottom: 6px; }
.tenets p { margin: 0; color: var(--muted); }
@media (max-width: 560px) {
  .tenets li { grid-template-columns: 36px 1fr; }
}

/* Explore / link list */
.explore-list {
  border-top: 1px solid var(--rule);
}
.explore-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.explore-item a.title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--ink);
  border: none;
}
.explore-item a.title:hover { color: var(--teal); }
.explore-item .desc { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }
.explore-item .arrow { color: var(--gold); font-size: 1.3rem; }

/* FAQ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--muted); margin: 0; }

/* Form */
form.stack { max-width: 520px; }
form.stack label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 18px 0 6px;
}
form.stack input, form.stack select, form.stack textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--rule);
  background: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  border-radius: 2px;
}
form.stack button { margin-top: 26px; }

/* Footer */
footer.site {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.92rem;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
footer.site a { color: var(--muted); }

.small-note { color: var(--muted); font-size: 0.92rem; }
