/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2e2a;
  background: #faf8f4;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: 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; color: #064e3b; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: #374151;
  max-width: 580px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-emerald {
  background: #065f46;
  color: #faf8f4;
  border: 2px solid #065f46;
}
.btn-emerald:hover { background: #064e3b; border-color: #064e3b; transform: translateY(-1px); }
.btn-cream {
  background: #d4c5a9;
  color: #1a2e2a;
  border: 2px solid #d4c5a9;
}
.btn-cream:hover { background: #c4b496; border-color: #c4b496; transform: translateY(-1px); }
.btn-outline-cream {
  background: transparent;
  color: #faf8f4;
  border: 2px solid rgba(250,248,244,0.5);
}
.btn-outline-cream:hover { background: rgba(250,248,244,0.1); border-color: #faf8f4; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(6,78,59,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #064e3b;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: #065f46;
  color: #d4c5a9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:not(.btn):hover { color: #065f46; }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #065f46;
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #1a2e2a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #faf8f4 0%, #f0ebe0 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #064e3b;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
}
.trust-sep {
  width: 4px;
  height: 4px;
  background: #d4c5a9;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(6,78,59,0.15);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #d4c5a9;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 24px;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid #e8e4d9;
  background: #faf8f4;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: #065f46;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6,78,59,0.1);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: #e8f5ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 24px;
  background: #faf8f4;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(6,78,59,0.12); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6,78,59,0.15);
  border: 4px solid #faf8f4;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #065f46;
  color: #faf8f4;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(6,78,59,0.2);
}
.about-experience .exp-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-experience .exp-label { font-size: 12px; opacity: 0.85; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1a2e2a;
}
.value-item svg { color: #065f46; flex-shrink: 0; }

/* ─── APPROACH ─── */
.approach {
  padding: 100px 24px;
  background: #064e3b;
  color: #faf8f4;
}
.approach-header { text-align: center; margin-bottom: 60px; }
.approach-header .section-eyebrow { color: #d4c5a9; }
.approach-header .section-title { color: #faf8f4; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.step { text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: rgba(212,197,169,0.3);
}
.step-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(212,197,169,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #faf8f4;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: rgba(250,248,244,0.7);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 24px;
  background: #d4c5a9;
  text-align: center;
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  color: #064e3b;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 17px;
  color: #374151;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ─── CONTACT ─── */
.contact {
  padding: 100px 24px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg { color: #065f46; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 15px;
  color: #374151;
}
.contact-item a:hover { color: #065f46; text-decoration: underline; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(6,78,59,0.1); }
.contact-form-wrap {
  background: #faf8f4;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e8e4d9;
}
.form-title {
  font-size: 24px;
  color: #064e3b;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1a2e2a;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1cdc3;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a2e2a;
  background: #fff;
  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: #065f46;
  box-shadow: 0 0 0 3px rgba(6,95,70,0.1);
}
.form-group textarea { resize: vertical; }
.form-privacy {
  font-size: 12px;
  color: #6b7280;
  margin-top: 16px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: #065f46;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h3 {
  font-size: 24px;
  color: #065f46;
  margin-bottom: 8px;
}
.form-success p { font-size: 15px; color: #374151; }

/* ─── FOOTER ─── */
.site-footer {
  background: #064e3b;
  color: rgba(250,248,244,0.8);
  padding: 60px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-contact strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4c5a9;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(250,248,244,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: #faf8f4; }
.footer-contact address { font-style: normal; font-size: 14px; line-height: 1.8; }
.footer-contact a { color: rgba(250,248,244,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #faf8f4; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,244,0.1);
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(250,248,244,0.5);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(6,95,70,0.1);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 24px rgba(6,78,59,0.1);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a:not(.btn) { font-size: 16px; padding: 8px 0; }
  .main-nav .btn { text-align: center; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .about-img-secondary { right: 0; bottom: -20px; }
  .about-experience { left: 0; top: -12px; }
  .contact-form-wrap { padding: 24px; }
}
