/* =========================================================
   Evan D. Williams — Executive Portfolio
   Theme: Deep navy + muted gold, executive, restrained
   ========================================================= */

:root {
  /* Palette */
  --bg: #0B1220;
  --bg-elevated: #0F1A2E;
  --surface: #15233D;
  --surface-2: #1B2A47;
  --border: rgba(201, 169, 97, 0.18);
  --border-strong: rgba(201, 169, 97, 0.35);
  --hairline: rgba(230, 235, 242, 0.08);

  --text: #E6EBF2;
  --text-muted: #A6B3C7;
  --text-dim: #6E7E97;

  --gold: #C9A961;
  --gold-bright: #E0BE74;
  --gold-soft: rgba(201, 169, 97, 0.12);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: clamp(22px, 2.2vw, 28px);
  --text-2xl: clamp(28px, 3.2vw, 40px);
  --text-3xl: clamp(36px, 4.5vw, 56px);
  --text-hero: clamp(40px, 5.5vw, 68px);

  --container: 1180px;
  --container-narrow: 880px;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Subtle background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 169, 97, 0.05), transparent 70%),
    radial-gradient(ellipse 40% 30% at 100% 100%, rgba(201, 169, 97, 0.03), transparent 70%);
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 var(--space-6);
  color: var(--text);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); font-weight: 600; }
h4 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 var(--space-4); color: var(--text-muted); }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-bright); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container--narrow { max-width: var(--container-narrow); }

section { padding: var(--space-16) 0; }

/* Eyebrow / small label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-title {
  position: relative;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-8);
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.55;
  max-width: 65ch;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--space-2) 0;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--text);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 8px 0;
}
.btn--ghost:hover { color: var(--gold-bright); }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* ===== Hero ===== */
.hero {
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--gold-soft);
  max-width: 100%;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .hero-role {
    border-radius: 12px;
    padding: 10px 14px;
    letter-spacing: 0.12em;
  }
}
.hero-value {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

/* ===== Stat tiles ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.stat {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.stat:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ===== Cards / panels ===== */
.panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-8);
  transition: border-color var(--transition);
}
.panel:hover { border-color: var(--border); }

/* ===== Two-column generic ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* ===== About-specific ===== */
.about-content {
  max-width: 760px;
}
.competencies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.chip {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: all var(--transition);
}
.chip:hover {
  color: var(--gold);
  border-color: var(--border-strong);
}

/* ===== Resume / Timeline ===== */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.role {
  position: relative;
  padding-bottom: var(--space-8);
}
.role:last-child { padding-bottom: 0; }
.role::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
}
.role-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.role-title {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.role-dates {
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.role-company {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.role-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-bullets li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.role-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.role-bullets strong { color: var(--text); font-weight: 600; }

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.education-card {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.education-card h4 {
  margin: 0 0 var(--space-2);
  color: var(--text);
  font-size: 15px;
}
.education-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Leadership pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.pillar {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.pillar:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}
.pillar h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0 0 var(--space-3);
  color: var(--text);
}
.pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.pullquote {
  border-left: 2px solid var(--gold);
  padding: var(--space-2) var(--space-8);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin: var(--space-8) 0;
  max-width: 65ch;
}

/* ===== Project cards ===== */
.project {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-8) var(--space-12);
  margin-bottom: var(--space-4);
  transition: border-color var(--transition);
}
@media (max-width: 920px) {
  .project { padding: var(--space-6) var(--space-8); }
}
.project:hover { border-color: var(--border); }
.project-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--hairline);
}
.project-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}
.project-org {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
}
.project-meta {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.project-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-2) var(--space-8);
  align-items: start;
}
.project-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}
.project-value {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.project-value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-value li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: 4px;
}
.project-value li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.project-value strong { color: var(--text); font-weight: 600; }
.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ===== Career Highlights ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.highlight {
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.highlight:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.highlight-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.highlight h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 var(--space-3);
  color: var(--text);
  line-height: 1.2;
}
.highlight p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
input, select, textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
textarea { resize: vertical; min-height: 140px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23C9A961' d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-info {
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.contact-info h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.contact-list li:last-child { border: 0; }
.contact-list .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-list .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-right: var(--space-2);
}

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: var(--space-2);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: var(--space-24);
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-8);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  margin-bottom: var(--space-8);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.footer-brand svg { width: 28px; height: 28px; color: var(--gold); }
.footer-tag {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.5;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-4);
  font-family: var(--font-sans);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--space-6) 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Subhero (interior pages) ===== */
.subhero {
  padding: var(--space-16) 0 var(--space-8);
  border-bottom: 1px solid var(--hairline);
}
.subhero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  max-width: 22ch;
}
.subhero .lead { color: var(--text-muted); }

/* ===== Reveal animation (subtle, accessible) =====
   Default state is VISIBLE so content is always available
   (works with no-JS, print, and reduced motion).
   JS adds .reveal-init on load to enable the entrance animation. */
.reveal { opacity: 1; transform: none; }
.js-reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Prose (privacy page) ===== */
.prose {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.prose h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.prose ul { padding-left: var(--space-6); }
.prose li { margin-bottom: var(--space-2); }
.prose strong { color: var(--text); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--hairline);
    padding: var(--space-4) var(--space-6);
    gap: var(--space-2);
  }
  .nav-links.is-open a { padding: var(--space-3) 0; width: 100%; }

  .about-content { max-width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .education-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .two-col { grid-template-columns: 1fr; gap: var(--space-8); }
  .project { padding: var(--space-8); }
  .project-body { grid-template-columns: 1fr; gap: var(--space-2) 0; }
  .project-label { padding-top: var(--space-3); }
  .project-value { padding-bottom: var(--space-3); border-bottom: 1px solid var(--hairline); }
  .project-value:last-child { border: 0; }
  section { padding: var(--space-16) 0; }
  .hero { padding: var(--space-16) 0; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .role-header { flex-direction: column; gap: var(--space-1); }
  .project-meta { text-align: left; }
}
