/* Stout for Rhea County — Shared Stylesheet */
:root {
  --navy: #17263F;
  --navy-deep: #0F1B2E;
  --red: #B0232A;
  --cream: #FAF6EF;
  --cream-warm: #F3EADB;
  --gold: #C9A76B;
  --ink: #2B2A28;
  --muted: #6B6558;
  --line: #E4DAC6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar .tagline { text-transform: uppercase; font-weight: 600; color: var(--gold); }
.topbar a { color: var(--cream); }

/* ---------- Nav ---------- */
nav.primary {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav.primary .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
}
.brand a {
  color: var(--navy);
  text-decoration: none;
}
.brand .mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: 4px;
  font-weight: 900;
}
nav.primary ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.primary li a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
nav.primary li a:hover { color: var(--red); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201,167,107,0.12), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}
.hero .slogan {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 0 var(--navy-deep);
}
.btn-primary:hover {
  background: #93181F;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
}

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(15, 27, 46, 0.35);
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  bottom: -18px; right: -18px;
  width: 60%; height: 60%;
  background: var(--red);
  z-index: -1;
  border-radius: 6px;
  opacity: 0.9;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
}
.logo-strip img { max-width: 340px; width: 80%; height: auto; }

/* ---------- Section defaults ---------- */
section.block { padding: 96px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title h2 { font-size: clamp(32px, 4vw, 48px); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px -20px rgba(15, 27, 46, 0.3);
}
.about-copy p {
  font-size: 18px;
  margin: 0 0 20px;
  color: #3A3832;
}
.about-copy p.lead {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Values ---------- */
.values {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 0;
}
.values .section-title h2 { color: var(--cream); }
.values .section-title .kicker { color: var(--gold); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.value { text-align: center; padding: 0 10px; }
.value .icon {
  width: 56px; height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.value h3 { color: var(--cream); font-size: 22px; margin-bottom: 10px; }
.value p { color: #C9C4B8; font-size: 16px; margin: 0; }

/* ---------- Community ---------- */
.community { padding: 96px 0; background: var(--cream-warm); }
.community-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.community-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px -20px rgba(15, 27, 46, 0.3);
}
.community-copy h2 { font-size: clamp(30px, 3.5vw, 42px); margin-bottom: 18px; }
.community-copy p { font-size: 17px; margin-bottom: 16px; }
.pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin: 24px 0 0;
}

/* ---------- SMS Signup ---------- */
.sms-signup {
  padding: 96px 0;
  background: var(--cream);
  text-align: center;
}
.sms-signup h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 12px; }
.sms-signup .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.sms-form {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: left;
  box-shadow: 0 20px 50px -30px rgba(15, 27, 46, 0.2);
}
.sms-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sms-form .field { margin-bottom: 14px; }
.sms-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sms-form input[type="text"],
.sms-form input[type="tel"],
.sms-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
}
.sms-form input:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 22px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--navy);
}
.consent label { text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 400; color: var(--muted); margin-bottom: 0; }
.sms-form button { width: 100%; }
.sms-fineprint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 18px auto 0;
  max-width: 620px;
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact { padding: 96px 0; text-align: center; background: var(--cream-warm); }
.contact h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 16px; }
.contact .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(15, 27, 46, 0.25);
}
.contact-card .label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card a, .contact-card .value-text {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover { color: var(--red); }

/* ---------- Legal / long-form pages ---------- */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 72px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--cream); font-size: clamp(34px, 4vw, 52px); margin-bottom: 8px; }
.page-header .kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-header .meta { color: #A9B1C0; font-size: 14px; }

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 19px; margin-top: 24px; margin-bottom: 10px; }
.legal p, .legal li {
  font-size: 16px;
  color: #3A3832;
  line-height: 1.7;
}
.legal ul { padding-left: 22px; margin: 12px 0 18px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--navy); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #A9B1C0;
  padding: 48px 0 32px;
  text-align: center;
  font-size: 14px;
}
footer .brand-foot {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
footer a { color: #E4DAC6; text-decoration: underline; }
footer a:hover { color: #fff; }
footer .foot-links {
  margin: 14px 0 18px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
footer .disclaimer {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 12px;
  color: #7B8296;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 56px 0 72px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .community-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  nav.primary ul { display: none; }
  section.block, .values, .community, .contact, .sms-signup { padding: 64px 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .sms-form { padding: 28px 20px; }
  .sms-form .row { grid-template-columns: 1fr; gap: 0; }
}
