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

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

:root {
  --navy: #0d1f35;
  --navy-mid: #152540;
  --navy-light: #1e3354;
  --navy-border: #254060;
  --charcoal: #1e2530;
  --gold: #0eb8a0;
  --gold-light: #3dd4be;
  --gold-dim: rgba(14,184,160,0.15);
  --cream: #f0ece3;
  --cream-dim: rgba(240,236,227,0.06);
  --white: #ffffff;
  --muted: rgba(240,236,227,0.45);
  --soft: rgba(240,236,227,0.7);
  --text: rgba(240,236,227,0.88);
  --green: #2d8a58;
  --green-light: #3aad70;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ── SECTIONS ── */
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(14,184,160,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45,138,88,0.05) 0%, transparent 60%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.06;
  margin-bottom: 24px;
}
h1.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 3px;
  border: 1px solid var(--navy-border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 16px;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  margin: 80px 60px 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 1;
  padding: 32px 40px;
  border-right: 1px solid var(--navy-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── CONTENT SECTIONS ── */
section {
  padding: 100px 60px;
  position: relative;
}

section.alt { background: var(--navy-mid); }

.section-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
h2.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--navy-border);
}
.pillar-card {
  background: var(--navy);
  padding: 40px;
  transition: background 0.2s;
}
.pillar-card:hover { background: var(--navy-light); }
.pillar-icon { font-size: 28px; margin-bottom: 16px; }
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.pillar-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pillar-stat {
  font-size: 12px;
  color: var(--muted);
  border-left: 2px solid rgba(14,184,160,0.15);
  padding-left: 12px;
  line-height: 1.5;
}
.pillar-stat strong { color: var(--gold); }

/* ── PROCESS ── */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--navy-border);
  align-items: start;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(14,184,160,0.15);
  line-height: 1;
  padding-top: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(14,184,160,0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-content {}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.process-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
}
.process-deliverable {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 400;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--navy-border);
}
.service-card {
  background: var(--navy);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.service-tier {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.service-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--navy-border);
}
.service-items {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.service-items li {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
  line-height: 1.4;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-items li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}
.service-ideal {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
}
.service-card.featured { background: var(--navy-light); }
.service-card.featured .service-name { color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  max-width: 500px;
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }
.credential-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  background: var(--navy-mid);
}
.cred-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.cred-title { font-size: 13.5px; font-weight: 500; color: var(--cream); }
.cred-sub { font-size: 12px; font-weight: 300; color: var(--muted); margin-top: 2px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
input, textarea, select {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { height: 140px; resize: vertical; }
select option { background: var(--navy-mid); }
.form-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
}
.contact-item-value a { color: var(--gold); text-decoration: none; }
.contact-item-value a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 36px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-border);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,151,58,0.06) 0%, transparent 70%);
}
.page-header .grid-overlay { opacity: 0.6; }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero, section { padding: 100px 24px 60px; }
  .stat-row { flex-direction: column; margin: 40px 24px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .pillars-grid, .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { flex-direction: column; padding: 60px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
  .page-header { padding: 120px 24px 60px; }
  .process-item { grid-template-columns: 60px 1fr; gap: 16px; }
}
