/* Fall Creek Village I — public site
   Design goals: large type, high contrast, mobile-first, accessible for
   older visitors. System fonts only (fast, no external requests). */

:root {
  --green:      #2f6b4f;
  --green-dark: #234f3b;
  --green-tint: #eef4f0;
  --ink:        #1f2a26;
  --muted:      #55625c;
  --line:       #d9e2dc;
  --bg:         #ffffff;
  --bg-alt:     #f5f8f6;
  --focus:      #b8862b;
  --maxw:       1040px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;              /* large base for readability */
  line-height: 1.6;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

a { color: var(--green-dark); }

/* Visible keyboard focus everywhere */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap;
}
.header-pay { min-height: 44px; padding: 8px 20px; font-size: 17px; }
@media (max-width: 640px) { .header-pay { order: 3; width: 100%; } }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--green); color: #fff;
  font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 700;
}
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.brand-numeral { color: var(--green); }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; }
.phone {
  font-weight: 700; font-size: 21px; color: var(--green-dark);
  text-decoration: none; white-space: nowrap;
}
.phone:hover { text-decoration: underline; }
.tty { color: var(--muted); font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--green-tint), var(--bg));
  padding: 64px 0 52px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .08em; font-size: 15px; font-weight: 700;
  color: var(--green-dark); margin: 0 0 12px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 6vw, 52px); line-height: 1.12; margin: 0 0 18px; color: var(--ink);
  max-width: 16ch;
}
.hero-sub { font-size: clamp(19px, 2.4vw, 23px); color: var(--muted); margin: 0 0 28px; max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero-note { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 12px 26px;
  font-size: 20px; font-weight: 700; text-decoration: none;
  border-radius: 10px; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-ghost { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-tint); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(26px, 3.6vw, 34px); margin: 0 0 18px; color: var(--ink); }
h3 { font-size: 22px; margin: 28px 0 12px; color: var(--green-dark); }
.lead { font-size: 21px; color: var(--muted); max-width: 66ch; margin: 0 0 8px; }

/* Checklist */
.checks { list-style: none; padding: 0; margin: 14px 0 0; max-width: 60ch; }
.checks li {
  position: relative; padding: 10px 0 10px 40px; font-size: 20px; border-bottom: 1px solid var(--line);
}
.checks li:last-child { border-bottom: 0; }
.checks li::before {
  content: ""; position: absolute; left: 6px; top: 16px;
  width: 12px; height: 20px; border: solid var(--green); border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

/* Building cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 26px 28px; box-shadow: 0 1px 2px rgba(31,42,38,.04);
}
.card h3 { margin: 0 0 10px; font-size: 24px; color: var(--ink); }
.card address { font-style: normal; font-size: 20px; line-height: 1.5; color: var(--ink); }
.card .landmark { color: var(--muted); font-size: 18px; margin: 14px 0 0; }

/* Contact */
.contact-inner { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.contact-inner > div { flex: 1 1 320px; }
.contact-card {
  background: var(--green); color: #fff; border-radius: 16px;
  padding: 28px 32px; text-align: center; flex: 0 1 340px;
}
.contact-label { text-transform: uppercase; letter-spacing: .08em; font-size: 14px; font-weight: 700; margin: 0 0 6px; color: #cfe6d9; }
.phone-lg { font-size: 34px; color: #fff; display: block; }
.contact-card .tty { color: #cfe6d9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d7ded9; padding: 34px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.site-footer .brand-name { color: #fff; font-size: 21px; }
.footer-addr { color: #9fb0a8; font-size: 15px; margin: 8px 0 0; max-width: 52ch; }
.footer-meta { text-align: right; }
.footer-meta .phone { color: #fff; display: block; }
.footer-meta .tty { display: block; margin-top: 2px; }
.eho { display: flex; align-items: center; gap: 8px; justify-content: flex-end; color: #9fb0a8; font-size: 14px; margin: 12px 0 0; }
.eho-mark { font-size: 18px; }

@media (max-width: 640px) {
  body { font-size: 19px; }
  .header-contact { align-items: flex-start; }
  .header-inner { gap: 10px; }
  .footer-inner, .footer-meta { text-align: left; }
  .eho { justify-content: flex-start; }
  .contact-card { flex-basis: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
