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

:root {
  --navy:       #0f1c2e;
  --navy-mid:   #162440;
  --gold:       #b8973a;
  --gold-light: #d4af5a;
  --cream:      #f5f1eb;
  --warm-white: #faf8f5;
  --text-dark:  #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b6b6b;
  --rule:       rgba(184,151,58,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,151,58,0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.6);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  text-align: center;
  padding: 36px 48px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,241,235,0.3);
  text-transform: uppercase;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--gold-light); }

/* ── HEADER BAND ── */
header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,151,58,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0a1220 0%, var(--navy-mid) 100%);
  pointer-events: none;
}

header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 64px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: center;
}

/* ── PHOTO ── */
.photo-wrap { position: relative; }

.photo-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.photo-wrap img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.05);
  position: relative;
  z-index: 1;
}

/* ── NAME / TITLES ── */
.header-text { color: var(--cream); }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.credentials {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.55);
  margin-bottom: 32px;
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
}

.roles { display: flex; flex-direction: column; gap: 10px; }

.role-item { display: flex; flex-direction: column; gap: 2px; }

.role-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.role-org {
  font-size: 0.78rem;
  color: rgba(245,241,235,0.5);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── LINKEDIN BUTTON ── */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 11px 22px;
  border: 1px solid rgba(184,151,58,0.45);
  border-radius: 2px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  background: rgba(184,151,58,0.06);
}

.linkedin-btn:hover {
  background: rgba(184,151,58,0.15);
  border-color: var(--gold);
  color: #fff;
}

.linkedin-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── MAIN CONTENT ── */
.main-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── BIO ── */
.bio-section { margin-bottom: 72px; }

.bio-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 820px;
}

.bio-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 820px;
}

.bio-body p + p { margin-top: 18px; }

/* ── EXPERTISE GRID ── */
.expertise-section { margin-bottom: 72px; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,28,46,0.08);
  border: 1px solid rgba(15,28,46,0.08);
}

.expertise-card {
  background: var(--warm-white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.expertise-card:hover { background: var(--cream); }

.expertise-icon {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
  opacity: 0.7;
}

.expertise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.expertise-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── CAREER TIMELINE ── */
.career-section { margin-bottom: 72px; }

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(184,151,58,0.1) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--warm-white);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-period {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.timeline-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.timeline-org {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.timeline-detail {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
}

/* ── CREDENTIALS STRIP ── */
.creds-section {
  border-top: 1px solid rgba(15,28,46,0.1);
  border-bottom: 1px solid rgba(15,28,46,0.1);
  padding: 40px 0;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cred-item { display: flex; flex-direction: column; gap: 4px; }

.cred-abbrev {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.cred-name {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  max-width: 200px;
  line-height: 1.5;
}

.cred-sep {
  width: 1px;
  height: 48px;
  background: rgba(15,28,46,0.12);
  align-self: center;
}

/* ── BLOG INDEX ── */
.blog-header {
  margin-bottom: 56px;
}

.blog-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
}

.blog-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(15,28,46,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.post-item:first-child { border-top: 1px solid rgba(15,28,46,0.08); }

.post-item:hover .post-title { color: var(--gold); }

.post-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: 4px;
}

.post-category {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── BLOG POST ── */
.post-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(15,28,46,0.1);
}

.post-header .post-category { margin-bottom: 12px; }

.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.post-header .post-date { color: var(--text-light); }

.post-body {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 16px;
}

.post-body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 32px 0 12px;
}

.post-body p { margin-bottom: 20px; }

.post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
}

.post-body li { margin-bottom: 8px; }

.post-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header-inner > * {
  animation: fadeUp 0.7s ease both;
}

.header-inner > *:nth-child(1) { animation-delay: 0.1s; }
.header-inner > *:nth-child(2) { animation-delay: 0.25s; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px 44px;
  }
  .photo-wrap { max-width: 200px; margin: 0 auto; }
  .header-text { text-align: center; }
  .rule { margin: 0 auto 28px; }
  main { padding: 56px 28px 72px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .creds-section { gap: 32px; }
  .cred-sep { display: none; }
  .nav-inner { padding: 0 24px; }
  .post-item { grid-template-columns: 1fr; gap: 8px; }
  .post-date { padding-top: 0; }
}