/* ==========================================================================
   Broadwood/Charlo Residents Association — site styles
   (implements the Broadwood Community redesign handoff)
   ========================================================================== */

:root {
  /* Logo hues, sampled from the BCRA hands mark */
  --logo-red: #df5a54;
  --logo-orange: #dc8c51;
  --logo-yellow: #d9b95e;
  --logo-green: #51966a;
  --logo-blue: #5e7ab6;
  --logo-purple: #674580;
  --cream: #f7f3ea;
  --card: #fffdf8;
  --ink: #202b22;
  --body: #4c584c;
  --muted: #656f5a;       /* darkened from the handoff's #8a927f for WCAG AA contrast */
  --green: #274634;
  --green-dark: #1c3527;
  --tint: #e7ecdc;
  --tint-2: #eaeadb;
  --gold: #8a6220;        /* darkened from the handoff's #a3762a for WCAG AA contrast on cream */
  --gold-on-dark: #d4b26e; /* lightened from #c9a45c for contrast on the dark green */
  --gold-logo: #c9932f;
  --terracotta: #a4432f;
  --border: #e4dcc8;
  --border-soft: #ece5d2;
  --cream-text: #f2ead4;
  --sage: #c9cfb9;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Karla", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); }
a:hover { color: var(--gold); }

::selection { background: #d9d2b8; }

img, svg, iframe { max-width: 100%; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 32px);
  padding-right: clamp(20px, 4vw, 32px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 550;
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.18;
  text-wrap: pretty;
}

.section-head p {
  margin: 0;
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-nav .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand:hover { color: var(--ink); }

.brand-logo { display: block; flex: none; width: 40px; height: auto; }

.unity-strip {
  height: 3px;
  background: linear-gradient(90deg,
    var(--logo-red) 0 16.7%, var(--logo-orange) 16.7% 33.3%,
    var(--logo-yellow) 33.3% 50%, var(--logo-green) 50% 66.7%,
    var(--logo-blue) 66.7% 83.3%, var(--logo-purple) 83.3% 100%);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name .brand-top {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 19px; /* large-text size so the letterhead green passes WCAG at 3:1 */
  color: #3f9a46;  /* the letterhead green, minimally deepened */
}

.brand-name .brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2e7434; /* letterhead green, deepened for AA at small size */
}

#nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
}

#nav-links a { text-decoration: none; color: var(--ink); }
#nav-links a:hover { color: var(--gold); }

.nav-cta {
  text-decoration: none;
  background: var(--green);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--green-dark); color: #ffffff; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 32px) clamp(36px, 6vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: "Lora", serif;
  font-weight: 550;
  font-size: clamp(36px, 7.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.hero .lede {
  margin: 0 0 30px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 46ch;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  text-decoration: none;
  background: var(--green);
  color: var(--cream);
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}

.btn-primary:hover { background: var(--green-dark); color: #ffffff; }

.btn-outline {
  text-decoration: none;
  color: var(--green);
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid #c9c0a6;
}

.btn-outline:hover { border-color: var(--green); color: var(--green); }

.hero-progress {
  margin-top: 36px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-progress p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13.5px;
  color: #5f6b5f;
}

.hero-progress p strong { color: var(--ink); }

.hero-progress .gap-note { font-weight: 700; color: var(--gold); }

.hero-progress .mini-track {
  height: 8px;
  border-radius: 999px;
  background: #e6dfcb;
  overflow: hidden;
}

.hero-progress .mini-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
  width: 6%;
}

.hero figure { margin: 0; }

.map-card {
  border: 1px solid #ddd3ba;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 22px 44px -26px rgba(39, 70, 52, 0.45);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 55vw, 380px);
  border: 0;
}

.map-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-top: 1px solid var(--border-soft);
}

.map-card .map-note { font-size: 13px; color: #5f6b5f; }

.map-card .camera-chip {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--tint-2);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats-band {
  background: var(--green);
  color: var(--cream-text);
}

.stats-band .wrap {
  padding-top: clamp(32px, 6vw, 44px);
  padding-bottom: clamp(32px, 6vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

.stat {
  border-left: 1px solid rgba(242, 234, 212, 0.25);
  padding-left: 22px;
}

.stat .stat-value {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 40px;
  font-weight: 550;
}

.stat .stat-label {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--sage);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Where we stand
   -------------------------------------------------------------------------- */

.progress-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) clamp(20px, 4vw, 32px) 40px;
}

.progress-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: 34px;
}

.progress-head h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 550;
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.18;
  text-wrap: pretty;
}

.progress-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

.progress-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(20px, 4vw, 30px) clamp(18px, 4vw, 34px) 26px;
}

.progress-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.progress-card .card-head .count {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 22px;
}

.progress-card .card-head .count span { color: var(--muted); font-size: 16px; }

.progress-card .card-head .goal-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.progress-track {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: #eee8d6;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a5a1e, var(--gold));
  width: 6%;
  transition: width 0.6s ease;
}

.progress-track .tick {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(32, 43, 34, 0.18);
}

#milestones {
  position: relative;
  height: 34px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

#milestones > span {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
}

#milestones > span:last-child {
  right: 0;
  left: auto;
  transform: none;
  text-align: right;
}

#milestones > span > span { font-size: 11px; }

/* --------------------------------------------------------------------------
   What we do
   -------------------------------------------------------------------------- */

.whatwedo {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 64px) clamp(20px, 4vw, 32px) clamp(56px, 9vw, 80px);
}

.whatwedo .section-head h2 { font-size: clamp(30px, 6vw, 42px); line-height: 1.15; max-width: 20ch; }

#paysfor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pays-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.pays-card .icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pays-card:nth-child(1) .icon-chip { background: #e6ebf5; }
.pays-card:nth-child(1) .icon-chip svg { stroke: #46609c; }
.pays-card:nth-child(2) .icon-chip { background: #e4efe7; }
.pays-card:nth-child(2) .icon-chip svg { stroke: #2f6a47; }
.pays-card:nth-child(3) .icon-chip { background: #f9e6e4; }
.pays-card:nth-child(3) .icon-chip svg { stroke: #a4432f; }
.pays-card:nth-child(4) .icon-chip { background: #ece5f2; }
.pays-card:nth-child(4) .icon-chip svg { stroke: #5b3d72; }

.pays-card h3 {
  margin: 0 0 8px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 21px;
}

.pays-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   Quote band
   -------------------------------------------------------------------------- */

.quote-band {
  position: relative;
  background-color: #223c2c;
  background-image: linear-gradient(rgba(28, 53, 39, 0.74), rgba(28, 53, 39, 0.74)), url("photos/big-park-tree-band.jpg");
  background-size: cover;
  background-position: center;
}

.quote-band .wrap {
  max-width: 860px;
  padding-top: clamp(56px, 9vw, 88px);
  padding-bottom: clamp(56px, 9vw, 88px);
  text-align: center;
}

.quote-band blockquote { margin: 0; }

.quote-band blockquote p {
  margin: 0 0 22px;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: clamp(21px, 4.5vw, 27px);
  line-height: 1.5;
  color: var(--cream-text);
  text-wrap: pretty;
}

.quote-band cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

/* --------------------------------------------------------------------------
   Join / membership
   -------------------------------------------------------------------------- */

.join-section {
  background: var(--green);
  color: var(--cream-text);
  border-top: 1px solid rgba(242, 234, 212, 0.15);
}

.join-section .wrap {
  padding-top: clamp(56px, 9vw, 88px);
  padding-bottom: clamp(56px, 9vw, 88px);
}

.join-section .eyebrow { color: var(--gold-on-dark); }

.join-section h2 {
  margin: 0 0 10px;
  font-family: "Lora", serif;
  font-weight: 550;
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.18;
}

.price-line {
  margin: 0 0 44px;
  font-size: 16.5px;
  color: var(--sage);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.price-line .price {
  font-family: "Lora", serif;
  font-size: clamp(38px, 6vw, 54px);
  font-weight: 600;
  color: var(--gold-logo);
  line-height: 1;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.join-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.join-step .step-num {
  margin: 2px 0 0;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-logo);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 16px;
}

.join-step h3 {
  margin: 0 0 8px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 20px;
}

.join-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sage);
}

.join-step p a:not(.btn-cream) { color: var(--gold-on-dark); }

.join-step p.has-btn { margin-bottom: 16px; }

.btn-cream {
  display: inline-block;
  text-decoration: none;
  background: var(--cream-text);
  color: var(--green);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.btn-cream:hover { background: #ffffff; color: var(--green-dark); }

.join-section .signup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.donate-card {
  background: rgba(255, 253, 248, 0.07);
  border: 1px solid rgba(242, 234, 212, 0.22);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 34px);
}

.donate-card h3 {
  margin: 0 0 10px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 22px;
}

.donate-card .donate-copy {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sage);
}

.donate-card .ref-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #b6c1a6;
}

.donate-card dl {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 24px;
  font-size: 14.5px;
}

.donate-card dt { font-weight: 700; color: var(--cream-text); }
.donate-card dd { margin: 0; color: var(--sage); }
.donate-card dd.ref-value { color: #ffffff; font-weight: 700; }

/* --------------------------------------------------------------------------
   Community groups
   -------------------------------------------------------------------------- */

.groups-section {
  background: var(--card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.groups-section .wrap {
  padding-top: clamp(56px, 9vw, 88px);
  padding-bottom: clamp(56px, 9vw, 88px);
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.group-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  background: var(--cream);
}

.group-card.emergency { border-top: 3px solid var(--logo-red); }
.group-card.security { border-top: 3px solid var(--logo-blue); }
.group-card.social { border-top: 3px solid var(--logo-green); }
.group-card.facebook { border-top: 3px solid var(--logo-yellow); }

.group-tag {
  margin: 0 0 12px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.group-card.emergency .group-tag { color: var(--terracotta); background: #f3e2dc; }
.group-card.security .group-tag { color: #3d5488; background: #e6ebf5; }
.group-card.social .group-tag { color: var(--green); background: var(--tint-2); }
.group-card.facebook .group-tag { color: #7d5a1d; background: #f0e7d2; }

.group-card h3 {
  margin: 0 0 8px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 20px;
}

.group-card p.group-desc {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}

.group-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
}

.group-card.emergency .group-btn { background: var(--terracotta); color: #fdf6ee; }
.group-card.emergency .group-btn:hover { background: #8a3121; color: #ffffff; }
.group-card.security .group-btn { background: #46609c; color: #ffffff; }
.group-card.security .group-btn:hover { background: #384e80; color: #ffffff; }
.group-card.social .group-btn { background: var(--green); color: var(--cream); }
.group-card.social .group-btn:hover { background: var(--green-dark); color: #ffffff; }
.group-card.facebook .group-btn { background: var(--gold); color: #fdf6ee; }
.group-card.facebook .group-btn:hover { background: #6f4e19; color: #ffffff; }

.group-fallback {
  margin: 10px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
}

.nhw-banner {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-left: 3px solid var(--logo-green);
  border-radius: 14px;
  padding: 22px 26px;
  background: var(--cream);
}

.nhw-banner h3 {
  margin: 0 0 6px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 19px;
}

.nhw-banner > div { flex: 1 1 420px; }

.nhw-banner p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}

.nhw-btn { background: #2f6a47; color: #ffffff; flex: none; }
.nhw-btn:hover { background: #245237; color: #ffffff; }

/* --------------------------------------------------------------------------
   Important numbers
   -------------------------------------------------------------------------- */

.numbers-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) clamp(20px, 4vw, 32px);
}

.num-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.num-card {
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  display: block;
}

a.num-card:hover { border-color: var(--gold); }

.num-card .num-label {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.num-card .num-value {
  margin: 0 0 6px;
  font-family: "Lora", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}

.num-card .num-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.num-card.num-pending {
  border-style: dashed;
  border-color: #d5cbb0;
}

.num-card.num-pending .num-label { color: var(--green); }

.num-card.num-pending .num-value {
  font-size: 24px;
  color: var(--muted);
}

.partner-note {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 32px) clamp(64px, 10vw, 96px);
}

.faq-section h2 {
  margin: 0 0 8px;
  font-family: "Lora", serif;
  font-weight: 550;
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.18;
}

.faq-section .faq-intro {
  margin: 0 0 34px;
  font-size: 15.5px;
  color: var(--body);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 17.5px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}

.faq-list details p.pending-note {
  margin: -8px 0 20px;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--green);
  color: var(--cream-text);
}

.footer-grid {
  padding-top: clamp(40px, 7vw, 64px);
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(242, 234, 212, 0.15);
}

.footer-logo-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-text);
  margin-bottom: 12px;
}

.footer-logo-disc img { width: 34px; height: auto; }

.site-footer .footer-name {
  margin: 0 0 8px;
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 600;
}

.site-footer .footer-slogan {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sage);
}

.site-footer .footer-heading {
  margin: 0 0 12px;
  font-family: "Karla", "Helvetica Neue", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: #e8e2cd;
}

.footer-links a { color: #e8e2cd; text-decoration: none; }
.footer-links a:hover { color: #ffffff; }

.footer-line {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 32px) 28px;
  font-size: 12.5px;
  color: #aab59a;
}

/* --------------------------------------------------------------------------
   Mobile sticky join bar
   -------------------------------------------------------------------------- */

#mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--green-dark);
  color: var(--cream-text);
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(28, 53, 39, 0.35);
}

#mobile-cta .bar-note { font-size: 13px; line-height: 1.3; }

#mobile-cta .bar-btn {
  text-decoration: none;
  background: var(--cream-text);
  color: var(--green);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

#mobile-cta .bar-btn:hover { background: #ffffff; color: var(--green-dark); }

/* --------------------------------------------------------------------------
   Breakpoints (per handoff helmet)
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  #paysfor { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  #nav-links { display: none; }
  #mobile-cta { display: flex; }
  body { padding-bottom: 64px; }
  #milestones { font-size: 11px; }
  #milestones > span > span { display: none; }
}

@media (max-width: 560px) {
  #paysfor { grid-template-columns: 1fr; }
}
