*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9922a;
  --gold-light: #f5e6c8;
  --dark: #1c1c1c;
  --mid: #555;
  --muted: #888;
  --border: #ddd;
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2.5rem;
  height: 60px;
}
.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 13px !important;
  border-radius: 4px;
}
.nav-cta:hover { background: #b07d20 !important; color: #fff !important; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
section.alt { background: var(--bg-alt); }

/* HEADINGS */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.subtext { color: var(--mid); font-size: 15px; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 14px; font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b07d20; }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 15px; }

/* FORM ELEMENTS */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 0.4rem; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; }

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { gap: 0.75rem; }
  .nav-links li:not(:last-child) { display: none; }
  section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
