:root {
  --navy: #0d2031;
  --navy-2: #152b3c;
  --ink: #142431;
  --muted: #6f777d;
  --cream: #f7f4ee;
  --paper: #fbfaf7;
  --white: #fff;
  --gold: #b88438;
  --red: #b42125;
  --line: rgba(13,32,49,.14);
  --shadow: 0 24px 70px rgba(13,32,49,.12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: white; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.hero {
  min-height: 640px;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  color: var(--navy);
  background-image: url('assets/hero.webp');
  background-size: cover;
  background-position: center 34%;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(13,32,49,.08);
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,243,234,.86) 0%, rgba(248,243,234,.68) 32%, rgba(248,243,234,.12) 58%, rgba(11,30,45,.04) 100%);
}
.nav { position: relative; z-index: 20; height: 82px; display: flex; align-items: center; justify-content: flex-start; }
.nav-links {
  display: flex;
  gap: 30px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: rgba(251,250,247,.62);
  border: 1px solid rgba(13,32,49,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-links a { text-decoration: none; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: currentColor; transition: width .2s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: rgba(255,255,255,.75); border-radius: 10px; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.hero-content { position: relative; z-index: 2; min-height: 558px; display: flex; align-items: center; justify-content: space-between; padding-bottom: 42px; }
.hero-copy { width: min(560px, 52%); }
.eyebrow { margin: 0 0 13px; font-size: 12px; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; color: #5a6770; }
.hero h1, h2 { font-family: var(--serif); font-weight: 500; color: var(--navy); }
.hero h1 { margin: 0; font-size: clamp(58px, 7vw, 94px); line-height: .92; letter-spacing: -.045em; }
.hero-title { margin: 20px 0 0; font: 500 clamp(22px, 2.4vw, 32px)/1.25 var(--serif); }
.rule { display: block; width: 36px; height: 1px; background: var(--navy); margin: 18px 0; }
.rule.gold { background: var(--gold); }
.hero-intro { max-width: 480px; margin-bottom: 26px; font-size: 18px; }
.button { display: inline-flex; align-items: center; gap: 14px; padding: 14px 22px; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,32,49,.18); }
.button-dark { background: var(--navy); color: var(--white); }
.hero-keywords { display: none; }

.section { padding: 78px 0; }
.two-column { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.section-copy h2, .education h2, .roles h2 { margin: 0 0 26px; font-size: clamp(40px, 4vw, 57px); line-height: 1; letter-spacing: -.025em; }
.section-copy > p { font-size: 17px; max-width: 650px; }
.about { background: var(--paper); }
.thought-card { position: relative; min-height: 480px; overflow: hidden; box-shadow: var(--shadow); background: #20242a; }
.thought-card img { height: 480px; object-fit: cover; object-position: center 28%; filter: saturate(.8) contrast(.95); }
.thought-overlay { position: absolute; inset: 0 0 0 58%; padding: 58px 38px; display: grid; place-items: center; text-align: center; color: white; background: linear-gradient(90deg, rgba(19,29,38,.25), rgba(19,29,38,.82)); }
.thought-overlay p { font: italic 25px/1.35 var(--serif); }

.values-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value { min-width: 0; }
.value .icon { display: block; font-size: 27px; min-height: 37px; }
.value strong { display: block; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; margin: 8px 0 4px; }
.value small { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }

.business { background: linear-gradient(180deg, #f2efe9, #f7f4ee); border-block: 1px solid rgba(13,32,49,.05); }
.business-layout { align-items: stretch; }
.business .section-copy { align-self: center; }
.business .section-copy h2 { font-size: clamp(38px, 3.8vw, 55px); }
.mcm-card { position: relative; min-height: 380px; background: linear-gradient(160deg, #e9edf0 0%, #cdd4d8 58%, #aeb8bf 100%); overflow: hidden; border: 1px solid rgba(13,32,49,.08); }
.industrial-lines { position: absolute; inset: auto 0 0 0; height: 46%; opacity: .3; background: repeating-linear-gradient(90deg, transparent 0 42px, rgba(13,32,49,.35) 43px 44px), linear-gradient(15deg, transparent 44%, rgba(13,32,49,.18) 45% 46%, transparent 47%); }
.mcm-mark { position: absolute; left: 50%; top: 43%; transform: translate(-50%,-50%) skew(-7deg); color: var(--red); font: 900 clamp(72px,9vw,128px)/1 var(--sans); text-shadow: 0 3px 0 #76171a, 0 14px 24px rgba(13,32,49,.2); letter-spacing: -.08em; }
.mcm-name { position: absolute; left: 50%; top: 60%; transform: translateX(-50%); white-space: nowrap; font-size: 12px; font-weight: 900; letter-spacing: .09em; }
.mcm-words { position: absolute; right: 28px; top: 28px; text-align: right; font-size: 11px; font-weight: 800; letter-spacing: .2em; line-height: 1.65; }

.education-faith { background: var(--paper); }
.education-faith-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: 56px;
}
.roles {
  padding-left: 56px;
  border-left: 1px solid var(--line);
}
.roles h2 { max-width: 440px; }
.roles-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.role-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(13,32,49,.04);
}
.role-number {
  font: 500 26px/1 var(--serif);
  color: var(--gold);
  border-right: 1px solid var(--line);
  padding-right: 16px;
}
.role-type {
  margin: 0 0 2px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 800;
}
.role-card h3 {
  margin: 0;
  font: 600 24px/1.15 var(--serif);
  color: var(--navy);
}
.role-card p:last-child {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 1.4;
}
.roles-note {
  margin: 24px 0 0;
  max-width: 390px;
  color: #5e5f61;
  font: italic 19px/1.45 var(--serif);
}
.timeline { position: relative; margin-top: 28px; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 14px; bottom: 16px; width: 1px; background: #c9c1b4; }
.timeline-item { position: relative; display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 0 0 30px; }
.timeline-item::before { content: ''; position: absolute; left: -27px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: #8c7354; border: 3px solid var(--paper); }
.timeline-item h3 { margin: 0 0 3px; font-size: 18px; }
.timeline-item p { margin: 2px 0; }
.degree-badge { display: grid; place-items: center; align-self: start; min-height: 58px; border: 1px solid var(--line); font: 700 18px/1 var(--serif); color: var(--navy); background: white; }
.timeline-item:first-child .degree-badge { border-left: 5px solid #e02129; }
.timeline-item:nth-child(2) .degree-badge { border-left: 5px solid #1f4f96; }
.timeline-item.earlier .degree-badge { font-size: 26px; }
.muted { color: var(--muted); }

.faith-copy { display: grid; grid-template-columns: 84px 1fr; gap: 30px; margin-top: 38px; }
.cross { width: 54px; height: 72px; position: relative; margin-top: 8px; }
.cross::before, .cross::after { content: ''; position: absolute; background: var(--navy); }
.cross::before { width: 1px; height: 72px; left: 26px; top: 0; }
.cross::after { height: 1px; width: 54px; left: 0; top: 25px; }
.faith-lead { font: 500 21px/1.45 var(--serif); }
.grace { margin-top: 42px; font: italic 21px/1.4 var(--serif); color: #5e5f61; }

.footer { position: relative; min-height: 300px; color: white; background: #081824; overflow: hidden; padding: 52px 0 26px; }
.footer::before { content: ''; position: absolute; inset: 0; background: url('assets/hero.webp') center 72%/cover; filter: grayscale(1) brightness(.22) contrast(1.3); opacity: .55; }
.footer-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,30,.2), #071723 92%); }
.footer-content, .footer-bottom { position: relative; z-index: 2; }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
blockquote { margin: 0; max-width: 680px; font: italic clamp(25px, 3vw, 38px)/1.25 var(--serif); }
blockquote cite { display: block; margin-top: 10px; font: 13px/1.5 var(--sans); color: #d8d5cf; }
.connect { min-width: 190px; padding-left: 34px; border-left: 1px solid rgba(255,255,255,.45); }
.eyebrow.light { color: #d7dee3; }
.contact-links { display: flex; gap: 18px; margin-top: 18px; }
.contact-links a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; text-decoration: none; font-weight: 800; transition: background .2s ease, color .2s ease; }
.contact-links a:hover { background: white; color: var(--navy); }
.footer-bottom { margin-top: 70px; display: flex; justify-content: space-between; gap: 30px; color: #aeb9c1; text-transform: uppercase; letter-spacing: .12em; }
.footer-bottom small { font-size: 9px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 1441px) {
  .hero { border-radius: 0 0 2px 2px; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 32px, 760px); }
  .hero { min-height: 720px; background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(248,243,234,.93) 0%, rgba(248,243,234,.78) 48%, rgba(248,243,234,.08) 100%); }
  .nav { justify-content: flex-end; }
  .nav-toggle { display: block; position: relative; z-index: 5; }
  .nav-links { position: absolute; right: 0; top: 68px; width: min(320px, calc(100vw - 32px)); padding: 22px; display: none; flex-direction: column; gap: 18px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-content { min-height: 630px; align-items: flex-end; }
  .hero-copy { width: 72%; padding-bottom: 22px; }
  .hero-keywords { display: none; }
  .two-column, .education-faith-grid { grid-template-columns: 1fr; gap: 44px; }
  .thought-card { min-height: 400px; }
  .thought-card img { height: 400px; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .roles { padding-left: 0; border-left: 0; padding-top: 10px; }
  .footer-content { align-items: flex-start; flex-direction: column; }
  .connect { border-left: 0; padding-left: 0; }
}

@media (max-width: 620px) {
  .hero { min-height: 760px; background-position: 68% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(249,245,237,.9) 0%, rgba(249,245,237,.78) 50%, rgba(249,245,237,.2) 100%); }
  .hero-content { min-height: 670px; align-items: flex-end; }
  .hero-copy { width: 100%; padding-bottom: 28px; text-shadow: 0 1px 10px rgba(255,255,255,.7); }
  .hero h1 { font-size: 58px; }
  .hero-intro { font-size: 16px; max-width: 330px; }
  .section { padding: 58px 0; }
  .section-copy h2, .education h2, .roles h2 { font-size: 42px; }
  .values-grid { grid-template-columns: repeat(2,1fr); gap: 24px 18px; }
  .thought-card, .thought-card img { height: 420px; min-height: 420px; }
  .thought-overlay { inset: auto 0 0 0; padding: 22px; background: linear-gradient(180deg, transparent, rgba(19,29,38,.92)); }
  .thought-overlay p { font-size: 22px; }
  .mcm-card { min-height: 320px; }
  .mcm-mark { font-size: 88px; }
  .mcm-words { font-size: 9px; }
  .timeline { padding-left: 20px; }
  .timeline-item { grid-template-columns: 74px 1fr; gap: 14px; }
  .timeline-item::before { left: -19px; }
  .degree-badge { min-height: 52px; font-size: 15px; }
  .role-card { grid-template-columns: 48px minmax(0,1fr); padding: 17px 16px; gap: 14px; }
  .role-number { font-size: 22px; padding-right: 12px; }
  .role-card h3 { font-size: 22px; }
  .footer-bottom { flex-direction: column; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
