@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lora:ital,wght@0,400;1,400&display=swap');

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

:root {
  --cream: #FFF8F0;
  --warm-white: #FFFCF8;
  --peach: #FF6B4A;
  --peach-light: #FFE8E2;
  --peach-dark: #E5512F;
  --green: #2ECC8F;
  --green-light: #E0F7EE;
  --yellow: #FFD166;
  --yellow-light: #FFF5D6;
  --ink: #1A1208;
  --ink-mid: #5A4A3A;
  --ink-light: #9A8A7A;
  --border: #EDE0D4;
  --shadow: rgba(255, 107, 74, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,248,240,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 26px; font-weight: 900; color: var(--peach);
  letter-spacing: -0.5px; text-decoration: none;
}
.logo span { color: var(--ink); }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  color: var(--ink-mid); text-decoration: none; font-weight: 600;
  font-size: 15px; margin-left: 32px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--peach); }
.nav-links a.active { color: var(--peach); }
.nav-cta {
  background: var(--peach) !important; color: white !important;
  padding: 10px 22px; border-radius: 100px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--peach-dark) !important; transform: translateY(-1px); }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links a { margin-left: 16px; font-size: 14px; }
}

/* FOOTER */
footer {
  background: var(--ink); color: var(--cream);
  padding: 60px 48px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
}
.footer-logo { font-size: 28px; font-weight: 900; color: var(--peach); }
.footer-tagline { font-size: 14px; color: var(--ink-light); margin-top: 6px; font-weight: 400; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--ink-light); text-decoration: none;
  font-size: 14px; font-weight: 600; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 32px;
  font-size: 13px; color: var(--ink-light);
}

/* COMMON */
.section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  color: var(--peach); text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.1; color: var(--ink); max-width: 600px;
}
.section-title em { font-family: 'Lora', serif; font-style: italic; color: var(--peach); }

.btn-primary {
  background: var(--peach); color: white;
  font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800;
  padding: 16px 36px; border-radius: 100px; border: none;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 24px var(--shadow);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--peach-dark); transform: translateY(-2px); }

.btn-secondary {
  background: white; color: var(--ink);
  font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 700;
  padding: 16px 32px; border-radius: 100px;
  border: 2px solid var(--border); cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--peach); color: var(--peach); transform: translateY(-2px); }

.btn-full {
  width: 100%; padding: 17px; border-radius: 14px;
  font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-full.primary { background: var(--peach); color: white; }
.btn-full.primary:hover { background: var(--peach-dark); transform: translateY(-1px); }
.btn-full.green { background: var(--green); color: white; }
.btn-full.green:hover { filter: brightness(0.92); transform: translateY(-1px); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
