:root {
  --navy-980: #020a11;
  --navy-950: #061826;
  --navy-900: #092134;
  --navy-820: #11324a;
  --navy-soft: #173c55;
  --gold-900: #9a7534;
  --gold-700: #b89454;
  --gold-500: #d8bd83;
  --gold-300: #f0dfb8;
  --cream: #faf6ee;
  --cream-2: #f3eadb;
  --white: #ffffff;
  --text: #172331;
  --muted: #657082;
  --line: rgba(9, 33, 52, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow-soft: 0 26px 80px rgba(2, 10, 17, .12);
  --shadow-gold: 0 18px 56px rgba(184, 148, 84, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  letter-spacing: -.01em;
}

body::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-light,
.section-dark {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}

.section-light {
  background:
    radial-gradient(circle at 5% 15%, rgba(216, 189, 131, .18), transparent 34%),
    linear-gradient(180deg, var(--cream), #fffaf2);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(216, 189, 131, .14), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(92, 157, 190, .12), transparent 30%),
    linear-gradient(135deg, var(--navy-980), var(--navy-950) 58%, #0d263b);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-700);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.04;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.65rem, 5.4vw, 3rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 3rem);
}

h3 {
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

p {
  line-height: 1.85;
  color: inherit;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-heading .eyebrow::before {
  display: none;
}

.section-heading p {
  color: var(--muted);
  font-weight: 300;
}

.section-dark .section-heading p {
  color: rgba(255,255,255,.68);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-700), var(--gold-300) 52%, var(--gold-700));
  box-shadow: var(--shadow-gold);
}

.button--ghost {
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}

.button--ghost:hover {
  color: var(--navy-950);
  background: var(--white);
}

.button--glow {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-soft));
  box-shadow: 0 0 0 1px rgba(216,189,131,.32), 0 22px 60px rgba(9,33,52,.22);
}

.center { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .section-light, .section-dark { padding: 84px 0; }
  .container { width: min(100% - 28px, 1180px); }
  h1 { letter-spacing: -.045em; }
}