/* ============================================================
   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; }
.logo-link { display: flex; align-items: center; }
.header-logo { height: 38px; width: auto; display: block; }
.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: 64px 0 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: end; }
.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: 64px; padding-top: 20px; }
.eyebrow { 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-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); }

/* ============================================================
   SHARED SECTION TOKENS
   ============================================================ */
.section-eyebrow { 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: 40px; letter-spacing: -0.01em; }

/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise-section { background: var(--off-white); padding: 64px 0; }
.expertise-list { display: flex; flex-direction: column; border-top: 1px solid rgba(26,58,92,0.12); }

.expertise-item { border-bottom: 1px solid rgba(26,58,92,0.12); }

.expertise-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.expertise-num { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; color: var(--gold); min-width: 24px; }
.expertise-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--text-primary); flex: 1; letter-spacing: -0.01em; }
.expertise-arrow { font-size: 1.2rem; font-weight: 300; color: var(--gold); margin-left: auto; transition: transform 0.25s; min-width: 20px; text-align: right; }
.expertise-item.open .expertise-arrow { transform: rotate(45deg); }
.expertise-trigger:hover .expertise-name { color: var(--navy-mid); }

.expertise-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 44px 0; }
.expertise-item.open .expertise-body { max-height: 600px; padding: 0 44px 32px; }

.expertise-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; max-width: 680px; }

.expertise-examples { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.expertise-examples li { font-size: 0.88rem; font-weight: 300; line-height: 1.65; color: var(--text-body); padding-left: 20px; position: relative; }
.expertise-examples li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 3px; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: #EDECEA; padding: 64px 0; }
.portfolio-intro { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--text-body); max-width: 620px; margin-bottom: 48px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(26,58,92,0.1); }
.portfolio-card { background: #EDECEA; display: flex; flex-direction: column; }
.pc-header { padding: 32px 32px 24px; cursor: pointer; border-bottom: 1px solid transparent; transition: border-color 0.2s; position: relative; }
.pc-header::after { content: '+'; position: absolute; top: 32px; right: 32px; font-size: 1.2rem; font-weight: 300; color: var(--gold); transition: transform 0.25s; }
.portfolio-card.open .pc-header::after { content: '−'; }
.portfolio-card.open .pc-header { border-bottom-color: rgba(200,169,110,0.2); }
.portfolio-card:hover { background: #E5E3DF; }
.pc-category { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; border: 1px solid rgba(200,169,110,0.35); padding: 3px 8px; border-radius: 2px; }
.pc-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; line-height: 1.25; padding-right: 28px; }
.pc-sub { font-size: 0.75rem; letter-spacing: 0.06em; color: var(--steel); }
.pc-body { padding: 0 32px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.portfolio-card.open .pc-body { max-height: 1200px; padding: 24px 32px 32px; }
.pc-block { margin-bottom: 20px; }
.pc-block:last-child { margin-bottom: 0; }
.pc-block h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); margin-bottom: 6px; }
.pc-block p { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--text-body); }
.pc-block ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.pc-block ul li { font-size: 0.88rem; font-weight: 300; line-height: 1.6; color: var(--text-body); padding-left: 14px; position: relative; }
.pc-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 3px; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { background: var(--navy-deep); padding: 64px 0; }
.timeline-outer { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 56px; gap: 0 24px; align-items: start; }
.timeline-header { margin-bottom: 48px; }
.tl-section-title { color: var(--off-white) !important; }
.tl-stop { padding: 40px 0; border-bottom: 1px solid rgba(138,155,174,0.15); }
.tl-stop:last-child { border-bottom: none; }
.tl-tag { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; border: 1px solid rgba(200,169,110,0.3); padding: 4px 10px; border-radius: 2px; }
.tl-role { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--off-white); margin-bottom: 6px; line-height: 1.25; }
.tl-client { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; }
.tl-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: rgba(138,155,174,0.9); max-width: 680px; margin-bottom: 18px; }
.tl-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.tl-tags li { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--steel); background: rgba(138,155,174,0.1); padding: 4px 10px; border-radius: 2px; }
.timeline-tracker { position: sticky; top: 30vh; display: flex; flex-direction: column; align-items: center; }
.tracker-spine { position: absolute; top: 6px; bottom: 6px; left: 50%; transform: translateX(-50%); width: 1px; background: rgba(138,155,174,0.25); pointer-events: none; }
.tracker-stops { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
.tracker-stop { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.tracker-dot { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid rgba(138,155,174,0.35); background: transparent; transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.tracker-stop.active .tracker-dot { border-color: var(--gold); background: var(--gold); transform: scale(1.2); }
.tracker-label { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(138,155,174,0.4); transition: color 0.25s; line-height: 1; }
.tracker-stop.active .tracker-label { color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off-white); padding: 64px 0; }
.contact-content { max-width: 680px; }
.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: 12px; }
.contact-sub { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-body); margin-bottom: 36px; }

.socials-strip { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(26,58,92,0.12); border-left: 1px solid rgba(26,58,92,0.12); }
.social-link { display: flex; align-items: center; gap: 10px; padding: 18px 28px; font-size: 0.82rem; font-weight: 400; color: var(--text-body); border-right: 1px solid rgba(26,58,92,0.12); border-bottom: 1px solid rgba(26,58,92,0.12); transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--navy-deep); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); padding: 48px 0 28px; border-top: 1px solid rgba(200,169,110,0.1); }
.footer-clients-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(138,155,174,0.5); margin-bottom: 28px; }
.client-logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.client-logo { height: 40px; width: auto; opacity: 0.55; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.client-logo:hover { opacity: 0.9; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(138,155,174,0.1); flex-wrap: wrap; gap: 8px; }
.footer-wordmark { font-family: var(--font-display); font-size: 0.95rem; color: rgba(245,244,241,0.5); }
.footer-meta { font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(138,155,174,0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .hero { padding: 52px 0 0; }
  .hero-photo-col { max-width: 300px; 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; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .timeline-outer { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 56px; gap: 0 24px; align-items: start; }
  .timeline-tracker { position: sticky; top: 30vh; display: flex; flex-direction: column; align-items: center; }
  .header-nav a:not(.nav-cta) { display: none; }
  .socials-strip { flex-direction: column; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-title { font-size: 1.75rem; }
  .client-logos { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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

/* ============================================================
   HERO — warmer intro additions
   ============================================================ */
.hero-name-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}

/* ============================================================
   CENTERED SECTION HEADERS
   ============================================================ */
.section-eyebrow,
.section-title {
  text-align: center;
}

.expertise-section .section-title,
.expertise-section .section-eyebrow,
.portfolio-section .section-title,
.portfolio-section .section-eyebrow,
.timeline-section .tl-section-title,
.timeline-section .section-eyebrow {
  text-align: center;
}

.portfolio-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CENTERED CONTACT + FOOTER
   ============================================================ */
.contact-centered {
  text-align: center;
}

.contact-centered .contact-content {
  margin: 0 auto;
  text-align: center;
}

.contact-centered .socials-strip {
  justify-content: center;
  display: inline-flex;
  border: 1px solid rgba(26,58,92,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-centered .social-link {
  border: none;
  border-right: 1px solid rgba(26,58,92,0.12);
}

.contact-centered .social-link:last-child {
  border-right: none;
}

.site-footer {
  text-align: center;
}

.client-logos {
  justify-content: center;
}

.footer-bottom {
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   TIMELINE — 2026 node spacing
   ============================================================ */
.tracker-stops { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
