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

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2D42;
  --navy-light: #243650;
  --gold: #B8924A;
  --gold-light: #D4AF72;
  --gold-pale: #F0E4C8;
  --cream: #F9F5EE;
  --cream-dark: #EDE8DC;
  --charcoal: #2C3440;
  --light-gray: #D1D5DB;
  --white: #FFFFFF;
  --text-dark: #1A1F26;
  --text-mid: #4A5568;
  --text-light: #6B7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,146,74,0.2);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 14px;
  color: var(--gold); letter-spacing: 0.05em;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-logo-text .bottom {
  font-size: 10px; font-weight: 300;
  color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active { border-bottom: 1px solid rgba(184,146,74,0.5); padding-bottom: 2px; }

.nav-cta {
  font-size: 11px !important; letter-spacing: 0.12em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(184,146,74,0.5) !important;
  padding: 8px 20px;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: rgba(184,146,74,0.12) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 14px 32px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-ghost {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-ghost-dark {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost-dark::after { content: '→'; transition: transform 0.2s; }
.btn-ghost-dark:hover { color: var(--gold); }
.btn-ghost-dark:hover::after { transform: translateX(4px); }

/* SECTION COMMON */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.section-label-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-label span {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--navy-light); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-lead {
  font-size: 15px; font-weight: 300;
  color: var(--text-mid); line-height: 1.8; max-width: 560px;
}
.section-lead.light { color: rgba(255,255,255,0.6); max-width: 100%; }

/* SERVICE CARDS */
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 0; border: 1px solid var(--light-gray); margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem; border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  position: relative; transition: background 0.25s;
}
.service-card:hover { background: var(--cream); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background 0.25s;
}
.service-card:hover::before { background: var(--gold); }
.service-card.dark {
  background: rgba(255,255,255,0.02);
  border-color: rgba(184,146,74,0.12);
}
.service-card.dark:hover { background: rgba(255,255,255,0.05); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--cream-dark); line-height: 1; margin-bottom: 1.25rem;
  transition: color 0.25s;
}
.service-number.light { color: rgba(184,146,74,0.2); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3;
}
.service-title.light { color: var(--white); }
.service-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.8; }
.service-desc.light { color: rgba(255,255,255,0.5); }
.service-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 5px; }
.service-list li {
  font-size: 12px; font-weight: 400; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.service-list li.light { color: rgba(255,255,255,0.4); }
.service-list li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* CREDENTIALS BAR */
.cred-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cred-bar-label {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap; flex-shrink: 0;
}
.cred-bar-items { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 10px; }
.cred-item-icon {
  width: 32px; height: 32px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cred-item-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.cred-item-text { font-size: 12px; font-weight: 400; color: var(--text-mid); line-height: 1.3; }
.cred-item-text strong { display: block; font-weight: 500; color: var(--text-dark); font-size: 13px; }

/* FOOTER */
footer {
  background: var(--charcoal); padding: 2rem 6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  border-top: 1px solid rgba(184,146,74,0.15);
}
.footer-left { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-left strong { font-weight: 400; color: rgba(255,255,255,0.5); display: block; margin-bottom: 2px; }
.footer-logo-mark {
  width: 28px; height: 28px; border: 1px solid rgba(184,146,74,0.4);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 11px; color: var(--gold); letter-spacing: 0.05em;
}
.footer-right { display: flex; gap: 1.5rem; }
.footer-right a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-right a:hover { color: var(--gold); }

/* PAGE HEADER (inner pages) */
.page-header {
  background: var(--navy); padding: 9rem 6rem 5rem;
  border-bottom: 1px solid rgba(184,146,74,0.15);
}
.page-header .section-label span { color: var(--gold); }
.page-header .section-label-line { background: var(--gold); }

/* CREDENTIAL BADGE */
.credential-badge {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(184,146,74,0.4); padding: 6px 14px;
}

/* ── MOBILE RESPONSIVE ── */
.nav-hamburger { display: none; }
@media (max-width: 768px) {

  /* NAV — hamburger menu */
  nav {
    padding: 0 1.5rem;
    height: 64px;
  }

  .nav-logo-text .bottom { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(13,27,42,0.99);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184,146,74,0.2);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a.active { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }

  .nav-cta {
    margin: 0.5rem 1.5rem !important;
    display: inline-block !important;
    border: 1px solid rgba(184,146,74,0.5) !important;
    padding: 10px 20px !important;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* SECTIONS */
  section { padding: 3rem 1.5rem; }

  .page-header { padding: 6rem 1.5rem 3rem; }

  /* CREDENTIALS BAR */
  .cred-bar {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cred-bar-items { gap: 1.25rem; flex-direction: column; align-items: flex-start; }

  /* SERVICE CARDS — single column */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }

  /* FOOTER */
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-logo-mark { display: none; }
  .footer-right { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  section { padding: 2.5rem 1rem; }
  .page-header { padding: 5rem 1rem 2.5rem; }
  .cred-bar { padding: 1.25rem 1rem; }
  footer { padding: 1.5rem 1rem; }
}
