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

:root {
  --green: #4a7c59;
  --green-light: #7aad8a;
  --green-dark: #2d5a3d;
  --cream: #f8f4ef;
  --warm: #e8ddd0;
  --text: #2a2a2a;
  --muted: #7a7a6a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(248,244,239,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74,124,89,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--green-dark); }
.logo-text span { color: var(--green-light); font-weight: 300; }
.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 400; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { background: var(--green) !important; color: white !important; padding: 10px 22px; border-radius: 25px; font-size: 13px !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: white !important; }

/* LAYOUT */
.page-wrap { padding-top: 70px; min-height: 100vh; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: white; padding: 16px 32px; border-radius: 30px; text-decoration: none; font-size: 14px; letter-spacing: 0.5px; transition: all 0.3s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,89,0.25); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: white; }

/* SECTION */
section { padding: 90px 8%; }
.section-tag { font-size: 11px; letter-spacing: 3px; color: var(--green); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 300; color: var(--green-dark); line-height: 1.2; margin-bottom: 18px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 50px; }
.divider { width: 60px; height: 3px; background: var(--green); margin-bottom: 24px; }

/* FOOTER */
footer { background: #1a2e22; color: white; padding: 60px 8% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.social-links { display: flex; gap: 14px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 15px; transition: background 0.2s; }
.social-links a:hover { background: var(--green); }
