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

:root {
  --green: #1B5E4B;
  --green-dark: #134239;
  --green-light: #E8F0ED;
  --green-lighter: #F2F7F5;
  --orange: #D4762C;
  --orange-light: #F5DFC8;
  --orange-hover: #BE6825;
  --cream: #FDFAF6;
  --cream-dark: #F5F0EA;
  --ink: #1A1A2E;
  --ink-light: #5A5A72;
  --ink-lighter: #8A8A9E;
  --white: #FFFFFF;
  --line: #E5E0D8;
  --font-h: 'DM Serif Display', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-h); font-weight: 400; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-b); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- LABEL + TITLES ---------- */
.label {
  font-family: var(--font-b); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; display: block;
}
.title { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.subtitle { font-size: 1.05rem; color: var(--ink-light); max-width: 540px; line-height: 1.7; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; border: none;
  border-radius: 50px; cursor: pointer; transition: all 0.3s var(--ease);
  text-decoration: none; line-height: 1;
}
.btn-primary {
  padding: 15px 30px; font-size: 0.95rem;
  background: var(--orange); color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,118,44,0.3);
}
.btn-outline {
  padding: 14px 26px; font-size: 0.9rem;
  background: transparent; color: var(--ink);
  border: 2px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-1px);
}
.btn-white {
  padding: 15px 30px; font-size: 0.95rem;
  background: var(--white); color: var(--green);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ---------- REVEAL ANIMATION ---------- */
.r { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.r.v { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.07s; } .rd2 { transition-delay: 0.14s; }
.rd3 { transition-delay: 0.21s; } .rd4 { transition-delay: 0.28s; }
.rd5 { transition-delay: 0.35s; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(1.5);opacity:0} }
@keyframes flow { to{stroke-dashoffset:-20} }

/* =========================================================
   NAVBAR
========================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s var(--ease);
}
nav.stuck {
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding: 10px 0;
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-h); font-size: 1.2rem; color: var(--green);
  display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 34px; height: 34px; background: var(--green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; stroke: var(--white); }
.logo b { font-family: var(--font-b); font-weight: 700; color: var(--orange); font-size: 0.82rem; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-light);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: var(--white); }
.nav-links .btn:hover { color: var(--white); }
.burger { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0; background: var(--cream);
  z-index: 200; flex-direction: column; padding: 80px 24px 40px;
}
.mob-nav.open { display: flex; }
.mob-close { position: absolute; top: 18px; right: 20px; background: none; border: none; cursor: pointer; color: var(--ink); }
.mob-nav a { font-size: 1.1rem; font-weight: 500; padding: 16px 0; border-bottom: 1px solid var(--line); }

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--ink); color: rgba(255,255,255,.55); padding: 32px 0;
}
.foot-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .logo { color: var(--white); font-size: 1rem; }
footer .logo-mark { background: rgba(255,255,255,.1); }
.foot-links { display: flex; gap: 24px; list-style: none; }
.foot-links a { font-size: 0.82rem; transition: color 0.25s; }
.foot-links a:hover { color: var(--white); }
.foot-bottom {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 12px; font-size: 0.75rem;
}
.foot-social a {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all 0.25s;
}
.foot-social a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.foot-social a svg { width: 15px; height: 15px; }

/* =========================================================
   RESPONSIVE (shared)
========================================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
}
