/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy-deep:    #0F1B2D;
  --navy-mid:     #1A3A5C;
  --navy-soft:    #243F63;
  --gold:         #C8A96E;
  --gold-light:   #D9C08E;
  --off-white:    #F5F4F1;
  --steel:        #8A9BAE;
  --text-primary: #1A1F2E;
  --text-body:    #3A4455;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --wrap:         1160px;
  --radius:       3px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--off-white);
}

.wordmark-llc {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 3px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--off-white); }

.header-nav .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 7px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy-deep);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: end;
}

.hero-photo-col {
  position: relative;
}

.photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 1;
}

.headshot {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
  object-fit: cover;
  object-position: center top;
}

.hero-content-col {
  padding-bottom: 80px;
  padding-top: 20px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--steel);
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--off-white); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--off-white);
  padding: 96px 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 52px;
  letter-spacing: -0.01em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(26,58,92,0.12);
}

.service-card {
  background: var(--off-white);
  padding: 40px 36px;
  transition: background 0.2s;
}

.service-card:hover {
  background: #EFEDE9;
}

.service-icon {
  display: block;
  width: 8px;
  height: 8px;
  color: var(--gold);
  font-size: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.engagements {
  background: var(--navy-deep);
  padding: 96px 0;
}

.engagements .section-eyebrow { color: var(--gold); }

.engagements .section-title {
  color: var(--off-white);
  margin-bottom: 56px;
}

.engagement-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(138,155,174,0.2);
}

.engagement-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(138,155,174,0.2);
  transition: padding-left 0.2s;
}

.engagement-item:hover {
  padding-left: 8px;
}

.engagement-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.engagement-client {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: -0.01em;
}

.engagement-period {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
}

.engagement-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--steel);
  max-width: 680px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--off-white);
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.contact-content {
  max-width: 580px;
}

.contact .section-eyebrow { color: var(--gold); margin-bottom: 12px; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.contact-sub {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy-mid);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(245,244,241,0.5);
}

.footer-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(138,155,174,0.6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 64px;
  }

  .hero { padding: 60px 0 0; }

  .hero-photo-col {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content-col {
    padding-bottom: 0;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }

  .hero-actions { justify-content: center; }

  .photo-frame::before { display: none; }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .header-nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }

  .hero-title { font-size: 1.75rem; }

  .engagement-meta { flex-direction: column; gap: 4px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}
