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

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

:root {
  --white:        #ffffff;
  --off-white:    #f7f8f5;
  --light-gray:   #eef0eb;
  --border:       #dde3d6;
  --text-dark:    #1a2010;
  --text-mid:     #3a4a30;
  --text-muted:   #6b7a5e;
  --sage:         #7a9b6a;
  --sage-dark:    #5d7d4e;
  --sage-light:   #e8f0e3;
  --sage-mid:     #a8c498;
  --font-head:    'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        72px;
  --radius:       8px;
  --shadow:       0 4px 24px rgba(26,32,16,0.08);
  --shadow-lg:    0 12px 48px rgba(26,32,16,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo-text em { font-style: italic; color: var(--sage); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 13px; border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover, .nav-links a.active { background: var(--sage-light); color: var(--sage-dark); }

.nav-cta {
  background: var(--sage) !important; color: #fff !important;
  border-radius: 6px !important; padding: 9px 20px !important;
  font-weight: 700 !important; transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); display: block; border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 32px 5%; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a.mob-cta {
  margin-top: 20px; background: var(--sage); color: #fff;
  padding: 14px 20px; border-radius: var(--radius); text-align: center; border: none; font-weight: 700;
}

/* ── PAGE WRAP ── */
.page-wrap { padding-top: var(--nav-h); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #1a2010 0%, #2d4020 55%, #4a6535 100%);
  padding: 80px 5% 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(122,155,106,0.25) 0%, transparent 55%);
}
.page-hero .label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-mid); font-weight: 700; margin-bottom: 14px; position: relative;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300; color: #fff; line-height: 1.12; position: relative; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--sage-mid); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; font-weight: 300; position: relative; }

/* ── SECTIONS ── */
section { padding: 88px 5%; }
section.alt { background: var(--off-white); }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); font-weight: 700; margin-bottom: 12px;
}

h2 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 16px; color: var(--text-dark);
}
h2 em { font-style: italic; color: var(--sage); }

.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 580px; font-weight: 300; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--sage); color: #fff;
  padding: 13px 32px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; border: 2px solid var(--sage); color: var(--sage);
  padding: 11px 30px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

/* ── DIVIDER ── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 64px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .logo-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand .logo-text em { font-style: italic; color: var(--sage-mid); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 300px; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-mid); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.18s; }
.footer-col ul li 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; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.75rem; font-weight: 700; transition: border-color 0.18s, color 0.18s; }
.footer-socials a:hover { border-color: var(--sage-mid); color: var(--sage-mid); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { opacity:0; transform:translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
