@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Instrument+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #08111f;
  --navy-mid:   #0f1e33;
  --navy-card:  #122040;
  --navy-border:#1e3354;
  --gold:       #c8a056;
  --gold-light: #ddb96a;
  --gold-dim:   rgba(200,160,86,0.12);
  --text:       #e4ecf7;
  --text-mid:   #9db0cc;
  --text-dim:   #556b8a;
  --white:      #ffffff;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Instrument Sans', system-ui, sans-serif;
  --radius:     4px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(8,17,31,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ELEMENTS */
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.gold-rule.center { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
h3 { font-size: 1.5rem; color: var(--white); }
h4 { font-size: 1.125rem; font-weight: 400; color: var(--gold-light); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold-dim); }

/* CARDS */
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }

/* SECTION HEADER */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header p { font-size: 1.0625rem; color: var(--text-mid); max-width: 620px; margin-top: 1rem; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--navy-border);
}

/* FOOTER */
footer { background: var(--navy-mid); border-top: 1px solid var(--navy-border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.125rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-dim); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
