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

:root {
  --navy:      #0C1B2E;
  --navy-mid:  #152540;
  --gold:      #B49030;
  --gold-light:#D4AA40;
  --burgundy:  #8B1C1C;
  --cream:     #F5F2EC;
  --cream-dark:#EDE9E0;
  --white:     #FFFFFF;
  --text:      #0C1B2E;
  --text-mid:  #2D3E55;
  --text-muted:#6B7A8D;
  --border:    #DDD8CE;

  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'DM Sans', sans-serif;

  --max-w: 1160px;
  --radius: 6px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-ui); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,27,46,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(180,144,48,0.2);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(180,144,48,0.06) 50%, rgba(139,28,28,0.04) 100%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(180,144,48,0.3), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  padding: 100px 0;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-body {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  transition: background var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--white); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stat {
  padding: 28px 20px;
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-white { background: var(--white); }

.section-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-body {
  font-size: 16px; line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}
.section-body.light { color: rgba(255,255,255,0.55); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--cream); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: transparent;
  transition: background var(--transition);
}
.service-card:hover::before { background: var(--gold); }
.service-number {
  font-family: var(--font-display);
  font-size: 13px; color: var(--gold);
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px; line-height: 1.2;
}
.service-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── CLARITY FRAMEWORK ── */
.clarity-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-top: 60px;
  background: rgba(255,255,255,0.08);
}
.clarity-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 20px;
  text-align: center;
  transition: background var(--transition);
}
.clarity-card:hover { background: rgba(180,144,48,0.12); }
.clarity-letter {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600;
  color: var(--gold-light);
  line-height: 1; margin-bottom: 12px;
}
.clarity-word {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.clarity-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ── CREDENTIALS ── */
.credentials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--border);
}
.credential-card {
  background: var(--cream);
  padding: 48px 44px;
  position: relative; overflow: hidden;
}
.credential-card::after {
  content: '';
  position: absolute; bottom: 0; left: 44px; right: 44px;
  height: 1px; background: var(--border);
}
.credential-value {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600;
  color: var(--navy); line-height: 1;
  margin-bottom: 10px;
}
.credential-value span { color: var(--gold); }
.credential-label {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

/* ── PHASES ── */
.phases-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 60px;
}
.phase-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.phase-card::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 3px; background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
}
.phase-no {
  font-family: var(--font-display);
  font-size: 13px; color: var(--gold);
  margin-bottom: 16px;
}
.phase-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  color: var(--navy); margin-bottom: 14px;
}
.phase-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  margin-top: 60px;
}
.contact-detail {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; color: var(--text-mid); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--text-mid); }
.form-input, .form-textarea, .form-select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px; color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180,144,48,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--navy); color: var(--white);
  border: none; padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
}
.form-submit:hover { background: var(--navy-mid); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(180,144,48,0.15);
  padding: 48px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand img { height: 28px; width: auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--gold-light);
}
.footer-meta {
  font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-right { text-align: right; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-rc { font-size: 11px; color: rgba(255,255,255,0.18); margin-top: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(180,144,48,0.3), transparent);
}
.page-hero-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero-body {
  font-size: 16px; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.75;
}

/* ── DIVIDER ── */
.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .clarity-grid { grid-template-columns: repeat(4, 1fr); }
  .credentials-grid { grid-template-columns: 1fr; }
  .phases-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-right { text-align: center; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
