:root {
  --bg: #f5f5f2;
  --bg-alt: #edede8;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --accent: #c9963d;
  --accent-dark: #a07830;
  --forest: #2d4a3e;
  --forest-light: #3d5f4f;
  --slate: #3a4a4a;
  --cream: #f5f5f2;
  --border: #d8d8d2;
  --white: #ffffff;
  --shadow: rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

/* HEADER / HERO */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--cream);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,245,242,0.85);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 13px 32px;
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

/* NAV */
nav#main-nav {
  background: var(--forest);
  padding: 0;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav#main-nav .nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-brand {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: rgba(245,245,242,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  margin-right: auto;
  text-decoration: none;
}

nav#main-nav a {
  color: rgba(245,245,242,0.85);
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 20px;
  display: inline-block;
  transition: color 0.15s, background 0.15s;
  border-left: 1px solid rgba(255,255,255,0.08);
}

nav#main-nav a:last-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

nav#main-nav a:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

nav#main-nav a.active {
  color: var(--accent);
}

/* MAIN */
main {
  min-height: 60vh;
  padding: 48px 0 40px;
}

/* SECTIONS */
.section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
  font-family: Georgia, 'Times New Roman', serif;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: system-ui, -apple-system, sans-serif;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

p {
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 400;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* CALLOUT */
.callout {
  background: var(--forest);
  color: var(--cream);
  padding: 28px 32px;
  border-radius: 4px;
  margin: 32px 0;
}

.callout h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: Georgia, 'Times New Roman', serif;
}

.callout p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: rgba(245,245,242,0.85);
  line-height: 1.65;
}

/* LOCAL AREA — PAGE SPECIFIC */
.hero-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.page-header {
  padding: 48px 0 32px;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  max-width: 680px;
}

.stat-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 24px 0;
}

.stat-box {
  flex: 1;
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
}

.stat-box .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  font-family: system-ui, -apple-system, sans-serif;
  display: block;
}

.stat-box .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 4px;
  display: block;
}

/* ABOUT PAGE */
.about-intro {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px var(--shadow);
}

.about-intro h2 {
  font-size: 1.4rem;
  color: var(--forest);
  font-weight: 400;
  margin-bottom: 16px;
  font-family: Georgia, 'Times New Roman', serif;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.75;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 2px 8px var(--shadow);
}

.contact-info-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-info-card p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-info-card a {
  color: var(--accent-dark);
}

.contact-info-card a:hover {
  color: var(--accent);
}

.contact-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 16px;
  font-style: italic;
  line-height: 1.5;
}

/* ADSENSE ZONE */
.adsense-zone {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 3px;
  padding: 16px;
  text-align: center;
  color: #aaa;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin: 32px 0;
}

/* FOOTER */
footer {
  background: var(--slate);
  color: rgba(245,245,242,0.6);
  padding: 28px 0;
  margin-top: 40px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
}

footer .footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

footer a {
  color: rgba(245,245,242,0.6);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* LINKS */
a {
  color: var(--accent-dark);
  text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 700px) {
  body { padding: 0 16px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-cta { padding: 12px 24px; }
  nav#main-nav .nav-inner { flex-wrap: wrap; }
  nav#main-nav a { padding: 12px 14px; font-size: 0.8rem; }
  .grid-2, .grid-3, .contact-wrapper { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; }
  .stat-box { flex: 1 1 45%; }
  main { padding: 32px 0 24px; }
  .section { padding: 28px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}
