/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.title-accent { color: #2D5A3D; font-style: italic; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D5A3D;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(45, 90, 61, 0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2D5A3D;
}
.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: #2D5A3D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F0E8;
}
.nav-brand-text { white-space: nowrap; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #2D5A3D; background: rgba(45, 90, 61, 0.06); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 10px 20px;
  background: #2D5A3D;
  color: #F5F0E8;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #244a32; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #2D5A3D;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #2D5A3D;
  color: #F5F0E8;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25);
}
.btn-primary:hover { background: #244a32; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45, 90, 61, 0.3); }
.btn-outline {
  background: transparent;
  color: #2D5A3D;
  border: 2px solid #2D5A3D;
}
.btn-outline:hover { background: #2D5A3D; color: #F5F0E8; }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
  background: linear-gradient(160deg, #FAFAF6 0%, #f0f5f1 50%, #eaf3e4 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D5A3D;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #2D5A3D;
  border-radius: 2px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D5A3D;
}
.stat-label { font-size: 0.82rem; color: #777; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(45, 90, 61, 0.2);
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(45, 90, 61, 0.12); }
.hero-img-main { width: 100%; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 600/750; }
.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.18);
  border: 4px solid #F5F0E8;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D5A3D;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: #F5F0E8;
}
.services .section-header { text-align: center; margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(45, 90, 61, 0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45, 90, 61, 0.1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eaf3e4, #d5e8cc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5A3D;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #666;
  margin-bottom: 20px;
}
.service-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.08);
  color: #2D5A3D;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ─── About ─── */
.about { padding: 100px 0; background: #FAFAF6; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 90, 61, 0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 560/640; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.15);
  border: 4px solid #FAFAF6;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: center; gap: 14px; }
.value-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #eaf3e4, #d5e8cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5A3D;
  flex-shrink: 0;
}
.value-item span { font-size: 0.95rem; color: #444; }

/* ─── Gallery ─── */
.gallery { padding: 100px 0; background: #F5F0E8; }
.gallery .section-header { text-align: center; margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--tall img { aspect-ratio: 480/640; }
.gallery-item--wide { grid-column: span 6; }
.gallery-item--wide img { aspect-ratio: 800/300; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img { aspect-ratio: 480/300; }

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2D5A3D 0%, #1c3a27 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-title .title-accent { color: #8fbf96; }
.cta-desc { font-size: 1.1rem; line-height: 1.7; color: rgba(245, 240, 232, 0.8); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-ghost:hover { background: rgba(255,255,255,0.3); }
.cta-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
}

/* ─── Contact ─── */
.contact { padding: 100px 0; background: #FAFAF6; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #eaf3e4, #d5e8cc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5A3D;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D5A3D;
  margin-bottom: 4px;
}
.contact-value { font-size: 1rem; color: #444; line-height: 1.6; }
.contact-link { color: #2D5A3D; font-weight: 600; transition: color 0.2s; }
.contact-link:hover { color: #629a6e; }
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.07);
  border: 1px solid rgba(45, 90, 61, 0.06);
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.9rem; color: #888; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #333;
  background: #FAFAF6;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: #2D5A3D; box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1); }
.form-input::placeholder { color: #bbb; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #2D5A3D;
}
.form-success svg { color: #2D5A3D; }
.form-success p { font-size: 1rem; font-weight: 500; }

/* ─── Map ─── */
.map-section { height: 320px; background: #e5e5e5; }
.map-section iframe { width: 100%; height: 100%; }

/* ─── Footer ─── */
.footer {
  background: #142a1c;
  color: rgba(245, 240, 232, 0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.footer-brand { margin-bottom: 0; }
.footer-brand .nav-brand { color: #F5F0E8; margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fbf96;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #F5F0E8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-column: span 6; grid-row: span 1; }
  .gallery-item--tall img { aspect-ratio: auto; height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 246, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; justify-content: center; }

  .hero { padding: 100px 24px 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-float { left: 10px; bottom: -20px; }
  .hero-badge { right: 10px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-wave { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-img-secondary { right: 10px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: span 2; }
  .gallery-item--tall img { aspect-ratio: 16/9; height: auto; }
  .gallery-item--wide { grid-column: span 2; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-circle { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall img { aspect-ratio: 4/3; height: auto; }
  .gallery-item--wide img { aspect-ratio: 16/9; height: auto; }
}
