/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-950: #042f23;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream:       #faf9f6;
  --cream-dark:  #f5f3ee;
  --stone-50:    #fafaf9;
  --stone-100:   #f5f5f4;
  --stone-200:   #e7e5e4;
  --stone-300:   #d6d3d1;
  --stone-600:   #57534e;
  --stone-700:   #44403c;
  --stone-800:   #292524;
  --stone-900:   #1c1917;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--stone-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
label { font-size: .8125rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--stone-600); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--stone-900);
  margin-bottom: 1.25rem;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8125rem 1.75rem;
  border-radius: 4px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-emerald {
  background: var(--emerald-800);
  color: #fff;
  border: 1.5px solid var(--emerald-800);
}
.btn-emerald:hover { background: var(--emerald-900); border-color: var(--emerald-900); }
.btn-light {
  background: #fff;
  color: var(--emerald-900);
  border: 1.5px solid #fff;
}
.btn-light:hover { background: var(--emerald-50); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-light-lg {
  background: transparent;
  color: var(--emerald-900);
  border: 1.5px solid var(--emerald-800);
}
.btn-outline-light-lg:hover { background: var(--emerald-50); }
.btn-light-lg {
  background: var(--emerald-800);
  color: #fff;
  border: 1.5px solid var(--emerald-800);
}
.btn-light-lg:hover { background: var(--emerald-900); border-color: var(--emerald-900); }
.btn-sm { padding: .5rem 1.125rem; font-size: .8125rem; }
.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--stone-900);
  letter-spacing: -.01em;
}
.logo-icon { flex-shrink: 0; }
.logo-light { color: #fff; }
.logo-light span { color: rgba(255,255,255,.9); }

/* Nav */
.nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav a {
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 400;
  color: var(--stone-700);
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--emerald-700); background: var(--emerald-50); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone-700);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav ul {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
  }
  .nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: .75rem 0; font-size: 1rem; }
  .nav .btn-sm { margin-top: .5rem; text-align: center; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,47,35,.88) 0%, rgba(6,78,59,.80) 50%, rgba(10,95,70,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 8rem 1.5rem 4rem;
  color: #fff;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--emerald-100);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.5);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--cream);
}
.services .container { text-align: center; }
.services .section-title { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.service-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.service-card:hover {
  border-color: var(--emerald-200, #a7f3d0);
  box-shadow: 0 8px 32px rgba(6,78,59,.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: .625rem;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: .9375rem;
  color: var(--stone-600);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 5rem 0; }
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--stone-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.about-text p {
  color: var(--stone-600);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-200);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-label {
  font-size: .8125rem;
  color: var(--stone-600);
  letter-spacing: .02em;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img { height: 320px; }
  .about { padding: 5rem 0; }
}

/* ── Why Us ───────────────────────────────────────── */
.why {
  padding: 7rem 0;
  background: var(--cream);
}
.why .container { text-align: center; }
.why .section-title { margin-bottom: 3.5rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.why-item {
  padding: 2rem;
  border: 1px solid var(--stone-200);
  border-radius: 6px;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.why-item:hover { border-color: var(--emerald-200, #a7f3d0); box-shadow: 0 4px 20px rgba(6,78,59,.06); }
.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-100, #d1fae5);
  line-height: 1;
  margin-bottom: .75rem;
}
.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: .5rem;
}
.why-item p {
  font-size: .9375rem;
  color: var(--stone-600);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why { padding: 5rem 0; }
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 6rem 0;
  background: var(--emerald-900);
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-inner > p {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--stone-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p {
  color: var(--stone-600);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--emerald-700);
}
.contact-item strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: .125rem;
}
.contact-item span,
.contact-item a {
  font-size: .9375rem;
  color: var(--stone-600);
}
.contact-item a:hover { color: var(--emerald-700); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 6px;
  padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--stone-800);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: 4px;
  color: var(--emerald-800);
  font-size: .9375rem;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact { padding: 5rem 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Map ──────────────────────────────────────────── */
.map-section { background: var(--stone-100); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--stone-900);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact p {
  font-size: .875rem;
  margin-bottom: .375rem;
}
.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 3rem 0 0; }
}

/* ── Scroll Reveal ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: content is always visible if JS is disabled */
@media not all and (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 1; transform: none; }
}
