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

:root {
  --navy: #1a2d52;
  --navy-deep: #0f1e3a;
  --navy-mid: #243a68;
  --navy-light: #2f4d86;
  --gold: #c9a84c;
  --gold-light: #dfc278;
  --gold-pale: #f0dfa0;
  --slate: #8fa8c0;
  --slate-light: #c2d4e4;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --divider: rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 30, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav-logo-icon .p-letter {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.nav-logo-icon .bolt {
  position: absolute;
  bottom: 3px;
  right: 3px;
  font-size: 13px;
  color: var(--gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .line1 {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-text .line2 {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--slate-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.nav-cta::after { display: none !important; }

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

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(42,82,152,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-secondary .arrow {
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}

.btn-secondary:hover .arrow { width: 44px; }

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 48px;
  display: flex;
  gap: 48px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 48px;
}

.section-light { background: var(--off-white); }
.section-dark { background: var(--navy-deep); }
.section-navy { background: var(--navy); }

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-label-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.section-body.light { color: var(--slate-light); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,45,82,0.12);
  z-index: 1;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── PARTNERS ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.partner-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.07);
}

.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 6px;
}

.partner-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.partner-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  position: absolute;
  top: 36px;
  right: 36px;
  line-height: 1;
}

.partner-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.partner-bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-light);
  line-height: 1.75;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 160px 48px 80px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-content { position: relative; }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(42px, 5vw, 70px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 580px;
  line-height: 1.8;
}

/* ── COMING SOON ── */
.coming-soon {
  text-align: center;
  padding: 120px 48px;
  background: var(--off-white);
}

.coming-soon-icon {
  font-size: 64px;
  margin-bottom: 32px;
  opacity: 0.4;
}

.coming-soon h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.coming-soon p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--divider);
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  margin-top: 16px;
  max-width: 240px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(143,168,192,0.5);
  font-weight: 300;
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  color: var(--slate-light);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-band blockquote strong {
  color: var(--gold-light);
  font-style: normal;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero { padding: 120px 24px 160px; }
  .hero-stats { right: 24px; bottom: 40px; gap: 28px; }
  .section { padding: 72px 24px; }
  .partners-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 48px 24px 32px; }
  .page-header { padding: 120px 24px 60px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-stats { position: relative; bottom: auto; right: auto; flex-direction: row; margin-top: 60px; }
  .stat { text-align: left; }
}
