/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { 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; }
address { font-style: normal; }

/* ─── UTILITY ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D97706;
  margin-bottom: 12px;
}
.section__eyebrow--light { color: rgba(255,255,255,0.7); }
.section__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #064E3B;
  margin-bottom: 20px;
}
.section__heading--light { color: #fff; }
.section__sub {
  font-size: 1.1rem;
  color: #4B5563;
  max-width: 640px;
  line-height: 1.7;
}
.section__sub.light { color: rgba(255,255,255,0.8); }
.section__header.center { text-align: center; margin-bottom: 56px; }
.section__header.center .section__sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #D97706;
  color: #fff;
  border-color: #D97706;
}
.btn--primary:hover { background: #B45309; border-color: #B45306; }
.btn--ghost {
  background: transparent;
  color: #064E3B;
  border-color: #064E3B;
}
.btn--ghost:hover { background: #064E3B; color: #fff; }
.btn--gold {
  background: #D97706;
  color: #fff;
  border-color: #D97706;
}
.btn--gold:hover { background: #B45309; border-color: #B45309; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,252,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,78,59,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(6,78,59,0.1); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #064E3B;
  flex-shrink: 0;
}
.nav__logo { width: 36px; height: 36px; }
.nav__name { font-family: 'Playfair Display', serif; letter-spacing: 0.02em; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D97706;
  transition: width 0.2s;
}
.nav__menu a:hover { color: #064E3B; }
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
  background: #064E3B;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: #166534; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #064E3B;
}
.nav__icon { width: 24px; height: 24px; }

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdfcf8 0%, #f0fdf4 50%, #fef9ee 100%);
  overflow: hidden;
}
.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D97706;
  margin-bottom: 20px;
  background: rgba(217,119,6,0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #064E3B;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #064E3B;
}
.hero__label { font-size: 0.8rem; color: #6B7280; }
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(6,78,59,0.2);
}
.hero__image-wrap { position: relative; }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(6,78,59,0.15);
}
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(6,78,59,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #064E3B;
}
.hero__badge svg { width: 20px; height: 20px; color: #D97706; flex-shrink: 0; }

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__visual { position: relative; }
.about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(6,78,59,0.12);
}
.about__callout {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #064E3B;
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(6,78,59,0.25);
}
.about__callout svg {
  width: 28px;
  height: 28px;
  color: #D97706;
  flex-shrink: 0;
}
.about__callout strong { display: block; font-size: 1rem; }
.about__callout span { font-size: 0.8rem; opacity: 0.8; }
.about__text .section__sub { margin-bottom: 24px; }
.about__list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #374151;
}
.about__list svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── SERVICES ─── */
.bg-emerald {
  background: #064E3B;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(217,119,6,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg {
  width: 26px;
  height: 26px;
  color: #D97706;
}
.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ─── WHY ─── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__content .section__sub { margin-bottom: 40px; }
.why__items { display: flex; flex-direction: column; gap: 32px; }
.why__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(6,78,59,0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.why__item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #064E3B;
  margin-bottom: 6px;
}
.why__item p {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.7;
}
.why__img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(6,78,59,0.12);
}

/* ─── TESTIMONIALS ─── */
.bg-cream-100 { background: #fef9ee; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(6,78,59,0.06);
  border: 1px solid rgba(6,78,59,0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6,78,59,0.1);
}
.quote__mark {
  width: 32px;
  height: 32px;
  color: #D97706;
  opacity: 0.4;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.quote p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(6,78,59,0.08);
  padding-top: 16px;
}
.quote__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: #064E3B;
}
.quote__detail {
  font-size: 0.8rem;
  color: #6B7280;
}

/* ─── CTA ─── */
.cta {
  background: linear-gradient(135deg, #064E3B 0%, #166534 100%);
}
.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__sub { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail svg {
  width: 24px;
  height: 24px;
  color: #D97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 4px;
}
.contact__detail dd {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}
.contact__detail a {
  color: #064E3B;
  font-weight: 500;
  transition: color 0.2s;
}
.contact__detail a:hover { color: #D97706; }
.contact__form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(6,78,59,0.08);
  border: 1px solid rgba(6,78,59,0.06);
}
.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #064E3B;
  margin-bottom: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1F2937;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: #166534;
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #9CA3AF; }
.form__note {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 12px;
  text-align: center;
}
.form__success {
  text-align: center;
  padding: 40px 20px;
}
.form__success svg {
  width: 48px;
  height: 48px;
  color: #16a34a;
  margin: 0 auto 16px;
}
.form__success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #064E3B;
  margin-bottom: 8px;
}
.form__success p {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  background: #022c22;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer__logo-icon { width: 36px; height: 36px; }
.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.6);
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__col a:hover { color: #D97706; }
.footer__col address { font-size: 0.9rem; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero__grid,
  .about__grid,
  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__image-wrap { order: -1; max-width: 560px; margin: 0 auto; }
  .hero__image { height: 400px; }
  .about__callout { right: 16px; }
  .why__img { height: 480px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,252,248,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 16px 32px rgba(6,78,59,0.1);
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__toggle { display: block; }
  .services__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cta__inner { flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
