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

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

:root {
  --navy: #0A2540;
  --grafito: #1C1F23;
  --gris: #8A97A6;
  --crema: #F4F5F3;
  --gold: #C9A66B;
  --white: #ffffff;
  --teal: #12796B;
  --ff: 'Inter Tight', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--ff); background-color: var(--crema); color: var(--navy); overflow-x: hidden; width: 100%; }

a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* Navbar */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(244,245,243,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(10,37,64,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-wordmark-title { font-weight: 700; font-size: 14px; letter-spacing: 0.14em; color: var(--navy); }
.nav-wordmark-sub { font-weight: 400; font-size: 8px; letter-spacing: 0.42em; color: var(--gris); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; opacity: 0.75; }
.nav-links a:hover { opacity: 1; }
.btn { display: inline-block; padding: 10px 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: opacity 0.2s; }
.btn:hover { opacity: 0.9; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--white); }

/* Hero */
.hero { min-height: 100vh; background: var(--navy); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-content { padding: 140px 0 88px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 52px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow-text { font-size: 11px; font-weight: 500; letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; }
.hero-h1 { font-weight: 700; font-size: clamp(48px, 8vw, 92px); line-height: 0.95; color: var(--white); max-width: 820px; margin-bottom: 40px; letter-spacing: -0.025em; }
.hero-h1 em { font-weight: 300; }
.hero-body { font-weight: 300; font-size: 20px; color: rgba(255,255,255,.88); max-width: 500px; line-height: 1.7; margin-bottom: 56px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18); padding: 6px 14px; text-transform: uppercase; }
.hero-bar { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, transparent 60%); width: 50%; }

/* Sections */
.section { padding: 96px 0; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 16px; color: var(--gris); }
.section-h2 { font-weight: 700; font-size: clamp(30px, 4.5vw, 48px); letter-spacing: -0.025em; margin-bottom: 24px; color: var(--navy); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; } }

/* Card grid */
.card-grid { display: grid; gap: 1px; background: rgba(10,37,64,0.15); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: var(--white); padding: 48px 40px; }
.card-dark { background: var(--navy); }
.card-cream { background: var(--crema); }
.card-bar { height: 3px; width: 36px; margin-bottom: 40px; }

/* Footer */
.footer { background: var(--grafito); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-text { font-size: 11px; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.5); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* CTA blocks */
.cta-block { display: flex; align-items: center; gap: 16px; padding: 22px 28px; text-decoration: none; transition: opacity 0.2s; }
.cta-block-gold { background: var(--gold); }
.cta-block-teal { background: var(--teal); }
.cta-block-ghost { border: 1px solid rgba(255,255,255,.22); }
.cta-block:hover { opacity: 0.9; }
