/* ───────────────────────────────────────────────────────────
   About page — layout overrides and specific styles
   Inherits base variables and fonts from style.css
─────────────────────────────────────────────────────────── */

/* The about page scrolls; the map page does not */
body.about-page {
  overflow: auto;
  height: auto;
  min-height: 100%;
}

body.about-page #site-header {
  position: sticky;
  top: 0;
}

/* ── Main content area ──────────────────────────────────── */

#about-main {
  background: #f4e8c1;
  min-height: calc(100vh - 68px);
  padding: 3rem 1.5rem 5rem;
}

.about-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Article ────────────────────────────────────────────── */

.about-article {
  background: #faf3e0;
  border: 1px solid #d4bc7a;
  border-radius: 4px;
  padding: 2.5rem 3rem;
  box-shadow: 0 2px 16px rgba(42, 8, 8, 0.08);
}

/* ── Hero ───────────────────────────────────────────────── */

.about-hero { margin-bottom: 2rem; }

.about-overline {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8b6914;
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: 'IM Fell English', Georgia, serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2a0808;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-lead {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.7;
  color: #3a1a08;
  font-style: italic;
}

/* ── Rule ───────────────────────────────────────────────── */

.about-rule {
  border: none;
  border-top: 1px solid #d4bc7a;
  margin: 2rem 0;
}

/* ── Sections ───────────────────────────────────────────── */

.about-section {
  margin-bottom: 2rem;
}

.about-section h3 {
  font-family: 'IM Fell English', Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #2a0808;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #d4bc7a;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a1a08;
  margin-bottom: 0.9rem;
}
.about-section p:last-child { margin-bottom: 0; }

/* ── Pull quote ─────────────────────────────────────────── */

.about-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #8b6914;
  background: rgba(139, 105, 20, 0.06);
  border-radius: 0 4px 4px 0;
}

.about-quote p {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #2a0808;
  margin-bottom: 0.5rem;
}

.about-quote cite {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.85rem;
  color: #8a6030;
  font-style: normal;
}

/* ── Contact block ──────────────────────────────────────── */

.about-contact {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #2a0808;
  border: 1px solid #8b6914;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-label {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a7a4a;
}

.contact-email {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 1.1rem;
  color: #f0dfa0;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 223, 160, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.contact-email:hover {
  color: #fff;
  border-bottom-color: rgba(240, 223, 160, 0.8);
}

/* ── Footer ─────────────────────────────────────────────── */

.about-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.about-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: #2a0808;
  border: 1px solid #8b6914;
  border-radius: 3px;
  color: #f0dfa0;
  text-decoration: none;
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.about-map-link:hover { background: #3d0f0f; }

.about-credit {
  font-size: 0.8rem;
  color: #8a6030;
  line-height: 1.6;
}
.about-credit a {
  color: #7a5010;
  text-decoration: underline;
  text-decoration-color: rgba(122, 80, 16, 0.4);
}
.about-credit a:hover { color: #2a0808; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 700px) {
  #about-main { padding: 1.5rem 1rem 4rem; }

  .about-article {
    padding: 1.5rem 1.25rem;
  }

  .about-title { font-size: 1.7rem; }
  .about-lead { font-size: 1.1rem; }
  .about-section p { font-size: 1rem; }
  .about-quote p { font-size: 1.1rem; }

  .about-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link { font-size: 0.75rem; padding: 0.25rem 0.5rem; }
}
