/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a2e28;
  background: #faf8f4;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #1a2e28;
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #065f46;
  color: #faf8f4;
  border-color: #065f46;
}
.btn-primary:hover { background: #047a5a; border-color: #047a5a; }
.btn-ghost {
  background: transparent;
  color: #1a2e28;
  border-color: #1a2e28;
}
.btn-ghost:hover { background: #1a2e28; color: #faf8f4; }
.btn-white {
  background: #faf8f4;
  color: #065f46;
  border-color: #faf8f4;
}
.btn-white:hover { background: #f0ece4; }
.btn-ghost-light {
  background: transparent;
  color: #faf8f4;
  border-color: rgba(250,248,244,.4);
}
.btn-ghost-light:hover { background: rgba(250,248,244,.1); border-color: #faf8f4; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,95,70,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(26,46,40,.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
  color: #1a2e28;
  letter-spacing: -.01em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  color: #4a6358;
  transition: color .2s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: #065f46; }
.nav-cta {
  background: #065f46 !important;
  color: #faf8f4 !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #047a5a !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: #1a2e28;
  transition: transform .3s, opacity .3s;
}
.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); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6,95,70,.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(212,165,116,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: #1a2e28;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-desc {
  font-size: 1.05rem;
  color: #4a6358;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-card-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,40,.1);
}
.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 520/380;
}
.hero-card-floating {
  position: absolute;
  background: #faf8f4;
  border: 1px solid rgba(6,95,70,.1);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 8px 30px rgba(26,46,40,.08);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.hero-card--left {
  bottom: -20px;
  left: -30px;
  animation-delay: .5s;
}
.hero-card--right {
  top: 30px;
  right: -20px;
  animation-delay: 1.2s;
}
.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6,95,70,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #065f46;
}
.hero-card-floating strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: #1a2e28;
  line-height: 1.3;
}
.hero-card-floating span:last-child {
  font-size: .78rem;
  color: #6b8f7e;
  line-height: 1.4;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  border-top: 1px solid rgba(6,95,70,.07);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  padding: 36px 28px;
  border: 1px solid rgba(6,95,70,.08);
  border-radius: 12px;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  background: #faf8f4;
}
.svc-card:hover {
  border-color: rgba(6,95,70,.2);
  box-shadow: 0 8px 30px rgba(6,95,70,.06);
  transform: translateY(-3px);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(6,95,70,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #1a2e28;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: .9rem;
  color: #5a7d6c;
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 100px 0;
  border-top: 1px solid rgba(6,95,70,.07);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 50px rgba(26,46,40,.08); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 480/560; }
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,46,40,.1);
  border: 4px solid #faf8f4;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 260/300; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  font-size: .95rem;
  color: #4a6358;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(6,95,70,.08);
  border-bottom: 1px solid rgba(6,95,70,.08);
}
.astat { flex: 1; }
.astat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #065f46;
  line-height: 1.2;
}
.astat-label {
  font-size: .8rem;
  color: #6b8f7e;
  margin-top: 4px;
}
.astat-divider {
  width: 1px;
  height: 40px;
  background: rgba(6,95,70,.12);
  flex-shrink: 0;
}

/* ── Reviews ── */
.reviews {
  padding: 100px 0;
  border-top: 1px solid rgba(6,95,70,.07);
  background: #f4f1ec;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.rev-card {
  background: #faf8f4;
  border: 1px solid rgba(6,95,70,.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow .25s, transform .2s;
}
.rev-card:hover { box-shadow: 0 8px 30px rgba(26,46,40,.06); transform: translateY(-2px); }
.rev-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.rev-text {
  font-size: .95rem;
  color: #3d5a4c;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.rev-author {
  font-size: .8rem;
  font-weight: 500;
  color: #065f46;
  letter-spacing: .02em;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: #065f46;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212,165,116,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eyebrow { color: rgba(250,248,244,.5); margin-bottom: 16px; }
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #faf8f4;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(250,248,244,.65);
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  border-top: 1px solid rgba(6,95,70,.07);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.cd-item { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(6,95,70,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-item strong {
  display: block;
  font-weight: 500;
  font-size: .85rem;
  color: #1a2e28;
  margin-bottom: 4px;
}
.cd-item span, .cd-item a {
  font-size: .9rem;
  color: #5a7d6c;
}
.cd-item a:hover { color: #065f46; }
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(6,95,70,.08);
  margin-top: 8px;
}

/* Form */
.contact-form-wrap {
  background: #f4f1ec;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(6,95,70,.06);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1a2e28;
  margin-bottom: 6px;
}
.form-hint {
  font-size: .85rem;
  color: #6b8f7e;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: #1a2e28;
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(6,95,70,.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #1a2e28;
  background: #faf8f4;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #065f46;
  box-shadow: 0 0 0 3px rgba(6,95,70,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8c4b6; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(6,95,70,.07);
  border-radius: 8px;
  font-size: .88rem;
  color: #065f46;
  font-weight: 500;
  text-align: center;
}

/* ── Footer ── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(6,95,70,.07);
  background: #faf8f4;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-logo { margin-bottom: 4px; }
.footer-brand p {
  font-size: .85rem;
  color: #6b8f7e;
  margin-top: 10px;
  line-height: 1.7;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: .85rem;
  color: #4a6358;
  transition: color .2s;
}
.footer-links a:hover { color: #065f46; }
.footer-copy {
  font-size: .78rem;
  color: #a8c4b6;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; min-height: 340px; }
  .hero-card--left { left: 10px; bottom: -10px; }
  .hero-card--right { right: 10px; top: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 10px; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { 
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(6,95,70,.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-img-accent { display: none; }
}
