*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a3d2b;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --warm: #f4a261;
  --warm-dark: #e76f51;
  --cream: #fefae0;
  --cream-dark: #f5eed6;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #7a7a6a;
  --white: #ffffff;
  --section-pad: 90px 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--green-dark); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm-dark); }
.nav-cta {
  background: var(--warm); color: var(--white); border: none;
  padding: 9px 22px; border-radius: 4px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-cta:hover { background: var(--warm-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: 0.3s; }

/* ── PAGE WRAPPER ── */
main { padding-top: 70px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-dark); padding: 80px 8% 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  color: var(--white); position: relative; z-index: 1; margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1rem;
  position: relative; z-index: 1; max-width: 500px; line-height: 1.7;
}
.breadcrumb {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--warm); }
.breadcrumb span { color: var(--warm); }

/* ── SECTION COMMONS ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-mid); font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--green-dark); margin: 12px 0 18px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--warm); color: var(--white); border: none;
  padding: 14px 32px; border-radius: 4px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--warm-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px; border-radius: 4px; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: border-color 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }
.btn-white {
  background: var(--white); color: var(--warm-dark); border: none;
  padding: 14px 36px; border-radius: 4px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: transform 0.15s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green-mid); color: var(--white); border: none;
  padding: 14px 40px; border-radius: 4px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-green:hover { background: var(--green-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--warm); padding: 50px 8%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white);
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 0.95rem; }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-pad); background: var(--cream-dark); padding-left: 8%; padding-right: 8%; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: 8px; padding: 36px;
  border: 1px solid #e8e0c8; position: relative;
}
.quote-mark {
  font-size: 5rem; color: var(--green-pale);
  font-family: 'Playfair Display', serif; line-height: 0.5;
  position: absolute; top: 28px; left: 28px;
}
.stars { color: var(--warm); font-size: 0.85rem; margin-bottom: 2px; }
.testimonial-text {
  font-size: 0.92rem; line-height: 1.75; color: var(--text-mid);
  position: relative; z-index: 1; margin-bottom: 24px; padding-top: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.author-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── FOOTER ── */
footer { }
.footer-two-col { display: grid; grid-template-columns: 1fr 1.6fr; min-height: 280px; }

.footer-left {
  background: var(--cream-dark); padding: 44px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.footer-logo-img { height: 44px; width: auto; object-fit: contain; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a,
.footer-contact-row span {
  font-size: 0.88rem; color: var(--text-mid);
  text-decoration: none; line-height: 1.5;
}
.footer-contact-row a:hover { color: var(--green-mid); }
.footer-social { display: none; }
.social-row { display: none; }
.fsocial-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(45,106,79,0.1); border: 1px solid rgba(45,106,79,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; transition: background 0.2s;
}
.fsocial-btn:hover { background: rgba(45,106,79,0.2); }

.footer-right {
  background: #111a14; padding: 44px 50px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.footer-cta-block { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.footer-cta-block h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--white); line-height: 1.3; max-width: 280px;
}
.footer-talk-btn {
  background: var(--warm); color: var(--white); text-decoration: none;
  padding: 10px 28px; border-radius: 40px; font-size: 0.88rem;
  font-weight: 600; white-space: nowrap; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.footer-talk-btn:hover { background: var(--warm-dark); }
.footer-right-info p {
  font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
}
.footer-nav-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-nav-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--warm); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: var(--warm); }

@media (max-width: 768px) {
  .footer-two-col { grid-template-columns: 1fr; }
  .footer-cta-block { flex-direction: column; align-items: flex-start; }
}

/* ── LOGO IMAGE ── */
.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-full { height: 48px; width: auto; object-fit: contain; }
.logo-img-footer { margin-bottom: 16px; }
.logo-img-footer .logo-full { height: 42px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.22s; opacity: 0; }
.delay-3 { animation-delay: 0.34s; opacity: 0; }
.delay-4 { animation-delay: 0.46s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: var(--white);
    padding: 20px 5%; gap: 1rem; border-top: 1px solid rgba(0,0,0,0.08);
  }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
