@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #C9A227;
  --gold-light: #E8C252;
  --green: #2D5A27;
  --green-dark: #1E3D1A;
  --green-light: #4A7A42;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --charcoal: #2C2C2C;
  --gray: #6B6B6B;
  --gray-light: #E8E5DE;
  --white: #FFFFFF;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo img { height: 72px; width: auto; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--charcoal) !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); color: var(--charcoal); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ── Section spacing ── */
section { padding: 5rem 2rem; }
.container { max-width: var(--max-width); margin: 0 auto; }

/* ── Section headers ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Bullet list ── */
.check-list { list-style: none; }
.check-list li {
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Footer ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem;
  text-align: center;
}
footer .footer-inner { max-width: var(--max-width); margin: 0 auto; }
footer img { height: 56px; margin: 0 auto 1.5rem; filter: brightness(0) invert(1); opacity: 0.9; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
footer .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
footer .footer-links a:hover { color: var(--gold-light); }
footer .footer-contact { font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 2; }
footer .footer-contact a { color: var(--gold-light); }
footer .footer-copy { font-size: 0.75rem; opacity: 0.5; }

/* ── Divider ── */
.divider { width: 60px; height: 3px; background: var(--gold); margin: 1.25rem 0 1.75rem; border-radius: 2px; }

/* ── Responsive nav ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; }
}
