*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #12264a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --cream: #faf7f1;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --border: rgba(201,168,76,0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 500 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); margin: 4px 0; transition: 0.2s; }
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  padding: 1.5rem 2rem;
  z-index: 99;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-header-glow {
  position: absolute; top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.9;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5.5rem 2.5rem; }
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.section-lead {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.9;
  margin-bottom: 3rem;
}
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 2rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 1.85rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 1.85rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--navy);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-strip-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 3.5rem 2.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-about {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-email a {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.75rem; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.2); }
.footer-reg { font-size: 0.73rem; color: rgba(255,255,255,0.2); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.req { color: var(--gold); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  padding: 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--navy-mid); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.field-error { display: none; font-size: 0.73rem; color: #c0392b; margin-top: 0.3rem; }
.form-group.invalid input,
.form-group.invalid textarea { border-color: #c0392b; }
.form-group.invalid .field-error { display: block; }
.form-notice {
  margin-top: 0.85rem; padding: 0.75rem 1rem;
  border-radius: 2px; font-size: 0.82rem; line-height: 1.6;
}
.form-notice--success { background: #edf7ed; color: #2e7d32; border: 1px solid #c3e6cb; }
.form-notice--error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }
.form-notice--error a { color: #c0392b; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  section { padding: 4rem 1.25rem; }
  .page-header { padding: 7rem 1.25rem 4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
