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

:root {
  --forest:    #1a2e1f;
  --forest-mid:#2d5016;
  --green:     #3a6b25;
  --sage:      #6b8f5e;
  --gold:      #b8963e;
  --gold-light:#d4b06a;
  --cream:     #f5f0e6;
  --cream-dark:#ede6d6;
  --white:     #faf8f4;
  --ink:       #141410;
  --ink-mid:   #2e2e28;
  --muted:     #6b6b5e;
  --border:    #d8d0be;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
img { max-width:100%; display:block; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(26,46,31,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245,240,230,0.65);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 3px;
  letter-spacing: 0.8px;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover { background: var(--gold-light); }

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left:0; right:0;
  background: var(--forest);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(245,240,230,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.5px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ── LAYOUT ── */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }
.bg-ink { background: var(--ink); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--forest);
  margin-bottom: 1.2rem;
}

.section-title.light { color: var(--cream); }

.body-lg {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

.body-lg.light { color: rgba(245,240,230,0.65); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,150,62,0.3);
}

.btn-outline-cream {
  background: transparent;
  border: 1px solid rgba(245,240,230,0.4);
  color: var(--cream);
}
.btn-outline-cream:hover {
  background: rgba(245,240,230,0.08);
  border-color: var(--cream);
}

.btn-outline-forest {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider.center { margin: 1.5rem auto; }

/* ── SERVICE CARDS ── */
.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
  box-shadow: 0 8px 40px rgba(26,46,31,0.1);
  transform: translateY(-4px);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--ink-mid);
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }

/* ── STAT BAR ── */
.stat-bar { background: var(--forest); padding: 4rem 0; }
.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-bar-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-bar-item .lbl {
  font-size: 0.8rem;
  color: rgba(245,240,230,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245,240,230,0.55);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  color: rgba(245,240,230,0.45);
  font-weight: 400;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,230,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: rgba(245,240,230,0.5);
  margin-bottom: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-link span {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245,240,230,0.3);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--forest);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left:0; right:0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.cream-after::after { background: var(--cream); }

.page-hero-inner { position: relative; z-index: 2; color: var(--cream); }

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(245,240,230,0.45);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.breadcrumb a { color: rgba(245,240,230,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stat-bar-grid { grid-template-columns:repeat(2,1fr); }
  .navbar { padding: 0 1.5rem; }
}
@media(max-width:768px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .grid-2,.grid-3 { grid-template-columns:1fr; }
  .section { padding:64px 0; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; gap:0.8rem; text-align:center; }
}
@media(max-width:480px){
  .grid-4 { grid-template-columns:1fr; }
  .stat-bar-grid { grid-template-columns:1fr 1fr; }
}
