/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  --green-deep:    #1a3a2a;
  --green-mid:     #2d5a3f;
  --green-light:   #e8f0eb;
  --green-accent:  #3d7a5a;

  --gold:          #d4a843;
  --gold-light:    #e8c66a;
  --gold-dark:     #b8922e;

  --cream:         #f5f0e8;
  --cream-light:   #faf7f2;
  --cream-dark:    #e8e0d0;

  --text-dark:     #1a2a1f;
  --text-mid:      #4a5a4f;
  --text-light:    #f5f0e8;

  --font-display-sans: 'Manrope', sans-serif;
  --font-display-serif: 'Cormorant Garamond', serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 100px;

  --transition: 250ms ease-out;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-green { color: var(--green-deep); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.heading-sans {
  font-family: var(--font-display-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-serif {
  font-family: var(--font-display-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-display-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary:active {
  background: var(--gold-dark);
  transform: translateY(0);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green-accent);
  font-family: var(--font-display-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  padding: 10px 24px;
  border: 1.5px solid var(--green-accent);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--green-accent);
  color: var(--cream);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-accent);
  color: var(--cream);
  font-family: var(--font-display-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

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