:root {
  color-scheme: light;
  --bg: #fdfbf6;
  --bg-alt: #f4ede1;
  --surface: #ffffff;
  --fg: #2a2420;
  --fg-muted: #6b6258;
  --accent: #c17a3d;
  --accent-dark: #9c5c26;
  --accent-soft: #f0dcc4;
  --border: #e8ddc9;
  --shadow: 0 10px 30px -12px rgba(120, 90, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--fg);
}

p {
  margin: 0 0 1em;
  color: var(--fg-muted);
}

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

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 251, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at 15% 20%, var(--accent-soft) 0%, transparent 45%),
    radial-gradient(circle at 85% 0%, #e5efe0 0%, transparent 40%),
    var(--bg);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 0.7em;
}

.lead {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Sections */

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section.alt {
  background: var(--bg-alt);
  max-width: none;
}

.section.alt > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4em;
}

.card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Feature rows (neighborhoods) */

.feature-row {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-text {
  max-width: 640px;
}

.feature-text h3 {
  font-size: 1.25rem;
}

.feature-text p {
  margin: 0;
}

/* Checklist */

.checklist {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.9rem;
  color: var(--fg-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.quote {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg);
  box-shadow: var(--shadow);
}

/* Footer */

footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
}
