@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --forest: #1a4d45;
  --forest-light: #2a6b61;
  --forest-dark: #112e29;
  --forest-pale: #eaf5f2;
  --forest-mid: #b8ddd7;
  --gold: #b8963e;
  --gold-light: #d4b06a;
  --cream: #faf8f4;
  --cream-dark: #f2ede5;
  --white: #ffffff;
  --text-dark: #1a1a18;
  --text-mid: #4a4a44;
  --text-light: #8a8a82;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,77,69,0.1);
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500 !important;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--forest-light) !important; transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,244,0.99);
  backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 2rem 4rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.85rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(26,77,69,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--forest); }
.mobile-menu .mobile-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 1rem 2.5rem !important;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  margin-top: 1.5rem;
  border-bottom: none !important;
  width: auto !important;
  min-width: 260px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.22s;
  box-shadow: 0 4px 24px rgba(26,77,69,0.22);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,77,69,0.3); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--forest);
  transition: all 0.22s;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--forest);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.22s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── SHARED ── */
.section-tag {
  display: inline-block;
  background: var(--forest-pale);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--forest-mid);
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
h2.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.78;
  font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* ── WHATSAPP SCREENSHOT ── */
.wa-screenshot {
  background: #ece5dd;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.wa-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a1a18;
}
.wa-meta {
  font-size: 0.7rem;
  color: #667781;
}
.wa-bubble {
  background: var(--white);
  border-radius: 0 10px 10px 10px;
  padding: 0.65rem 0.85rem 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  max-width: 92%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wa-bubble:first-of-type { border-radius: 0 10px 10px 10px; }
.wa-bubble p {
  font-size: 0.88rem;
  color: #1a1a18;
  line-height: 1.5;
  margin: 0;
}
.wa-time {
  font-size: 0.65rem;
  color: #667781;
  text-align: right;
  margin-top: 0.2rem;
}
.wa-label {
  font-size: 0.68rem;
  color: #667781;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
