/* ===== 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: #1a1a1a;
  background: #FAFAF5;
  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, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1B4332;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: #555;
  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;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: #D4A843;
  color: #1a1a1a;
  border-color: #D4A843;
}
.btn-gold:hover { background: #c4952f; border-color: #c4952f; transform: translateY(-2px); }
.btn-green {
  background: #1B4332;
  color: #FAFAF5;
  border-color: #1B4332;
}
.btn-green:hover { background: #2d6a4f; border-color: #2d6a4f; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; padding: 14px 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(27, 67, 50, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #FAFAF5;
}
.nav-logo-icon { width: 28px; height: 28px; color: #D4A843; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  color: rgba(250, 250, 245, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: #D4A843; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAFAF5;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f14 0%, #1B4332 30%, #2d6a4f 60%, #40916c 100%);
  padding: 120px 24px 80px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(64, 145, 108, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: #FAFAF5;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: #D4A843;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(250, 250, 245, 0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 80px;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
  padding-top: 40px;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4A843;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 250, 245, 0.7);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(212, 168, 67, 0.3);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #FAFAF5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1B4332, #2d6a4f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  color: #D4A843;
}
.service-card h3 {
  font-size: 1.25rem;
  color: #1B4332;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #f0f4ef;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 67, 50, 0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.2);
  border: 4px solid #f0f4ef;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { text-align: left; }
.about-content > p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
}
.about-feature svg {
  width: 20px;
  height: 20px;
  color: #D4A843;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #FAFAF5;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { aspect-ratio: 4/3.5; }
.gallery-item:nth-child(3) { aspect-ratio: 4/3.5; }
.gallery-item:nth-child(4) { aspect-ratio: 4/5; }
.gallery-item:nth-child(5) { aspect-ratio: 4/3.5; }
.gallery-item:nth-child(6) { aspect-ratio: 4/5; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B4332 0%, #2d6a4f 100%);
  text-align: center;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #FAFAF5;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(250, 250, 245, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #f0f4ef;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: #1B4332;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #D4A843;
}
.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1B4332;
  margin-bottom: 6px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}
.contact-item a:hover { color: #D4A843; }
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(27, 67, 50, 0.08);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: #1B4332;
  margin-bottom: 24px;
}
.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: #1B4332;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0d8d2;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #FAFAF5;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B4332;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: #d4edda;
  color: #1B4332;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1f14;
  color: rgba(250, 250, 245, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #FAFAF5;
  margin-bottom: 16px;
}
.footer-logo svg { width: 28px; height: 28px; color: #D4A843; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4A843;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a,
.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(250, 250, 245, 0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #D4A843; }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 245, 0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(250, 250, 245, 0.4); }

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(27, 67, 50, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.btn) { font-size: 1.05rem; color: rgba(250,250,245,0.85); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 16px; bottom: -24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { aspect-ratio: 4/3.5; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
