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

:root {
  --ink: #0B0E11;
  --charcoal: #161B22;
  --slate: #1E252E;
  --steel: #2A3240;
  --ash: #8B95A5;
  --silver: #BCC5D1;
  --pearl: #E8ECF1;
  --white: #F7F8FA;
  --gold: #C9A84C;
  --gold-light: #E2CC7E;
  --gold-dark: #9E7E2A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(11,14,17,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--steel);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.nav-logo-icon {
  width: 36px; height: 36px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: 1px;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--silver);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); font-weight: 500; border-bottom-color: var(--gold); }

.mobile-toggle {
  display: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  transition: 0.3s;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(11,14,17,0.98); border-bottom: 1px solid var(--steel);
  padding: 16px 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 14px; color: var(--silver);
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--steel); transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* ─── Typography ─── */
.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; color: var(--white); line-height: 1.15;
}
.heading-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 400; color: var(--white);
}
.heading-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 500; color: var(--white);
}
.heading-card {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
}
.gold-italic { color: var(--gold); font-style: italic; font-weight: 500; }
.gold-text { color: var(--gold); }
.eyebrow {
  font-size: 12px; font-weight: 500; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px;
}
.body-lg { font-size: 18px; color: var(--ash); line-height: 1.7; }
.body-md { font-size: 17px; color: var(--ash); line-height: 1.7; }
.body-sm { font-size: 14px; color: var(--ash); line-height: 1.7; }
.body-prose { font-size: 16px; color: var(--silver); line-height: 1.9; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 32px; }
.section-sm { padding: 80px 32px; }

/* ─── Backgrounds ─── */
.bg-ink { background: var(--ink); }
.bg-charcoal { background: var(--charcoal); }
.bg-gold-gradient {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 50%, var(--ink) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, var(--gold) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, var(--gold) 0px, transparent 1px, transparent 60px);
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 0 32px; }

.page-hero {
  padding: 180px 32px 80px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; border: none;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,0.1); }
.btn-dark { background: var(--ink); color: var(--gold); }
.btn-dark:hover { background: var(--charcoal); }

/* ─── Divider ─── */
.divider {
  display: flex; align-items: center; gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.divider-line-left {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--steel));
}
.divider-line-right {
  flex: 1; height: 1px;
  background: linear-gradient(to left, transparent, var(--steel));
}
.divider-diamond {
  width: 8px; height: 8px; border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ─── Cards ─── */
.card {
  background: var(--charcoal); border: 1px solid var(--steel);
  padding: 40px; transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card-icon { font-size: 28px; color: var(--gold); margin-bottom: 20px; }

/* ─── Grid ─── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 64px;
}

/* ─── Metrics Row ─── */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48; text-align: center;
}
.metric-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--gold); margin-bottom: 8px;
}
.metric-label {
  font-size: 12px; color: var(--ash);
  letter-spacing: 3px; text-transform: uppercase;
}

/* ─── Diamond Bullets ─── */
.diamond-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.diamond-bullet {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0; margin-top: 7px;
}
.diamond-item span { font-size: 14px; color: var(--silver); line-height: 1.6; }

/* ─── Phase Steps ─── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}
.phase {
  padding: 36px;
  border-top: 3px solid var(--steel);
  transition: border-top-color 0.3s;
}
.phase:not(:first-child) { border-left: 1px solid var(--steel); }
.phase:hover, .phase:first-child { border-top-color: var(--gold); }
.phase-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--gold); font-weight: 300; margin-bottom: 8px;
}
.phase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 12px;
}

/* ─── Differentiator Blocks ─── */
.diff-block { border-left: 2px solid var(--gold); padding-left: 28px; }

/* ─── CTA Band ─── */
.cta-band { padding: 80px 32px; text-align: center; }

/* ─── Contact Form ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; color: var(--ash);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; background: var(--charcoal);
  border: 1px solid var(--steel); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { color: var(--silver); }
.form-textarea { resize: vertical; }

/* ─── Contact Info ─── */
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border: 1px solid var(--steel);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px; flex-shrink: 0;
}
.contact-label {
  font-size: 11px; color: var(--ash);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.contact-value { font-size: 16px; color: var(--silver); }

/* ─── Info Box ─── */
.info-box {
  padding: 32px; background: var(--charcoal);
  border: 1px solid var(--steel);
}

/* ─── Placeholder Block ─── */
.placeholder-block {
  border: 1px dashed var(--steel); padding: 60px;
  background: rgba(22,27,34,0.5); text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink); border-top: 1px solid var(--steel);
  padding: 60px 32px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40; margin-bottom: 48px;
}
.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-category {
  font-size: 11px; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-link {
  display: block; font-size: 14px; color: var(--ash);
  margin-bottom: 10px; transition: color 0.3s; cursor: pointer;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--steel); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--ash);
}

/* ─── Fade-in Animation ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-44 { margin-bottom: 44px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.max-w-600 { max-width: 600px; }
.max-w-640 { max-width: 640px; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-16 { gap: 16px; }
.flex-center { display: flex; justify-content: center; flex-wrap: wrap; }
.flex-col { display: flex; flex-direction: column; }

@media (max-width: 768px) {
  .phase-grid { grid-template-columns: 1fr; }
  .phase:not(:first-child) { border-left: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
}
