:root {
  --bg: #0b0d10;
  --bg-raised: #12151a;
  --bg-alt: #0f1216;
  --text: #eceae6;
  --text-muted: #9ea1a8;
  --accent: #c9a24b;
  --border: #23262c;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: inherit; }

.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(201, 162, 75, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand span { color: var(--accent); }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:first-child { margin-left: 0; }
.nav-links a:hover { color: var(--text); }

.nav-links a.nav-cta {
  background: var(--accent);
  color: #12151a;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-links a.nav-cta:hover {
  color: #12151a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: #fff;
}

.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #12151a;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.25);
}

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section.alt {
  background: var(--bg-alt);
  max-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.alt > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  color: #fff;
  margin: 0 0 2rem;
}

.section p {
  color: var(--text-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  background: var(--bg-raised);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card-icon {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.card h3 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.quals {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.quals li {
  display: flex;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.quals-year {
  flex: 0 0 auto;
  width: 5.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding-top: 0.15rem;
}

.quals li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
}

.quals-sub {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.contact-form {
  margin-top: 2rem;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  nav { flex-direction: column; text-align: center; }
  .nav-links a { margin: 0 0.6rem; }
  .form-row { grid-template-columns: 1fr; }
}
