/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald:    #065f46;
  --emerald-deep:#044d38;
  --emerald-light:#0d7a56;
  --cream:      #faf6f0;
  --cream-dark: #f0e8d8;
  --gold:       #d4a574;
  --gold-light: #e0b98f;
  --charcoal:   #1a1a1a;
  --stone:      #3a3a3a;
  --stone-light:#6b6b6b;
  --white:      #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--stone);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--charcoal); }
em { font-style: italic; color: var(--emerald); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-sans); font-weight: 500; font-size: 0.938rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--emerald); color: var(--white); border-color: var(--emerald);
}
.btn--primary:hover { background: var(--emerald-deep); border-color: var(--emerald-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--dark {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
.btn--dark:hover { background: var(--stone); border-color: var(--stone); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold {
  background: var(--gold); color: var(--charcoal); border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { border-color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.01em; }
.logo-text em { font-style: italic; color: var(--emerald); }
.logo--light .logo-text { color: var(--white); }
.logo--light .logo-text em { color: var(--gold); }

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--stone); transition: var(--transition); position: relative; }
.nav a:not(.btn)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--emerald); transition: var(--transition); }
.nav a:not(.btn):hover { color: var(--emerald); }
.nav a:not(.btn):hover::after { width: 100%; }
.nav .btn--sm { margin-left: 8px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--charcoal); padding: 8px; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,95,70,0.88) 0%, rgba(4,77,56,0.82) 50%, rgba(26,26,26,0.75) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-card {
  max-width: 580px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 48px 44px;
}
.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Floating Stat Cards */
.hero-stats {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: none;
}
.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px;
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
}
.stat-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--emerald); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--stone-light); font-weight: 500; }
.stat-card svg { color: var(--gold); margin-bottom: 4px; }

.stat-card--1 { top: 18%; right: 6%; animation-delay: 0s; }
.stat-card--2 { top: 52%; right: 3%; animation-delay: -2s; }
.stat-card--3 { bottom: 18%; right: 10%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Section Shared ─────────────────────────────────── */
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--stone-light); max-width: 560px; line-height: 1.8; }
.section-desc--light { color: rgba(255,255,255,0.75); }

/* ── Services ───────────────────────────────────────── */
.services { padding: 120px 0; }
.services .section-label, .services .section-title, .services .section-desc { text-align: center; }
.services .section-desc { margin: 0 auto 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid rgba(6,95,70,0.06);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: var(--radius); background: rgba(6,95,70,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.938rem; color: var(--stone-light); line-height: 1.7; }

/* ── About ──────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); width: 100%; height: 700px; object-fit: cover; }
.about-accent {
  position: absolute; bottom: -24px; right: -24px; width: 200px; height: 200px;
  background: var(--emerald); border-radius: var(--radius-lg); z-index: -1;
  opacity: 0.12;
}
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 28px; }
.about-content .lead { font-size: 1.05rem; color: var(--stone); margin-bottom: 20px; line-height: 1.8; }
.about-content > p { font-size: 0.938rem; color: var(--stone-light); margin-bottom: 32px; line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.938rem; color: var(--stone); }
.about-list svg { flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ── Why Us ─────────────────────────────────────────── */
.why { padding: 120px 0; background: var(--emerald); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(212,165,116,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.why-inner { position: relative; z-index: 1; }
.why-text { text-align: center; margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.938rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(6,95,70,0.06);
  border-bottom: 1px solid rgba(6,95,70,0.06);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text { flex: 1; min-width: 280px; }
.cta-text .section-title { margin-bottom: 16px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────────── */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-info .section-desc { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.contact-item dt { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.contact-item dd { padding-left: 28px; font-size: 0.938rem; color: var(--stone-light); line-height: 1.7; }
.contact-item a { color: var(--emerald); transition: var(--transition); }
.contact-item a:hover { color: var(--emerald-light); text-decoration: underline; }
.contact-info .btn { margin-top: 8px; }

/* Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 48px;
  border: 1px solid rgba(6,95,70,0.06); box-shadow: var(--shadow);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-sub { font-size: 0.9rem; color: var(--stone-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--stone); }
.form-group input, .form-group textarea {
  font-family: var(--font-sans); font-size: 0.938rem; color: var(--charcoal);
  background: var(--cream); border: 1px solid rgba(6,95,70,0.12);
  border-radius: var(--radius); padding: 12px 16px; width: 100%;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--emerald); background: var(--white); box-shadow: 0 0 0 3px rgba(6,95,70,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--stone-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--stone-light); margin-top: 12px; text-align: center; }
.form-success {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding: 16px 20px; background: rgba(6,95,70,0.06); border-radius: var(--radius);
  font-size: 0.938rem; color: var(--emerald); font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: var(--gold); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Mobile Nav ─────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }
.nav.mobile-open { transform: translateX(100%); }

/* ── Responsive ─────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-stats { display: block; }
}

@media (max-width: 1023px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
    background: var(--cream); z-index: 1001;
    padding: 100px 32px 32px;
    transform: translateX(100%); transition: var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav.active { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav a:not(.btn) { font-size: 1.1rem; }
  .nav .btn--sm { margin-left: 0; margin-top: 16px; }

  .hero { padding: 120px 0 100px; }
  .hero-card { padding: 36px 28px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 450px; }
  .about-content .section-label, .about-content .section-title { text-align: center; }
  .about-content > p, .about-content .lead { text-align: center; }
  .about-list { align-items: center; }
  .about-content .btn { display: inline-flex; }

  .why-grid { grid-template-columns: 1fr; max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-label, .contact-info .section-title { text-align: center; }
  .contact-info .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .contact-info .btn { display: inline-flex; margin-left: auto; margin-right: auto; }
  .contact-form-wrap { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}

/* ── Scroll Animations ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
