/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Nunito', system-ui, sans-serif; color: #1a3a2a; background: #FDF8F0; line-height: 1.7; 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; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.2; }
.accent { color: #059669; }

/* ── Section Headers ── */
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #059669; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: #064E3B; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: #4a6b5a; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: #059669; color: #fff; border-color: #059669; }
.btn-primary:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.3); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #064E3B; border-color: #064E3B; }
.btn-ghost-light:hover { background: #064E3B; color: #fff; transform: translateY(-2px); }
.btn-secondary { background: #059669; color: #fff; border: none; padding: 12px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; font-family: 'Nunito', sans-serif; transition: all 0.3s ease; }
.btn-secondary:hover { background: #047857; }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
header.nav-scrolled { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(253,248,240,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(5,150,105,0.1); transition: all 0.3s ease; }
header:not(.nav-scrolled) { background: transparent; border-bottom: none; }
header:not(.nav-scrolled) .nav-logo,
header:not(.nav-scrolled) .nav-links a { color: #fff; }
header:not(.nav-scrolled) .nav-toggle span { background: #fff; }
header:not(.nav-scrolled) .nav-cta { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.5); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 40px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: #064E3B; display: flex; align-items: center; gap: 8px; }
.nav-logo-icon { color: #059669; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: #064E3B; transition: color 0.3s; position: relative; }
.nav-links a:not(.nav-cta):hover { color: #059669; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #059669; transition: width 0.3s; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 10px 24px !important; border-radius: 50px; background: #059669; color: #fff !important; border: 2px solid #059669; font-size: 0.9rem; font-weight: 700; transition: all 0.3s ease !important; }
.nav-cta:hover { background: #047857; border-color: #047857; transform: translateY(-1px); }

/* ── Mobile Nav ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #064E3B; transition: all 0.3s; border-radius: 2px; }
.mobile-nav { position: fixed; inset: 0; z-index: 999; background: rgba(253,248,240,0.98); backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; color: #064E3B; padding: 8px; }
.mobile-nav ul { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #064E3B; font-weight: 500; transition: color 0.3s; }
.mobile-nav a:hover { color: #059669; }
.mobile-nav-cta { font-family: 'Nunito', sans-serif !important; font-size: 1rem !important; background: #059669; color: #fff !important; padding: 14px 36px; border-radius: 50px; display: inline-block; margin-top: 8px; }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.pexels.com/photos/7755473/pexels-photo-7755473.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,78,59,0.82) 0%, rgba(4,120,87,0.72) 50%, rgba(5,150,105,0.6) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 120px 24px 80px; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.hero-headline { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: #fff; font-weight: 400; margin-bottom: 24px; line-height: 1.15; }
.hero-accent { font-style: italic; color: #A7F3D0; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-trust-item svg { color: #A7F3D0; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); animation: float 2s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Services ── */
.services { padding: 120px 0; background: #FDF8F0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 20px; padding: 40px 32px; transition: all 0.4s ease; border: 1px solid rgba(5,150,105,0.08); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #059669, #A7F3D0); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(5,150,105,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, #ECFDF5, #D1FAE5); display: flex; align-items: center; justify-content: center; color: #059669; margin-bottom: 24px; }
.service-card h3 { font-size: 1.4rem; color: #064E3B; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: #4a6b5a; line-height: 1.7; }

/* ── About ── */
.about { padding: 120px 0; background: linear-gradient(180deg, #ECFDF5 0%, #FDF8F0 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(5,150,105,0.15); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -40px; right: -40px; width: 55%; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(5,150,105,0.2); border: 4px solid #FDF8F0; }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { text-align: left; }
.about-content p { font-size: 1rem; color: #4a6b5a; margin-bottom: 16px; line-height: 1.8; }
.about-content p em { color: #059669; font-style: italic; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(5,150,105,0.15); }
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #064E3B; }
.stat-label { font-size: 0.85rem; color: #4a6b5a; }

/* ── Gallery ── */
.gallery { padding: 120px 0; background: #FDF8F0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 240px); gap: 16px; }
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 8; }

/* ── Testimonials ── */
.testimonials { padding: 120px 0; background: #064E3B; }
.testimonials .section-eyebrow { color: #A7F3D0; }
.testimonials .section-title { color: #fff; }
.testimonials .section-title .accent { color: #A7F3D0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px 32px; backdrop-filter: blur(8px); transition: all 0.4s ease; }
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #FBBF24; }
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-size: 0.9rem; font-weight: 700; color: #A7F3D0; }

/* ── CTA ── */
.cta { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: url('https://images.pexels.com/photos/7195811/pexels-photo-7195811.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center/cover no-repeat; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,78,59,0.9) 0%, rgba(5,150,105,0.85) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; }
.cta-eyebrow { color: rgba(255,255,255,0.8) !important; }
.cta-title { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 20px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light { border-color: rgba(6,78,59,0.4); }
.btn-ghost-light:hover { background: #fff; color: #064E3B; border-color: #fff; }

/* ── Contact ── */
.contact { padding: 120px 0; background: #FDF8F0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-desc { font-size: 1rem; color: #4a6b5a; margin-bottom: 40px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #ECFDF5, #D1FAE5); display: flex; align-items: center; justify-content: center; color: #059669; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 700; color: #064E3B; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail span, .contact-detail a { font-size: 0.95rem; color: #4a6b5a; }
.contact-detail a:hover { color: #059669; }
.contact-hours { padding: 20px 24px; background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border-radius: 16px; }
.contact-hours strong { display: block; font-size: 0.85rem; font-weight: 700; color: #064E3B; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-hours p { font-size: 0.95rem; color: #4a6b5a; }

/* ── Contact Form ── */
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 48px; box-shadow: 0 16px 64px rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.08); }
.contact-form-title { font-size: 1.6rem; color: #064E3B; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: #064E3B; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border: 2px solid #E2E8F0; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #1a3a2a; background: #F8FAF9; transition: all 0.3s; outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #059669; background: #fff; box-shadow: 0 0 0 4px rgba(5,150,105,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-note { font-size: 0.8rem; color: #94a3b8; text-align: center; margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success svg { color: #059669; margin: 0 auto 20px; }
.form-success h4 { font-size: 1.5rem; color: #064E3B; margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; color: #4a6b5a; margin-bottom: 24px; }

/* ── Footer ── */
.footer { background: #064E3B; color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo svg { color: #A7F3D0; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-links strong, .footer-contact strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #A7F3D0; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: #A7F3D0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
  .gallery-item--tall { grid-column: span 4; }
  .gallery-item--wide { grid-column: span 8; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { position: relative; bottom: auto; right: auto; width: 70%; margin-top: -40px; margin-left: auto; }
  .about-content .section-title { text-align: center; }
  .about-content p { text-align: center; }
  .about-stats { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .gallery-item { height: 240px; }
  .gallery-item--tall { height: 360px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
  .about-img-accent { width: 80%; }
  .about-stats { flex-direction: column; gap: 20px; align-items: center; }
}
