*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a2e;
  background: var(--cream);
  overflow-x: hidden;
}
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 600;
  color: var(--navy); line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
  color: var(--gray); font-size: 16px; line-height: 1.8; max-width: 600px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold));
  margin: 20px 0;
}
.btn-primary {
  background: var(--green); color: white; padding: 14px 36px;
  border-radius: 4px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(61,122,46,0.4);
}
.btn-primary:hover {
  background: var(--green-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,122,46,0.5);
}
.btn-outline {
  background: transparent; color: white; padding: 13px 36px;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.3);
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }