@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Jost:wght@300;400;500&family=JetBrains+Mono:wght@400&display=swap');

/* ── Brand Colors (from LinkedIn hero image) ───────────────── */
:root {
  --navy:     #0b2b3e;   /* deep dark left of hero image */
  --navy2:    #163650;   /* mid-dark navy */
  --navy3:    #20648b;   /* mid blue - glass building */
  --slate:    #5d8daa;   /* sky blue accent */
  --slate2:   #7aaec8;   /* lighter hover */
  --cream:    #f7f4f0;
  --warm:     #ece8e2;
  --gold:     #b8945a;
  --text:     #162838;
  --muted:    #527089;
  --border:   rgba(32,100,139,0.15);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
  --mono:     'JetBrains Mono', monospace;
  --max:      1140px;
  --r:        3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-weight: 300;
  color: var(--text); background: var(--cream);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,43,62,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93,141,170,0.18);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 2.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--cream); letter-spacing: 0.04em;
}
.nav-logo span { color: var(--slate2); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,244,240,0.55); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--slate2); }
.nav-cta {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate2) !important;
  border: 1px solid rgba(93,141,170,0.45);
  padding: 0.45rem 1.2rem; border-radius: var(--r);
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--slate); color: var(--navy) !important;
  border-color: var(--slate);
}
.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); }
.nav-mobile { display: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
/* Dark overlay: heavy on left (text area), lighter on right */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,43,62,0.92) 0%,
    rgba(11,43,62,0.85) 40%,
    rgba(11,43,62,0.65) 65%,
    rgba(11,43,62,0.50) 100%
  );
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 5rem 2.5rem;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--slate2);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--slate2);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400; color: #f0ecf8;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: var(--slate2); }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(247,244,240,0.68);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--slate); color: white;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--slate2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(247,244,240,0.65);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(247,244,240,0.2); border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--slate2); color: var(--slate2); }

/* ── Hero Profile Panel ─────────────────────────────────────── */
.hero-profile {
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.hero-photo-frame {
  position: relative; width: 210px; height: 210px;
}
/* Outer ring */
.hero-photo-frame::before {
  content: '';
  position: absolute; inset: -10px;
  border: 1px solid rgba(93,141,170,0.35);
  border-radius: 50%;
}
/* Middle ring */
.hero-photo-frame::after {
  content: '';
  position: absolute; inset: -20px;
  border: 1px solid rgba(93,141,170,0.12);
  border-radius: 50%;
}
.hero-photo {
  width: 210px; height: 210px;
  border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  border: 3px solid rgba(93,141,170,0.5);
  display: block;
}
.hero-nameplate { text-align: center; }
.hero-nameplate .name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--cream); letter-spacing: 0.04em;
  display: block; margin-bottom: 0.3rem;
}
.hero-nameplate .role {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(122,174,200,0.75);
}

/* Metrics card */
.hero-metrics {
  width: 100%;
  background: rgba(11,43,62,0.6);
  border: 1px solid rgba(93,141,170,0.2);
  border-radius: 4px; padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-metrics-label {
  font-family: var(--mono);
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 1rem; opacity: 0.85;
}
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.metric {
  padding: 0.85rem;
  background: rgba(93,141,170,0.08);
  border: 1px solid rgba(93,141,170,0.14);
  border-radius: 2px;
}
.metric-num {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 600;
  color: var(--slate2); line-height: 1; margin-bottom: 0.3rem;
}
.metric-label {
  font-size: 0.66rem; font-weight: 300;
  color: rgba(247,244,240,0.45); line-height: 1.45;
}

/* ── Credibility Bar ────────────────────────────────────────── */
.cred-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(93,141,170,0.12);
  padding: 1.25rem 2.5rem;
}
.cred-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap; justify-content: center;
}
.cred-item {
  font-size: 0.74rem; font-weight: 300;
  color: rgba(247,244,240,0.4); letter-spacing: 0.04em; white-space: nowrap;
}
.cred-item strong { color: rgba(247,244,240,0.72); font-weight: 500; }
.cred-divider { width: 1px; height: 16px; background: rgba(93,141,170,0.2); }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 6rem 2.5rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-tag {
  font-family: var(--mono);
  font-size: 0.67rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--slate);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 400;
  line-height: 1.14; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.section-sub {
  font-size: 0.98rem; font-weight: 300;
  color: var(--muted); max-width: 560px; line-height: 1.85;
}

/* ── Focus Cards ────────────────────────────────────────────── */
.focus-section { background: var(--cream); }
.focus-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.focus-card {
  background: white;
  border: 1px solid rgba(32,100,139,0.1);
  border-top: 2px solid var(--slate);
  border-radius: var(--r); padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.2s;
}
.focus-card:hover { box-shadow: 0 10px 40px rgba(11,43,62,0.09); transform: translateY(-2px); }
.focus-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 400;
  color: var(--slate); opacity: 0.4; line-height: 1; margin-bottom: 1rem;
}
.focus-card h3 {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 400;
  line-height: 1.4; margin-bottom: 0.85rem; color: var(--navy);
}
.focus-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.8; }

/* ── About Section ──────────────────────────────────────────── */
.about-section { background: var(--navy2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
.about-body {
  font-size: 0.96rem; font-weight: 300;
  color: rgba(247,244,240,0.68); line-height: 1.9;
}
.about-body p { margin-bottom: 1.25rem; }
.about-body a {
  color: var(--slate2);
  border-bottom: 1px solid rgba(122,174,200,0.3);
  transition: border-color 0.2s;
}
.about-body a:hover { border-color: var(--slate2); }
.career-list { list-style: none; }
.career-item {
  display: flex; gap: 1.25rem; padding: 1.2rem 0;
  border-bottom: 1px solid rgba(93,141,170,0.1);
}
.career-item:first-child { border-top: 1px solid rgba(93,141,170,0.1); }
.career-dot {
  width: 7px; height: 7px;
  border: 1.5px solid var(--slate); border-radius: 50%;
  margin-top: 0.45rem; flex-shrink: 0;
}
.career-role { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
.career-co { font-size: 0.8rem; color: var(--slate2); margin-bottom: 0.2rem; }
.career-yr { font-size: 0.72rem; color: rgba(247,244,240,0.32); }

/* ── Insights ───────────────────────────────────────────────── */
.insights-section { background: var(--warm); }
.insights-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.link-arrow {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--navy2); border-bottom: 1px solid rgba(22,54,80,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--slate); border-color: var(--slate); }
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.post-card {
  background: white; border: 1px solid rgba(32,100,139,0.08);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: 0 8px 32px rgba(11,43,62,0.1); transform: translateY(-2px); }
.post-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-tag {
  font-family: var(--mono); font-size: 0.61rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 0.75rem;
}
.post-card h3 {
  font-family: var(--serif); font-size: 1.08rem; font-weight: 400;
  line-height: 1.4; margin-bottom: 0.75rem; color: var(--navy);
}
.post-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; flex: 1; }
.post-card-footer {
  padding: 0.9rem 1.75rem;
  border-top: 1px solid rgba(32,100,139,0.07);
  display: flex; justify-content: space-between; align-items: center;
}
.post-date { font-size: 0.72rem; color: var(--muted); }
.post-read { font-size: 0.72rem; font-weight: 500; color: var(--navy3); }

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center; padding: 7rem 2.5rem;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center 60%;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,43,62,0.88);
}
.cta-section > *:not(.cta-bg) { position: relative; z-index: 1; }
.cta-section .section-tag { justify-content: center; }
.cta-section .section-tag::before { display: none; }
.cta-section .section-title { color: var(--cream); margin: 0 auto 1rem; }
.cta-section .section-sub { color: rgba(247,244,240,0.55); margin: 0 auto 2.5rem; }
.cta-section .hero-actions { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(93,141,170,0.12);
  padding: 3rem 2.5rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); }
.footer-logo span { color: var(--slate2); font-style: italic; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,244,240,0.32);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--slate2); }
.footer-copy { font-size: 0.72rem; color: rgba(247,244,240,0.22); }

/* ── Page Hero (interior) ───────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 9rem 2.5rem 5rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,43,62,0.94) 0%,
    rgba(11,43,62,0.82) 60%,
    rgba(11,43,62,0.72) 100%
  );
}
.page-hero-inner {
  max-width: var(--max); margin: 0 auto; position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400;
  color: var(--cream); margin-bottom: 0.85rem; letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(247,244,240,0.6); max-width: 560px;
}

/* ── Blog / Insights ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.blog-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  background: white; border: 1px solid rgba(32,100,139,0.08);
  border-radius: var(--r); overflow: hidden;
}
.blog-featured-banner {
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; padding: 3rem;
}
.blog-featured-banner .banner-text {
  font-family: var(--serif); font-size: 1.8rem; font-style: italic;
  color: var(--slate2); text-align: center; line-height: 1.35; opacity: 0.9;
}
.blog-featured-body { padding: 2.5rem; }
.blog-featured-body h2 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  line-height: 1.35; margin-bottom: 1rem; color: var(--navy);
}
.blog-featured-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }

/* ── Services ───────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: white; border: 1px solid rgba(32,100,139,0.09);
  border-radius: var(--r); padding: 2.5rem;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(11,43,62,0.08); }
.service-icon {
  width: 40px; height: 40px;
  background: rgba(93,141,170,0.1); border: 1px solid rgba(93,141,170,0.25);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1rem; color: var(--navy3);
}
.service-card h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  margin-bottom: 0.75rem; color: var(--navy);
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-deliverables { list-style: none; }
.service-deliverables li {
  font-size: 0.8rem; color: var(--muted);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(32,100,139,0.06);
  display: flex; align-items: center; gap: 0.6rem;
}
.service-deliverables li::before { content: '→'; color: var(--slate); font-size: 0.72rem; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy2);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  color: var(--text); background: white;
  border: 1px solid rgba(32,100,139,0.18); border-radius: var(--r);
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--slate);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-detail {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid rgba(32,100,139,0.08);
}
.contact-detail-icon {
  width: 34px; height: 34px;
  background: rgba(93,141,170,0.1); border: 1px solid rgba(93,141,170,0.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; color: var(--navy3);
}
.contact-detail-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.15rem; }
.contact-detail-val { font-size: 0.88rem; font-weight: 400; }

/* ── Single Post ────────────────────────────────────────────── */
.post-layout {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 4rem; max-width: var(--max);
  margin: 4rem auto; padding: 0 2.5rem; align-items: start;
}
.post-content { max-width: 680px; }
.post-content h2 {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  margin: 2.5rem 0 1rem;
}
.post-content p { margin-bottom: 1.25rem; font-size: 0.97rem; line-height: 1.9; color: #1e3040; }
.post-content ul, .post-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-content li { font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.4rem; color: #1e3040; }
.post-content blockquote {
  border-left: 2px solid var(--slate); margin: 2rem 0;
  padding: 0.75rem 1.75rem;
  background: rgba(93,141,170,0.06);
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--navy2);
}
.post-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--warm); border: 1px solid rgba(32,100,139,0.08);
  border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-card-title {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.toc-link {
  display: block; font-size: 0.83rem; color: var(--muted);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(32,100,139,0.06);
  transition: color 0.2s;
}
.toc-link:hover { color: var(--navy); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-profile { display: none; }
  .about-grid, .contact-grid, .services-grid, .blog-featured { grid-template-columns: 1fr; }
  .focus-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
}
@media (max-width: 640px) {
  .focus-grid, .insights-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open {
    display: flex; flex-direction: column;
    background: var(--navy); padding: 1rem 2rem 2rem; gap: 1rem;
  }
  .nav-mobile.open a {
    font-size: 0.88rem; color: rgba(247,244,240,0.7);
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .cred-divider { display: none; }
}
