/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --green:       #6B9B7A;
  --green-dark:  #4E7A5C;
  --green-light: #EAF2EC;
  --cream:       #FAFAF7;
  --sand:        #D9CCBA;
  --sand-light:  #EDE5D8;
  --text:        #2C3A2E;
  --text-muted:  #657066;
  --white:       #FFFFFF;

  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 2px 12px rgba(44, 58, 46, 0.06);
  --shadow-card-hover: 0 8px 28px rgba(44, 58, 46, 0.12);
  --shadow-nav: 0 1px 0 rgba(44, 58, 46, 0.07);

  --max-w: 860px;
  --section-py: 96px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { color: var(--text-muted); margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }

ul, ol { padding-left: 1.5em; }
li { color: var(--text-muted); margin-bottom: 0.4em; }
li:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}

/* ── Navigation ─────────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 20, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-logo { color: var(--white); }
.nav-logo:hover { color: rgba(255,255,255,0.75); }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-toggle span { background: var(--white); }

.nav-inner {
  max-width: calc(var(--max-w) + 56px);
  margin-inline: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 15, 0.65) 0%,
    rgba(10, 20, 15, 0.55) 60%,
    rgba(10, 20, 15, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Radial glow accent at top */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(107,155,122,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

#hero > .container {
  position: relative;
  z-index: 3;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

.hero-title {
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span {
  color: var(--green);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Override btn styles for dark hero background */
#hero .btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#hero .btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

#hero .btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
}
#hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.8);
}

@media (prefers-reduced-motion: reduce) {
  #hero { background-attachment: scroll; }
}

@media (max-width: 700px) {
  #hero {
    min-height: 90vh;
    background-attachment: scroll;
  }
  .hero-logo { height: 64px; }
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(107,155,122,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,155,122,0.4);
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--green);
  box-shadow: inset 0 0 0 1.5px rgba(107,155,122,0.4);
}
.btn-outline:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px rgba(107,155,122,0.6);
}
.btn-outline:active { transform: translateY(0); }

/* ── Sections ───────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}
.section--alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.section-title {
  color: var(--text);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
}

/* ── Intro list ─────────────────────────────────────────── */
.intro-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.intro-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(107,155,122,0.12);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.intro-list li:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(107,155,122,0.25);
}
.intro-list li::before {
  content: '✦';
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ accordion ──────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(107,155,122,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open], .faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.faq-question::after {
  content: '+';
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-muted);
  padding: 0 26px 22px;
  line-height: 1.75;
}

.faq-answer p { margin-bottom: 0; }

/* ── Services grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(107,155,122,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--sand));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(107,155,122,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.service-card h3 {
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; }

/* ── About ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 580px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
}

.about-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-light);
  background: var(--green-light);
}

.about-text h2 {
  color: var(--text);
  margin-bottom: 16px;
}
.about-text h3 {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 8px;
}
.about-text p { color: var(--text-muted); }

/* ── Contact ────────────────────────────────────────────── */
.contact-lead {
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}
.contact-method:hover { color: var(--green); }

.contact-method__icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.contact-form {
  max-width: 480px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(107,155,122,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.form-field { margin-bottom: 20px; }
.form-field:last-child { margin-bottom: 0; }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(107,155,122,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107,155,122,0.12);
}
/* Honeypot — hidden from humans */
.form-field[style="display:none;"] { display: none !important; }

.form-status { font-size: 0.9rem; margin-bottom: 0; }

/* ── Footer ─────────────────────────────────────────────── */
#site-footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(107,155,122,0.1);
  background: var(--cream);
}
#site-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
#site-footer a { color: var(--green); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  :root { --section-py: 72px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 20, 15, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image {
    width: 150px; height: 150px;
    margin-inline: auto;
  }
  .about-text { text-align: center; }
  .about-text h3 { margin-top: 24px; }

  .contact-methods { flex-direction: column; align-items: center; gap: 16px; }
  .contact-form { padding: 28px 22px; }
}
