@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --forest: #1a3c2e;
  --sage: #3d7a5e;
  --mint: #a8d5b5;
  --cream: #faf6ef;
  --warm-white: #fffdf9;
  --bark: #7a5c3e;
  --gold: #c9943a;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61,122,94,0.12);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}

.nav-logo span { color: var(--sage); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage); }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--cream); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8832e; transform: translateY(-1px); }

/* ── SECTIONS ── */
section { padding: 80px 5vw; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.15; color: var(--forest); }
h2 { font-size: clamp(26px, 3.5vw, 40px); line-height: 1.25; color: var(--forest); }
h3 { font-size: 20px; color: var(--forest); }

/* ── HERO (shared) ── */
.page-hero {
  background: var(--cream);
  padding: 80px 5vw 60px;
  text-align: center;
  border-bottom: 1px solid rgba(61,122,94,0.1);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--text-mid);
  font-size: 17px;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(61,122,94,0.1);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,60,46,0.1); }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 48px 5vw 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 5vw; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
