:root {
  --bg: #050403;
  --panel: rgba(18, 15, 13, 0.8);
  --panel-strong: rgba(26, 20, 16, 0.9);
  --line: rgba(255, 226, 190, 0.16);
  --text: #fff7e8;
  --muted: #d7bfa0;
  --accent: #f09b57;
  --accent-strong: #cf6330;
  --green: #8aa66d;
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 9%, rgba(207, 99, 48, 0.14), transparent 28rem),
    linear-gradient(180deg, #000 0%, #050403 46%, #080706 100%);
  font-family: "Oswald", Arial, sans-serif;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 9px 13px;
  background: var(--text);
  color: #120d0a;
}
.skip-link:focus { transform: translateY(0); }

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 226, 190, 0.08);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.64));
  transition: transform 240ms ease;
}
.site-nav.hidden { transform: translateY(-110%); }
.brand-mark {
  color: #fff8d6;
  font-size: 1.38rem;
  letter-spacing: 0.18em;
  text-decoration: none;
}
.nav-links { display: flex; justify-content: center; gap: clamp(12px, 2vw, 24px); }
.nav-links a, .nav-pill {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-pill:hover { color: var(--text); }
.nav-pill {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.about-hero {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.68fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 128px max(20px, calc((100% - var(--max)) / 2)) 126px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  color: #fff8d6;
  font-size: clamp(5.8rem, 12vw, 11.8rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-shadow: 0 0 34px rgba(255, 214, 145, 0.16);
}
.hero-intro {
  max-width: 61ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(240,155,87,0.56); }
.button.primary { color: #190d06; border-color: transparent; background: var(--accent); }

.profile-frame {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 190, 0.2);
  background: #080706;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.profile-frame img { width: 100%; aspect-ratio: 0.82; object-fit: cover; }
.profile-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  text-transform: uppercase;
}
.profile-frame span { color: #fff8d6; font-size: 1.25rem; letter-spacing: 0.1em; }
.profile-frame small { color: var(--accent); letter-spacing: 0.14em; }
.identity-log {
  position: absolute;
  right: max(20px, calc((100% - var(--max)) / 2));
  bottom: 28px;
  left: max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(240,155,87,0.2);
  background: rgba(8, 6, 5, 0.72);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  backdrop-filter: blur(5px);
}
.identity-log div { padding: 11px 14px; border-left: 1px solid rgba(255,226,190,0.1); }
.identity-log div:first-child { border-left: 0; }
.identity-log span, .education-grid span, .capability-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.identity-log strong { color: #fff8d6; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) 0;
}
.manifesto { border-top: 1px solid rgba(255,226,190,0.08); }
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 7vw, 100px);
}
h2 {
  margin-bottom: 18px;
  color: #fff3cf;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.manifesto p, .section-heading p, .timeline-entry p, .capability-grid p, .education-grid p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}
.section-heading { max-width: 680px; margin-bottom: 40px; }
.section-heading p:last-child { margin-bottom: 0; }

.timeline { border-top: 1px solid var(--line); }
.timeline-entry {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-entry.current { background: linear-gradient(90deg, rgba(240,155,87,0.08), transparent); }
.timeline-meta { padding-left: 12px; }
.timeline-meta span, .timeline-meta small {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.timeline-meta small { margin-top: 6px; color: var(--muted); }
.timeline-entry h3 { margin-bottom: 3px; color: #fff8d6; font-size: 1.7rem; text-transform: uppercase; }
.timeline-entry h4 { margin-bottom: 12px; color: var(--accent); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; }
.timeline-entry p { max-width: 76ch; margin-bottom: 0; }

.capability-grid, .education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.capability-grid article, .education-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(28,22,18,0.8), rgba(10,8,7,0.64));
}
.capability-grid h3, .education-grid h3 {
  margin-bottom: 9px;
  color: #fff8d6;
  font-size: 1.42rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.capability-grid p, .education-grid p { margin-bottom: 0; }
.education {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}
.education-grid article { min-height: 140px; }

.contact-band {
  padding: clamp(80px, 10vw, 140px) 20px;
  text-align: center;
  background:
    linear-gradient(rgba(5,4,3,0.76), rgba(5,4,3,0.95)),
    url("images/landing/bh2.webp") center / cover no-repeat;
}
.contact-band h2 { max-width: 850px; margin-right: auto; margin-left: auto; }
.contact-band div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.contact-band a { color: var(--accent); font-size: 1rem; letter-spacing: 0.08em; text-decoration: none; }
.contact-band a:hover { color: var(--text); }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--text); text-decoration: none; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .about-hero { grid-template-columns: 1fr; padding-top: 104px; padding-bottom: 190px; }
  .profile-frame { justify-self: start; width: min(100%, 390px); }
  .identity-log { grid-template-columns: repeat(2, minmax(0, 1fr)); bottom: 18px; }
  .manifesto-grid, .education { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(5rem, 24vw, 7.4rem); }
  .timeline-entry { grid-template-columns: 1fr; gap: 12px; }
  .timeline-meta { padding-left: 0; }
  .capability-grid, .education-grid { grid-template-columns: 1fr; }
  .identity-log strong { font-size: 0.76rem; }
  .site-footer { flex-direction: column; }
}
