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

:root {
  --emerald:    #065f46;
  --emerald-deep: #044d38;
  --emerald-light: #067a5a;
  --cream:      #faf8f4;
  --cream-dark: #f0ece4;
  --charcoal:   #1a1a1a;
  --text:       #2d2d2d;
  --text-light: #6b6b6b;
  --white:      #ffffff;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title em { font-style: italic; color: var(--emerald); }

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}
.btn-primary:hover { background: var(--emerald-deep); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: var(--white); color: var(--emerald); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--emerald);
}
.btn-white:hover { background: var(--cream-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,95,70,.08);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  color: var(--charcoal);
}
.logo-sub { font-weight: 400; color: var(--emerald); font-size: .8rem; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width .25s ease;
}
.nav-link:hover { color: var(--emerald); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--emerald);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--emerald-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(6,95,70,.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform .35s ease;
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--emerald);
  padding: 14px 24px;
  border-radius: 100px;
  justify-content: center;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #065f46 0%, #047857 35%, #06946b 60%, #059669 80%, #10b981 100%);
  z-index: 0;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6,95,70,.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16,185,129,.3) 0%, transparent 50%);
}
.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title em { font-style: italic; color: #6ee7b7; }
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICES ─────────────────────────────────────── */
.services { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-eyebrow { color: rgba(255,255,255,.7); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-title em { color: #6ee7b7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(6,95,70,.08);
  transition: all .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6,95,70,.15);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .925rem; color: var(--text-light); line-height: 1.65; }

/* ── ABOUT ────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--cream-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content { max-width: 480px; }
.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(6,95,70,.12);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald);
}
.stat-label { font-size: .8rem; color: var(--text-light); letter-spacing: .04em; }

/* ── WHY US ───────────────────────────────────────── */
.why-us {
  padding: 120px 0;
  background: linear-gradient(145deg, var(--emerald) 0%, var(--emerald-light) 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.why-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .925rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #044d38 0%, #065f46 50%, #047857 100%);
}
.cta-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(110,231,183,.12) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: #6ee7b7; }
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ──────────────────────────────────────── */
.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  margin-top: 16px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}
.contact-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--emerald); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(6,95,70,.08);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-note {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6,95,70,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--emerald);
}
.form-success.show { display: flex; }
.form-success svg { color: var(--emerald); }
.form-success p { font-size: 1rem; font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100svh; padding: 100px 20px 80px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .about-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ── ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
