:root {
  --forest:   #2a4a2c;
  --pine:     #345737;
  --grass:    #8bbd3e;
  --sage:     #b5d47a;
  --cream:    #f6f3ec;
  --earth:    #5a3e2b;
  --bark:     #3d2b1a;
  --white:    #ffffff;
  --text:     #1e2e1f;
  --muted:    #5a6b5b;
  --border:   #d4e4c0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===================== NAV ===================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pine);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 23px;
  flex-shrink: 0;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.nav-brand span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--sage);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--grass);
  color: var(--forest) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--sage); color: var(--forest) !important; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--forest) 0%, var(--pine) 55%, #1e3520 100%);
  overflow: hidden;
  padding: 5rem 2rem 4rem;
}

/* Decorative diagonal stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

/* Large faded logo watermark */
.hero-watermark {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 60%;
  max-width: 680px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--grass);
  border-radius: 2px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: normal;
  color: var(--grass);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grass);
  color: var(--forest);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--sage);
  background: rgba(255,255,255,0.07);
}

/* Hero trust bar */
.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--grass);
  flex-shrink: 0;
}

/* ===================== SECTION SHELL ===================== */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grass);
  border-radius: 2px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ===================== SERVICES ===================== */
#services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pine), var(--grass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(52,87,55,0.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pine), var(--grass));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===================== ABOUT ===================== */
#about { background: var(--pine); }

#about h2, #about .section-label { color: var(--white); }
#about .section-label { color: var(--sage); }
#about .section-sub { color: rgba(255,255,255,0.65); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  border: 3px solid var(--grass);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.about-logo-wrap svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(139,189,62,0.2);
  border-radius: 8px;
  padding: 1.25rem;
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--grass);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pillar-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ===================== SERVICE AREA ===================== */
#area { background: var(--cream); }

.area-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--pine);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.area-tag::before {
  content: '📍';
  font-size: 0.8rem;
}

/* ===================== CONTACT ===================== */
#contact { background: linear-gradient(160deg, var(--forest), var(--pine)); }

#contact h2 { color: var(--white); }
#contact .section-label { color: var(--sage); }
#contact .section-sub { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(139,189,62,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-method:hover { background: rgba(255,255,255,0.12); }

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--grass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg { width: 22px; height: 22px; color: var(--forest); }

.contact-method-text { display: flex; flex-direction: column; }
.contact-method-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); }
.contact-method-value { font-size: 1rem; font-weight: 600; color: var(--white); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(139,189,62,0.25);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--grass); }

.form-group select option { background: var(--pine); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--bark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}

footer a { color: var(--sage); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.8); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.5s ease both; }
h1            { animation: fadeUp 0.6s 0.1s ease both; }
.hero-desc    { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust   { animation: fadeUp 0.6s 0.4s ease both; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-logo-wrap { order: -1; }

  .form-row { grid-template-columns: 1fr; }

  .pillars { grid-template-columns: 1fr 1fr; }

  .hero { min-height: 70vh; }
}
