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

:root {
  --emerald-700: #065f46;
  --emerald-600: #16a34a;
  --cream-50: #fefdf8;
  --cream-100: #fefce8;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--cream-50);
  line-height: 1.6;
  font-weight: 300;
  -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; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--gray-900); }
.nav-link:hover::after { width: 100%; }
.nav-link-cta {
  background: var(--emerald-700);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--emerald-600); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--gray-800);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream-50);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(6,95,70,0.05) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(6,95,70,0.2);
  border-radius: 100px;
  width: fit-content;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline .hero-em {
  font-style: italic;
  color: var(--emerald-700);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--emerald-700);
  color: #fff;
  border: 1.5px solid var(--emerald-700);
}
.btn-primary:hover {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,95,70,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--emerald-700);
  color: var(--emerald-700);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* Floating Stat Cards */
.hero-stats {
  position: relative;
  height: 520px;
  flex-shrink: 0;
}
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 6s ease-in-out infinite;
}
.stat-card--1 { top: 0; right: 0; animation-delay: 0s; }
.stat-card--2 { top: 110px; left: 0; animation-delay: -1.5s; }
.stat-card--3 { bottom: 110px; right: 20px; animation-delay: -3s; }
.stat-card--4 { bottom: 0; left: 0; animation-delay: -4.5s; }
.stat-card-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--emerald-700);
  margin-bottom: 8px;
}
.stat-card--2 .stat-card-accent { background: var(--gray-400); width: 24px; }
.stat-card--3 .stat-card-accent { background: #d97706; width: 20px; }
.stat-card--4 .stat-card-accent { background: #6366f1; width: 28px; }
.stat-number {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Image */
.hero-image-wrap {
  display: none;
}

/* ── Section Shared ───────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--cream-50);
}
.services .container { text-align: center; }
.services .section-sub { margin: 0 auto 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--emerald-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack { position: relative; height: 640px; }
.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}
.about-image-float img { width: 100%; height: 100%; object-fit: cover; }
.about-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about-text-col .section-title { margin-bottom: 24px; }
.about-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--gray-800);
  font-weight: 400;
}
.value-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
  padding: 120px 0;
  background: var(--emerald-700);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-us-content .section-label { color: var(--emerald-300); }
.why-us-content .section-title { color: #fff; }
.why-us-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.why-list { display: flex; flex-direction: column; gap: 36px; }
.why-item { display: flex; gap: 24px; align-items: flex-start; }
.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
}
.why-us-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  aspect-ratio: 56/70;
}
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--cream-50);
}
.testimonials .container { text-align: center; }
.testimonials .section-sub { margin: 0 auto 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: transparent;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-800);
  letter-spacing: 0.02em;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,95,70,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text { flex: 1; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
}
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 400;
  line-height: 1.6;
}
.contact-detail-value-link {
  font-size: 0.95rem;
  color: var(--emerald-700);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail-value-link:hover { color: var(--emerald-600); }

/* Form */
.contact-form-col {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: #fff;
  color: var(--gray-900);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(6,95,70,0.08);
}
.form-input::placeholder { color: var(--gray-400); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23a3a3a3' stroke-width='1.5'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--emerald-50);
  border: 1px solid rgba(6,95,70,0.15);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--emerald-700);
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ── Map ──────────────────────────────────────────── */
.map-section { height: 320px; filter: grayscale(0.6) contrast(1.05); }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-logo-icon { flex-shrink: 0; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu ──────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(254,253,248,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--gray-800);
  font-weight: 400;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { height: auto; display: flex; gap: 16px; flex-wrap: wrap; }
  .stat-card { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; flex: 1; min-width: 140px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-stack { height: 420px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image { max-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-image-stack { height: 360px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .stat-card { min-width: 100%; }
  .contact-form-col { padding: 24px; }
}
