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

:root {
  --green: #1B5E3B;
  --green-mid: #2D7A52;
  --green-light: #E8F5EE;
  --green-border: #B8DFC9;
  --gold: #C9973A;
  --gold-light: #FBF4E8;
  --cream: #FAF8F4;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --border: #E5E0D8;
  --white: #FFFFFF;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green);
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--white);
}

footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--green); }

/* SHARED BUTTONS */
.btn-primary {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: var(--green-mid); }
.btn-primary:active { transform: scale(0.99); }
.btn-primary:disabled { background: #999; cursor: not-allowed; }

/* RESPONSIVE BASE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; }
  .dots span { animation: none; }
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 480px) {
  nav { padding: 0.875rem 1.25rem; }

  /* Larger tap targets */
  .btn-primary { padding: 1rem 1.5rem; font-size: 1rem; min-height: 48px; }
  .btn-ghost { padding: 0.5rem 1rem; min-height: 40px; }

  footer { padding: 1.5rem 1.25rem; }
}