/* ===== 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;
  color: #1a2e28;
  background: #faf8f4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px; font-weight: 500;
  font-size: 0.938rem; transition: all 0.25s ease; cursor: pointer;
  border: 1.5px solid transparent; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #065f46; color: #faf8f4; border-color: #065f46; }
.btn-primary:hover { background: #047857; border-color: #047857; }
.btn-cream { background: #d4a574; color: #1a2e28; border-color: #d4a574; }
.btn-cream:hover { background: #c4945f; border-color: #c4945f; }
.btn-outline { border-color: #1a2e28; color: #1a2e28; background: transparent; }
.btn-outline:hover { background: #1a2e28; color: #faf8f4; }
.btn-outline-light { border-color: #faf8f4; color: #faf8f4; background: transparent; }
.btn-outline-light:hover { background: #faf8f4; color: #1a2e28; }
.btn-sm { padding: 10px 20px; font-size: 0.813rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #1a2e28; }
.logo-accent { color: #d4a574; }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { font-size: 0.875rem; font-weight: 500; color: #1a2e28; position: relative; transition: color 0.2s; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: #d4a574; transition: width 0.25s ease; }
.nav a:hover { color: #065f46; }
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; margin-left: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: #1a2e28;
  transition: all 0.25s ease; border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(250, 248, 244, 0.98); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: #1a2e28; transition: color 0.2s;
}
.mobile-nav-link:hover { color: #065f46; }
.mobile-call-btn { margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  padding-top: 100px; padding-bottom: 80px;
  background: #faf8f4;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.813rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: #d4a574; margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.75rem, 5vw, 4.5rem); line-height: 1.05;
  margin-bottom: 24px; color: #1a2e28;
}
.text-accent { color: #065f46; font-style: italic; }
.hero-sub {
  font-size: 1.125rem; color: #4a5e58; line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #065f46; line-height: 1; }
.stat-label { font-size: 0.813rem; color: #6b7f78; line-height: 1.4; }
.stat-divider { width: 1px; height: 40px; background: #d4a574; opacity: 0.4; }

.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: 8px; overflow: hidden; }
.hero-img-wrapper img { width: 100%; height: 750px; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px; background: #065f46;
  border-radius: 4px; z-index: -1;
}
.hero-float-card {
  position: absolute; bottom: 32px; left: -40px;
  background: #faf8f4; padding: 16px 24px; border-radius: 6px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 0.875rem; color: #1a2e28;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 0.813rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: #d4a574; margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: #1a2e28; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0; background: #f3efe8;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #faf8f4; padding: 40px 32px; border-radius: 8px;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(6, 95, 70, 0.08); border-color: rgba(6, 95, 70, 0.15); }
.service-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: #065f46; color: #faf8f4; margin-bottom: 24px; }
.service-card h3 { font-size: 1.375rem; margin-bottom: 12px; color: #1a2e28; }
.service-card p { font-size: 0.938rem; color: #4a5e58; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #faf8f4; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-img-main img { width: 100%; height: 640px; object-fit: cover; border-radius: 8px; }
.about-img-float {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 4px solid #faf8f4;
}
.about-img-float img { width: 280px; height: 200px; object-fit: cover; }
.about-content { padding-top: 20px; }
.about-body { font-size: 1.063rem; color: #4a5e58; line-height: 1.8; margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.938rem; color: #1a2e28; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: #f3efe8; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(6, 95, 70, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-overlay span { color: #faf8f4; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #faf8f4; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #f3efe8; padding: 40px 32px; border-radius: 8px;
  border: 1px solid rgba(6, 95, 70, 0.06); position: relative;
}
.testimonial-quote { position: absolute; top: 24px; right: 28px; opacity: 0.3; }
.testimonial-text { font-size: 1rem; color: #4a5e58; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.875rem; color: #065f46; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: #065f46; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-size: clamp(2rem, 4vw, 2.75rem); color: #faf8f4; margin-bottom: 12px; }
.cta-sub { font-size: 1.063rem; color: rgba(250, 248, 244, 0.7); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #f3efe8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-desc { font-size: 1.063rem; color: #4a5e58; line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: start; }
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.813rem; text-transform: uppercase; letter-spacing: 0.1em; color: #065f46; margin-bottom: 4px; }
.contact-item p { font-size: 0.938rem; color: #4a5e58; line-height: 1.6; }
.contact-item a { color: #1a2e28; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #065f46; }

.contact-form-wrap { background: #faf8f4; padding: 48px; border-radius: 8px; border: 1px solid rgba(6, 95, 70, 0.08); }
.contact-form h3 { font-size: 1.75rem; margin-bottom: 32px; color: #1a2e28; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.813rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #1a2e28; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #d4d0c8; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 0.938rem; color: #1a2e28;
  background: #faf8f4; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #065f46; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: #065f46;
}
.form-success.show { display: block; }
.form-success p { margin-top: 12px; font-size: 0.938rem; color: #4a5e58; }

/* ===== MAP ===== */
.map-section { height: 320px; background: #e8e4dc; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ===== FOOTER ===== */
.footer { background: #1a2e28; color: rgba(250, 248, 244, 0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.logo-light .logo-text { color: #faf8f4; }
.footer-brand p { font-size: 0.938rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.813rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: #d4a574; margin-bottom: 20px;
}
.footer-links a { display: block; font-size: 0.938rem; padding: 6px 0; transition: color 0.2s; }
.footer-links a:hover { color: #faf8f4; }
.footer-contact p { font-size: 0.938rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { color: #d4a574; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.813rem; color: rgba(250, 248, 244, 0.4); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-img-wrapper img { height: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-inner .btn { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrapper img { height: 400px; }
  .hero-float-card { left: 16px; bottom: 16px; }
  .hero-img-accent { display: none; }
  .hero-stats { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { right: -16px; bottom: -24px; }
  .about-img-main img { height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-grid { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .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; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
