@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --green:      #2F5233;
  --green-dark: #1F3822;
  --gold:       #B8862F;
  --cream:      #FAF6EF;
  --white:      #FFFFFF;
  --text:       #2B2B27;
  --text-soft:  rgba(43,43,39,0.7);
  --border:     rgba(43,43,39,0.1);
  font-size: 16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; color: var(--text); }
p { color: var(--text-soft); }
a { color: var(--green); }
img { max-width: 100%; display: block; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 5%; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.nav-logo-main { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: var(--green-dark); }
.nav-logo-sub { font-size: 0.6875rem; font-weight: 500; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.nav-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-toggle { display: none; }

/* ── HERO ── */
.hero {
  padding: 4.5rem 5% 3.5rem; background: var(--green-dark); color: var(--white);
  position: relative;
}
.hero .container { max-width: 50rem; }
.hero-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.875rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.125rem); color: var(--white); font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 1rem;
}
.hero p { font-size: 1.0625rem; color: rgba(255,255,255,0.82); max-width: 42rem; }

/* ── SECTION ── */
.section { padding: 4rem 5%; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 600; margin-bottom: 0.75rem;
}
.section-intro { max-width: 42rem; font-size: 1.0625rem; margin-bottom: 2.5rem; }

/* ── CARD GRID ── */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--border); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(31,56,34,0.12); border-color: var(--green); }
.card-image { aspect-ratio: 4/3; width: 100%; overflow: hidden; background: var(--cream); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
  aspect-ratio: 4/3; width: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--cream); font-size: 2.25rem;
}
.card-body { padding: 1.375rem 1.5rem 1.625rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.1875rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.9375rem; color: var(--text-soft); flex: 1; }
.card-link { margin-top: 1rem; font-size: 0.875rem; font-weight: 700; color: var(--green); }

/* ── CONTACT / INFO BLOCK ── */
.info-block {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 14px;
  padding: 1.75rem 2rem; margin-bottom: 1.25rem;
}
.info-block h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }
.info-block p { font-size: 0.9375rem; }

/* ── FOOTER ── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.75); padding: 2.5rem 5% 1.75rem; }
.footer-inner { max-width: 72rem; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 1.75rem; }
.footer-title { font-family: 'Fraunces', Georgia, serif; color: var(--white); font-size: 1.125rem; margin-bottom: 0.625rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.25rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
}
.footer-bottom p { color: rgba(255,255,255,0.55); margin-bottom: 0.375rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
