/* ============================================================
   Flying Scarecrows — shared site stylesheet
   Single source of truth for the unified house style.
   Understated, credible small-business look.
   Anchor: charcoal header/footer, cream body, Arial.
   Quiet accent: restrained ochre hairline (#b08d57).
   ============================================================ */

:root {
  --fs-charcoal: #2b2b2b;
  --fs-cream:    #fff8f0;
  --fs-ink:      #222222;
  --fs-muted:    #666666;
  --fs-line:     #e6e0d8;
  --fs-accent:   #b08d57;   /* muted ochre — the only shared accent */
  --fs-maxwidth: 980px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--fs-cream);
  color: var(--fs-ink);
  margin: 0;
  padding: 0;
  line-height: 1.65;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--fs-charcoal);
  color: #ffffff;
  text-align: center;
  padding: 26px 20px 0;
  border-top: 3px solid var(--fs-accent);
}

.site-header .brand {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.site-header .tagline {
  margin: 4px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9c4bd;
}

/* ---------- Navigation ---------- */
.site-nav {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 26px;
  padding-bottom: 14px;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus { border-bottom-color: var(--fs-accent); }

.site-nav a[aria-current="page"] {
  color: var(--fs-accent);
  border-bottom-color: var(--fs-accent);
}

/* ---------- Main ---------- */
main {
  max-width: var(--fs-maxwidth);
  margin: 0 auto;
  padding: 40px 24px 8px;
}

main h1,
main h2,
main h3 {
  color: var(--fs-charcoal);
  line-height: 1.25;
}

main h1 { font-size: 1.7rem; margin: 0 0 6px; }
main h2 { font-size: 1.35rem; margin: 34px 0 10px; }
main h3 { font-size: 1.1rem;  margin: 28px 0 8px; }

main p  { margin: 0 0 14px; }
main ul { margin: 0 0 16px; padding-left: 22px; }
main li { margin-bottom: 6px; }

main img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* eyebrow / section intro label */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fs-accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.lead { font-size: 1.05rem; color: #333; }

.byline { color: var(--fs-muted); font-size: 0.92rem; margin: 0 0 10px; }

.testimonial {
  font-style: italic;
  color: #444;
  border-left: 3px solid var(--fs-accent);
  padding-left: 16px;
  margin: 26px 0;
}

hr.section-rule {
  border: 0;
  border-top: 1px solid var(--fs-line);
  margin: 34px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--fs-charcoal);
  color: #c9c4bd;
  text-align: center;
  padding: 16px 20px;
  margin-top: 44px;
  font-size: 0.85rem;
  border-bottom: 3px solid var(--fs-accent);
}

.site-footer p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .site-header .brand { font-size: 1.6rem; }
  .site-nav { gap: 2px 16px; }
  .site-nav a { font-size: 0.9rem; }
  main { padding: 28px 18px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
