/* Bellingham Commons — site styles */

:root {
  --ink: #1c2019;
  --ink-soft: #4a4f45;
  --paper: #faf8f3;
  --paper-dim: #f1ede2;
  --forest: #2e3a2b;
  --forest-deep: #1f2a1d;
  --amber: #c17f2a;
  --amber-deep: #9c651c;
  --line: #ddd6c4;
  --max: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 16px;
  text-decoration: none;
  color: var(--forest-deep);
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--forest-deep); }
.nav-cta {
  background: var(--amber);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-deep); }
.nav-toggle { display: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 700;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,18,.35) 0%, rgba(20,24,18,.55) 55%, rgba(20,24,18,.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 130px 24px 90px;
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: #e8dcc0;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 800;
  max-width: 15ch;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 56ch;
  color: #efece2;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: var(--amber-deep); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 68ch; margin-bottom: 44px; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--amber-deep);
  margin: 0 0 12px;
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin: 0 0 14px;
  color: var(--forest-deep);
  line-height: 1.15;
}
.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0;
}

.alt { background: var(--paper-dim); }
.dark {
  background: var(--forest-deep);
  color: #efece2;
}
.dark h2 { color: #fff; }
.dark .lead, .dark p { color: #d7d4c4; }
.dark .kicker { color: #dba85a; }

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat { border-left: 3px solid var(--amber); padding-left: 18px; }
.stat .num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.1;
}
.stat .cap { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.dark .stat .num { color: #fff; }
.dark .stat { border-left-color: #dba85a; }

@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; gap: 20px; }
}

/* Feature rows (image + text) */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.feature-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: rgba(193,127,42,.12);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.5rem; margin: 0 0 12px; color: var(--forest-deep); }
.feature p { color: var(--ink-soft); margin: 0 0 14px; }
.feature ul { margin: 16px 0 0; padding: 0; list-style: none; }
.feature li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.feature li:first-child { border-top: none; }
.feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
}
.pricecard {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--paper-dim);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 14px;
}
.pricecard b { color: var(--forest-deep); font-size: 15px; }

@media (max-width: 860px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Phase timeline */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.phase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.phase-card .step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.phase-card h4 { margin: 8px 0 10px; color: var(--forest-deep); font-size: 1.15rem; }
.phase-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
@media (max-width: 860px) {
  .phases { grid-template-columns: 1fr; }
}

/* Quote block */
.quoteblock {
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 22px;
  margin: 40px 0 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-deep);
  max-width: 62ch;
}
.quoteblock cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

/* Get involved / form */
.involve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .involve { grid-template-columns: 1fr; }
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--ink);
}
.form-card label:first-of-type { margin-top: 0; }
.form-card input, .form-card select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
}
.form-card button {
  margin-top: 20px;
  width: 100%;
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
}
.form-card button:hover { background: var(--amber-deep); }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }

/* Footer */
footer {
  background: var(--forest-deep);
  color: #cfd0c4;
  padding: 46px 0 34px;
  font-size: 13.5px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer a { text-decoration: underline; color: #e8dcc0; }
footer .disclaimer { max-width: 46ch; color: #9ba18f; }
