:root {
  --color-bg: #ffffff;
  --color-text: #1c1c1c;
  --color-muted: #6b6b6b;
  --color-rufous: #A4220E;
  --color-gamboge: #E89415;
  --color-night: #141414;
  --color-offwhite: #EBEBEB;
  --color-accent: var(--color-rufous);
  --color-line: #e5e5e5;
  --max-width: 780px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'EB Garamond', 'Georgia', 'Times New Roman', serif;
  color: var(--color-text);
  background: var(--color-offwhite);
  line-height: 1.6;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-line);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
}

nav .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.05rem;
}

nav .brand img {
  height: 32px;
  width: 32px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.95rem;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--color-rufous);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.container.narrow {
  max-width: 620px;
  text-align: center;
}

h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-night);
}

h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--color-night);
}

p {
  margin: 1rem 0;
}

.intro {
  font-size: 1.2rem;
  margin: 0 0 1.75rem;
}

/* Hero */
.hero {
  background: var(--color-offwhite);
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}

.hero .container {
  max-width: 640px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero .intro {
  color: var(--color-muted);
}

/* Bands */
.band-white { background: #ffffff; }
.band-offwhite { background: var(--color-offwhite); }

.band-rufous {
  background: var(--color-rufous);
}
.band-rufous h2,
.band-rufous p { color: #ffffff; }

.band-night {
  background: var(--color-night);
}
.band-night h2,
.band-night p { color: #ffffff; }

.band-gamboge {
  background: var(--color-gamboge);
  text-align: center;
}
.band-gamboge h2,
.band-gamboge p { color: #ffffff; }

.quote-intro {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}

.quote {
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
}

.recognize {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.recognize li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
}

.recognize li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
  border-radius: 50%;
  background: var(--color-rufous);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.recognize li strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.recognize li span {
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* CTA button */
.cta {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: var(--color-rufous);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.cta:hover { opacity: 0.9; }

.cta-dark {
  background: var(--color-night);
}

footer {
  border-top: 1px solid var(--color-line);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--color-muted);
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer a {
  color: var(--color-muted);
}

.blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.block {
  background: var(--color-gamboge);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.block h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: #ffffff;
}

.block p {
  font-size: 0.92rem;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 680px) {
  .blocks {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 0.6rem 1rem;
  }

  .container {
    padding: 2.25rem 1.25rem;
  }

  .hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .intro {
    font-size: 1.05rem;
  }

  .recognize li {
    font-size: 1rem;
  }
}

.placeholder-notice {
  background: #fdf6e3;
  border: 1px solid #f0e0a0;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: #6b5a1e;
  margin-bottom: 2rem;
}
