/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f1e36;
  --navy-mid: #162847;
  --navy-light: #1e3a5f;
  --gold:    #c9a84c;
  --gold-light: #e0c47a;
  --cream:   #f5f1eb;
  --cream-dark: #ede8df;
  --text:    #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --white:   #ffffff;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  --container: 1140px;
  --section-v: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text-mid); max-width: 65ch; }

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

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-v) 0; }

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label.light { color: var(--gold-light); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.section-title { margin-bottom: 20px; }

.section-intro {
  font-size: 1.05rem;
  max-width: 55ch;
  color: rgba(255,255,255,0.6);
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 30, 54, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ─── Logo ───────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-sg {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-divider {
  width: 1px;
  height: 22px;
  background: rgba(201,168,76,0.4);
}

.logo-name {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.nav a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(201,168,76,0.5) !important;
  color: var(--gold-light) !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn.full-width { width: 100%; text-align: center; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,58,95,0.8) 0%, transparent 60%),
    linear-gradient(160deg, #0f1e36 0%, #162847 60%, #0a1628 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  max-width: none;
}

.hero-title {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 58ch;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* ─── Stats ──────────────────────────────────────────────────── */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px;
  background: var(--navy);
  border-left: 3px solid var(--gold);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-desc {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── Feature Grid ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.feature-card {
  padding: 44px 36px;
  background: var(--navy-mid);
  transition: background 0.2s;
}

.feature-card:hover { background: var(--navy-light); }

.feature-icon {
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--white);
}

.feature-card p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ─── Pillars ────────────────────────────────────────────────── */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.pillar-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.pillar h4 { margin-bottom: 12px; }
.pillar p  { font-size: 0.9rem; }

/* ─── Quote ──────────────────────────────────────────────────── */
.section-quote {
  background: var(--cream-dark);
  padding: 80px 0;
  text-align: center;
}

blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  max-width: 72ch;
  margin: 0 auto 24px;
  line-height: 1.5;
}

blockquote cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p { color: rgba(255,255,255,0.6); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; flex-direction: column; gap: 4px; }

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.contact-item a:hover { color: var(--gold-light); }

/* ─── Form ───────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--navy-mid); }

.form-note {
  font-size: 0.8rem;
  text-align: center;
  color: var(--gold-light);
  min-height: 1.2em;
  max-width: none;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #080f1c;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  max-width: none;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  max-width: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-row   { grid-template-columns: repeat(2, 1fr); }
  .two-col      { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 640px) {
  :root { --section-v: 64px; }
  .container { padding: 0 24px; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav.open a { font-size: 1rem; }
  .nav-toggle { display: block; }

  .feature-grid { grid-template-columns: 1fr; }
  .pillar-row   { grid-template-columns: 1fr; gap: 36px; }

  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }

  .stat-block { padding: 32px; }
}
