@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

:root {
  --bg: #F7F4EF;
  --ink: #1C1C1C;
  --slate: #2C3E5D;
  --stone: #8C7B6B;
  --ochre: #C4922A;
}

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

html {
  font-size: 18px;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--ochre);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */

.site-header {
  padding: 2rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.15em;
}

.wordmark span {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.wordmark em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--stone);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

nav a:hover {
  color: var(--ochre);
  text-decoration: none;
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--slate);
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero .subtitle {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero p {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* Buttons */

.btn {
  display: inline-block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.88;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--slate);
  color: var(--bg);
}

.btn-secondary {
  background-color: var(--bg);
  color: var(--slate);
  border: 1px solid var(--slate);
}

/* Sections */

section {
  padding: 4.5rem 0;
}

.band-alt {
  background-color: #EDE8E0;
}

section h2 {
  font-size: 1.4rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--stone);
  margin: 0;
  opacity: 0.4;
}

/* Audience list */

.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--stone);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Pull quote */

.pull-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--slate);
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--stone);
  margin: 2rem 0;
  max-width: 600px;
}

/* CTA section */

.cta-section {
  text-align: center;
  padding: 3.5rem 0;
}

.cta-section p {
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* About page */

.about-content p {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.resources-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.resources-list li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
}

.resources-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--stone);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Contact page */

.contact-content p {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.contact-form {
  max-width: 520px;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--stone);
  border-radius: 2px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate);
}

/* Footer */

.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
}

.site-footer p {
  margin-bottom: 0;
}

/* Hero lede */

.hero-lede {
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Offering items */

.offering-item {
  margin-bottom: 1.8rem;
}

.offering-label {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
}

.offering-desc {
  max-width: 640px;
}

/* Audience statements */

.audience-statement {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 1rem;
}

/* CTA enhancements */

.cta-section .btn-primary {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.cta-subtext {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--stone);
}

/* Responsive */

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

  .site-header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .pull-quote {
    padding-left: 1.2rem;
    font-size: 1rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .audience-statement {
    font-size: 1rem;
  }
}
