:root {
  --navy: #081625;
  --navy-2: #0a1a2f;
  --navy-3: #102b45;
  --gold: #c9a227;
  --gold-light: #e6c85c;
  --cream: #f2efe7;
  --paper: #fbfaf6;
  --ink: #111821;
  --muted: #65707c;
  --line: rgba(10, 26, 47, 0.14);
  --white: #ffffff;
  --max: 1240px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -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.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

::selection { background: var(--gold); color: var(--navy); }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}
.nav-toggle:focus {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-200%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(8, 22, 37, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .12em;
}
.brand-name { font-size: 15px; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-light); }
.site-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.nav-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 24%, rgba(201,162,39,.16), transparent 23%),
    linear-gradient(135deg, #050e18 0%, var(--navy-2) 48%, #061321 100%);
  padding: 138px 0 90px;
}
.hero-grid, .contact-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .16; }
.hero-glow-one { width: 420px; height: 420px; background: var(--gold); right: 6%; top: 12%; }
.hero-glow-two { width: 260px; height: 260px; background: #4d88b5; left: 16%; bottom: 3%; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.js-loading .hero-content,
.js-loading .hero-glow { visibility: hidden; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #785c0c; }
.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6.4vw, 96px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 span { color: var(--gold-light); }
.hero-lede {
  max-width: 780px;
  margin: 34px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255,255,255,.72);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 42px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.credential-strip span { display: flex; align-items: center; gap: 10px; }
.credential-strip span:not(:last-child)::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.portrait-stage { position: relative; min-height: 610px; }
.portrait-frame {
  position: absolute;
  inset: 20px 0 20px 30px;
  overflow: hidden;
  border: 1px solid rgba(230,200,92,.45);
  background:
    linear-gradient(150deg, rgba(201,162,39,.18), transparent 44%),
    radial-gradient(circle at 50% 34%, #1a405f, #091827 70%);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  width: 72%;
  aspect-ratio: .77;
  left: 14%;
  top: 11%;
  border-radius: 50% 50% 18% 18%;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.15));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: inset 0 0 70px rgba(201,162,39,.12);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,14,24,.94), transparent 58%);
}
.portrait-noise {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}
.portrait-monogram {
  position: absolute;
  z-index: 1;
  inset: 12% 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(120px, 14vw, 210px);
  color: rgba(255,255,255,.08);
  letter-spacing: -.08em;
}
.portrait-caption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.portrait-caption p { margin: 0; font-family: var(--serif); font-size: 29px; line-height: 1.1; }
.portrait-caption span { color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; text-align: right; }
.evidence-tag {
  position: absolute;
  z-index: 3;
  padding: 6px 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
  box-shadow: 0 7px 20px rgba(0,0,0,.18);
}
.tag-one { left: 42px; top: 70px; transform: rotate(-3deg); }
.tag-two { right: 12px; top: 82px; transform: rotate(2deg); }
.tag-three { right: 12px; bottom: 130px; transform: rotate(-2deg); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.scroll-cue i { width: 38px; height: 1px; background: var(--gold); }

.section { padding: clamp(90px, 11vw, 160px) 0; }
.story-section { background: var(--cream); }
.story-layout {
  display: grid;
  grid-template-columns: 80px minmax(0, .9fr) minmax(340px, .8fr);
  gap: 40px clamp(45px, 7vw, 100px);
  align-items: start;
}
.section-number {
  color: #785c0c;
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
}
.story-heading h2, .section-intro h2, .speaking-copy h2, .media-title h2, .contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}
.story-heading h2 { font-size: clamp(40px, 5vw, 70px); }
.story-copy p { margin: 0 0 22px; color: #3e4851; }
.story-copy .lead { color: var(--ink); font-size: 20px; line-height: 1.55; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 90px;
  background: rgba(10,26,47,.13);
  border: 1px solid rgba(10,26,47,.13);
}
.principle { background: var(--paper); padding: 38px; min-height: 260px; }
.principle span { color: #785c0c; font-family: var(--serif); font-size: 30px; }
.principle h3 { margin: 45px 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); }

.timeline-section { background: var(--navy); color: var(--white); }
.section-intro { max-width: 900px; }
.section-intro h2 { font-size: clamp(42px, 5.3vw, 74px); }
.timeline { margin-top: 80px; border-top: 1px solid rgba(255,255,255,.16); }
.timeline-item {
  display: grid;
  grid-template-columns: minmax(130px, .3fr) 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.timeline-year { color: var(--gold-light); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.timeline-item h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); font-weight: 400; }
.timeline-item p { max-width: 800px; margin: 0; color: rgba(255,255,255,.62); }

.work-section { background: var(--paper); }
.section-intro.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 60px;
  align-items: end;
}
.section-intro.split p:last-child { margin: 0; color: var(--muted); font-size: 18px; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 70px; }
.work-card { border: 1px solid var(--line); background: var(--white); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(10,26,47,.12); }
.work-card-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.work-index { color: #785c0c; font-family: var(--serif); font-size: 24px; }
.work-type { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.work-art {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #071320, #143b5a);
}
.work-card-body { padding: 30px; }
.work-card-body h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.work-card-body p { margin: 0 0 26px; color: var(--muted); }
.work-card-body a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: #785c0c; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.work-card-body a:hover { color: var(--navy); }

.speaking-section { position: relative; overflow: hidden; background: #071320; color: var(--white); }
.speaking-orbit { position: absolute; border: 1px solid rgba(201,162,39,.18); border-radius: 50%; }
.orbit-one { width: 700px; height: 700px; right: -260px; top: -150px; }
.orbit-two { width: 460px; height: 460px; left: -180px; bottom: -190px; }
.speaking-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); }
.speaking-copy { position: sticky; top: 130px; align-self: start; }
.speaking-copy h2 { font-size: clamp(42px, 5vw, 70px); }
.speaking-copy > p:not(.eyebrow) { margin: 28px 0 34px; color: rgba(255,255,255,.65); font-size: 18px; }
.topics { border-top: 1px solid rgba(255,255,255,.17); }
.topics article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.topics article > span { color: var(--gold); font-family: var(--serif); font-size: 28px; }
.topics h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.topics p { margin: 0; color: rgba(255,255,255,.56); }

.media-section { background: var(--cream); }
.media-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 100px; }
.media-title h2 { font-size: clamp(42px, 5vw, 70px); }
.media-copy p { margin: 0 0 22px; color: #404a53; font-size: 18px; }
.media-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 40px; background: rgba(10,26,47,.14); border: 1px solid rgba(10,26,47,.14); }
.media-facts div { min-height: 155px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); }
.media-facts strong { color: #785c0c; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.media-facts span { font-family: var(--serif); font-size: 22px; line-height: 1.25; }

.contact-section { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0; background: var(--navy); color: var(--white); }
.contact-grid { opacity: .13; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy h2 { font-size: clamp(48px, 6vw, 84px); }
.contact-copy > p:last-child { max-width: 560px; margin: 26px 0 0; color: rgba(255,255,255,.62); font-size: 18px; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.19); }
.contact-link { display: grid; grid-template-columns: 90px 1fr 25px; gap: 20px; align-items: center; min-height: 100px; border-bottom: 1px solid rgba(255,255,255,.19); text-decoration: none; }
.contact-link > span { color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-link strong { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 31px); font-weight: 400; }
.contact-link i { font-style: normal; color: var(--gold-light); font-size: 24px; transition: transform .2s ease; }
.contact-link:hover i { transform: translate(4px, -4px); }

.site-footer { background: #030a11; color: var(--white); padding: 60px 0 24px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 45px; }
.footer-brand { margin-bottom: 16px; }
.footer-top p { margin: 0; color: rgba(255,255,255,.45); }
.social-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 28px; align-content: start; }
.social-links a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.social-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js-ready .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .site-header { height: 72px; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.22);
    background: transparent;
    color: white;
  }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background: rgba(8,22,37,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { min-height: 44px; display: flex; align-items: center; font-family: var(--serif); font-size: 30px; font-weight: 400; text-transform: none; letter-spacing: -.02em; }
  .site-nav .nav-cta { border: 0; padding: 0; }
  .hero-content { grid-template-columns: 1fr; }
  .portrait-stage { min-height: 500px; max-width: 520px; width: 100%; margin-inline: auto; }
  .tag-one { left: 42px; top: 58px; }
  .tag-two { right: 14px; top: 76px; }
  .tag-three { right: 14px; bottom: 132px; }
  .story-layout { grid-template-columns: 70px 1fr; }
  .story-copy { grid-column: 2; }
  .speaking-layout, .contact-layout { grid-template-columns: 1fr; }
  .speaking-copy { position: static; }
  .media-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-name { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(43px, 13vw, 65px); }
  .credential-strip { display: grid; gap: 10px; }
  .credential-strip span::after { display: none; }
  .portrait-stage { min-height: 440px; }
  .portrait-frame { inset: 10px 4px; }
  .portrait-caption {
    left: 22px;
    right: 22px;
    bottom: 24px;
    display: grid;
    gap: 9px;
  }
  .portrait-caption span { justify-self: end; }
  .tag-one { left: 16px; top: 38px; }
  .tag-two { right: 16px; top: 58px; }
  .tag-three { right: 16px; bottom: 145px; }
  .story-layout { grid-template-columns: 1fr; gap: 28px; }
  .section-number { font-size: 48px; }
  .story-copy { grid-column: auto; }
  .principles-grid, .work-grid, .section-intro.split, .media-layout { grid-template-columns: 1fr; }
  .principles-grid { margin-top: 60px; }
  .principle { min-height: 220px; }
  .timeline-item { grid-template-columns: 1fr; gap: 13px; }
  .media-facts { grid-template-columns: 1fr; }
  .media-title, .media-copy { grid-column: 1; }
  .media-title, .media-copy, .media-facts { min-width: 0; }
  .media-facts span { overflow-wrap: anywhere; }
  .contact-link { grid-template-columns: 1fr 28px; gap: 7px 16px; padding: 24px 0; }
  .contact-link > span { grid-column: 1; }
  .contact-link strong { grid-column: 1; word-break: break-word; }
  .contact-link i { grid-column: 2; grid-row: 1 / 3; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .social-links { justify-content: flex-start; }
}

/* Version 3: personal portrait and real project artwork */
.hero-title-first { color: var(--white) !important; }
.portrait-frame {
  background: #0a1a2f;
}
.portrait-frame::before,
.portrait-frame::after,
.portrait-noise,
.portrait-monogram { display: none; }
.portrait-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,14,24,.93) 0%, rgba(5,14,24,.26) 42%, transparent 68%);
}
.portrait-caption { z-index: 2; }

.work-art-image {
  width: 100%;
  height: 100%;
  display: block;
}
.work-art-image.cover { object-fit: cover; object-position: center; }


.contact-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

@media (max-width: 700px) {
  .portrait-frame > img { object-position: center center; }
}
