/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F5EE;
  color: #1A3C2A;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #1A3C2A; color: #F7F5EE;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.text-accent { color: #2D6A4F; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D6A4F;
  background: rgba(45,106,79,0.1);
  border: 1px solid rgba(45,106,79,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1A3C2A;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: #4A6B5A;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #2D6A4F; color: #F7F5EE;
  border-color: #2D6A4F;
}
.btn--primary:hover { background: #1A3C2A; border-color: #1A3C2A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,60,42,0.25); }
.btn--white {
  background: #F7F5EE; color: #1A3C2A;
  border-color: #F7F5EE;
}
.btn--white:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--outline {
  background: transparent; color: #1A3C2A;
  border-color: #1A3C2A;
}
.btn--outline:hover { background: #1A3C2A; color: #F7F5EE; transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: #1A3C2A;
  border-color: #1A3C2A;
}
.btn--ghost:hover { background: #1A3C2A; color: #F7F5EE; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,245,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,106,79,0.1);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(26,60,42,0.1); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 44px; height: 44px;
  background: #2D6A4F; color: #F7F5EE;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-weight: 700;
  color: #1A3C2A; line-height: 1.3;
}
.logo-text em { font-style: italic; font-weight: 400; color: #2D6A4F; }
.logo--footer .logo-mark { width: 36px; height: 36px; font-size: 1rem; border-radius: 8px; }
.logo--footer .logo-text { font-size: 0.75rem; }

/* ── Nav ── */
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav ul { display: flex; gap: 28px; }
.primary-nav a {
  font-size: 0.9rem; font-weight: 500;
  color: #1A3C2A; position: relative;
  transition: color 0.3s;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #2D6A4F;
  transition: width 0.3s;
}
.primary-nav a:hover { color: #2D6A4F; }
.primary-nav a:hover::after { width: 100%; }

/* ── Nav Toggle ── */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.hamburger {
  display: block; width: 24px; height: 2px;
  background: #1A3C2A; border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 0 80px;
  background: #F7F5EE;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-left { padding: 0 48px 0 80px; }
.hero-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #2D6A4F;
  background: rgba(45,106,79,0.1);
  border: 1px solid rgba(45,106,79,0.2);
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #1A3C2A;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .text-accent { color: #2D6A4F; display: block; }
.hero-sub {
  font-size: 1.15rem;
  color: #4A6B5A;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: #1A3C2A;
}
.trust-item svg { color: #2D6A4F; }

/* Hero Right */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0 48px 0 24px;
}
.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26,60,42,0.2);
  position: relative;
  z-index: 2;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-shape { position: absolute; z-index: 1; }
.hero-shape--circle {
  width: 200px; height: 200px;
  background: #2D6A4F; border-radius: 50%;
  top: -40px; right: 40px;
  opacity: 0.15;
}
.hero-shape--rect {
  width: 120px; height: 120px;
  background: #40916C; border-radius: 20px;
  bottom: 40px; left: -30px;
  opacity: 0.12;
  transform: rotate(15deg);
}
.hero-badge {
  position: absolute; bottom: -16px; left: 24px;
  background: #1A3C2A; color: #F7F5EE;
  padding: 12px 20px; border-radius: 14px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(26,60,42,0.3);
}
.hero-badge svg { color: #95D5B6; flex-shrink: 0; }

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #F7F5EE;
  position: relative;
}
.services-shape {
  position: absolute; bottom: 0; right: 0;
  color: #2D6A4F; pointer-events: none;
  opacity: 0.5;
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(45,106,79,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: #2D6A4F;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,60,42,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(45,106,79,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #2D6A4F; margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: #2D6A4F; color: #F7F5EE; }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #1A3C2A; margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: #4A6B5A; line-height: 1.7; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(45,106,79,0.04) 0%, transparent 100%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(26,60,42,0.15);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -32px; right: -24px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(26,60,42,0.2);
  border: 4px solid #fff;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-experience {
  position: absolute; top: -24px; left: -24px;
  background: #2D6A4F; color: #F7F5EE;
  padding: 20px 24px; border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(45,106,79,0.3);
}
.about-experience .exp-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
}
.about-experience .exp-label { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  font-size: 1.05rem; color: #4A6B5A;
  line-height: 1.8; margin-bottom: 16px;
}
.about-features { margin-top: 32px; display: grid; gap: 16px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; color: #1A3C2A;
}
.about-feature svg { color: #2D6A4F; flex-shrink: 0; }

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: #1A3C2A;
  position: relative;
  overflow: hidden;
}
.why-us .section-tag { background: rgba(149,213,182,0.15); color: #95D5B6; border-color: rgba(149,213,182,0.3); }
.why-us .section-title { color: #F7F5EE; }
.why-us .section-title .text-accent { color: #95D5B6; }
.why-header { text-align: center; margin-bottom: 64px; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; position: relative; z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(149,213,182,0.2);
  line-height: 1; margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #F7F5EE; margin-bottom: 12px;
}
.why-card p { font-size: 0.95rem; color: rgba(247,245,238,0.7); line-height: 1.7; }
.why-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-shape { position: absolute; opacity: 0.06; }
.geo-shape--triangle {
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid #95D5B6;
  top: 10%; left: 5%;
  transform: rotate(-15deg);
}
.geo-shape--square {
  width: 120px; height: 120px;
  background: #95D5B6;
  top: 60%; right: 8%;
  transform: rotate(30deg);
  border-radius: 12px;
}
.geo-shape--circle {
  width: 200px; height: 200px;
  background: #95D5B6; border-radius: 50%;
  bottom: -60px; left: 30%;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: #2D6A4F;
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape { position: absolute; }
.cta-shape--1 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px; left: -80px;
}
.cta-shape--2 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -60px; right: -40px;
}
.cta-shape--3 {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  top: 20%; right: 15%;
  transform: rotate(45deg);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F7F5EE; margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.1rem; color: rgba(247,245,238,0.8);
  margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #F7F5EE;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { font-size: 1.05rem; color: #4A6B5A; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: grid; gap: 24px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(45,106,79,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #2D6A4F; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #1A3C2A; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #4A6B5A; line-height: 1.6; }
.contact-item a { color: #2D6A4F; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.contact-item a:hover { color: #1A3C2A; }

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(26,60,42,0.08);
  border: 1px solid rgba(45,106,79,0.08);
}
.form-title {
  font-size: 1.5rem; color: #1A3C2A;
  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: 0.85rem; font-weight: 600;
  color: #1A3C2A; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(45,106,79,0.2);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: #1A3C2A;
  background: #F7F5EE;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9BB5A5; }
.form-success {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 32px;
  color: #2D6A4F;
}
.form-success svg { color: #2D6A4F; }
.form-success p { font-size: 1rem; color: #1A3C2A; }

/* ── Footer ── */
.footer {
  background: #1A3C2A;
  padding: 64px 0 0;
  color: rgba(247,245,238,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #95D5B6; margin-bottom: 16px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #F7F5EE; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(247,245,238,0.7); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.footer-contact a:hover { color: #F7F5EE; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(247,245,238,0.4); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: #F7F5EE;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 20px; }
  .primary-nav a { font-size: 1.1rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 24px 60px; }
  .hero-left { padding: 0; order: 1; }
  .hero-right { order: 2; padding: 0; margin-top: 40px; }
  .hero-img-wrap img { height: 360px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-left { padding: 0; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .contact-form-wrap { padding: 24px; }
}
