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

:root {
  --green-900: #173c33;
  --green-800: #214d42;
  --green-700: #2e6153;
  --sage: #91a990;
  --sand: #d7c6a5;
  --cream: #f7f4ec;
  --off: #fffdf8;
  --text: #23332f;
  --muted: #6d7a76;
  --line: #dfe5df;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23,60,51,.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.brand strong {
  display: block;
  letter-spacing: .16em;
  font-size: 14px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav a:hover {
  color: var(--green-700);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green-800);
  color: white;
  font-weight: 700;
  border: 1px solid var(--green-800);
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--green-900);
}

.btn-small {
  padding: 11px 18px;
  font-size: 13px;
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
}

.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 80% 25%, rgba(145,169,144,.22), transparent 28%),
    linear-gradient(180deg, var(--off), var(--cream));
}

.hero-grid,
.split,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, blockquote {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(46px, 6vw, 76px);
  max-width: 820px;
  color: var(--green-900);
}

.hero-copy > p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-highlights {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-highlights div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.hero-visual {
  min-height: 520px;
}

.leaf-card {
  height: 520px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-900), var(--green-700));
  display: grid;
  place-items: center;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(23,60,51,.2);
}

.leaf {
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: rgba(255,255,255,.12);
  transform: rotate(28deg);
}

.leaf-1 { width: 220px; height: 110px; top: 60px; right: -55px; }
.leaf-2 { width: 260px; height: 130px; bottom: 40px; left: -80px; }
.leaf-3 { width: 150px; height: 75px; top: 170px; left: 30px; }

.visual-center {
  position: relative;
  z-index: 2;
  color: white;
}

.visual-center .mini {
  letter-spacing: .3em;
  font-size: 12px;
}

.visual-center h2 {
  margin-top: 15px;
  font-size: 42px;
}

.section {
  padding: 90px 0;
}

.soft {
  background: var(--cream);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--green-900);
}

.text-block p + p {
  margin-top: 18px;
}

.text-block,
.section-heading p,
.profile p,
.contact-grid p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading p {
  margin-top: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  min-height: 280px;
}

.card-num {
  font-size: 12px;
  color: var(--sage);
  letter-spacing: .15em;
}

.card h3 {
  font-size: 27px;
  margin: 26px 0 14px;
  color: var(--green-900);
}

.card p {
  color: var(--muted);
}

.accent-card {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}

.accent-card h3,
.accent-card p {
  color: white;
}

.profile {
  background: #edf1eb;
}

.profile-grid {
  grid-template-columns: .75fr 1.25fr;
}

.photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #c5d1c5, #829a86);
  color: white;
  font-size: 76px;
  font-family: "Playfair Display", serif;
}

.profile .lead {
  color: var(--green-700);
  font-weight: 700;
  margin: 18px 0;
}

.profile p + p {
  margin-top: 13px;
}

.quote-section {
  background: var(--green-900);
}

.quote-box {
  max-width: 900px;
  text-align: center;
}

.light {
  color: #dbe7dc;
}

blockquote {
  color: white;
  font-size: clamp(34px, 4vw, 56px);
}

.contact-grid {
  align-items: start;
}

.contact-list {
  margin-top: 30px;
  display: grid;
  gap: 22px;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.contact-list strong {
  margin-top: 4px;
}

.contact-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 34px;
  border: 1px solid var(--line);
}

.contact-card h3 {
  font-size: 32px;
  color: var(--green-900);
}

.contact-card p {
  margin: 12px 0 22px;
}

.full {
  width: 100%;
}

.note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--green-800);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  z-index: 40;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-wrap strong,
.footer-wrap span {
  display: block;
}

.footer-wrap strong {
  color: var(--green-900);
  letter-spacing: .14em;
}

@media (max-width: 900px) {
  .nav, .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    padding: 20px;
    background: var(--off);
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .split,
  .profile-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual {
    min-height: auto;
  }

  .leaf-card {
    height: 420px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 46px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

