:root{
  --navy-900:#0b1b2b;
  --navy-850:#0e2135;
  --navy-800:#10263a;

  --ivory-50:#fbfaf7;
  --ivory-100:#f6f1e9;
  --ivory-200:#efe7dc;

  --ink-900:#0e1621;
  --ink-700:#2a3646;

  --gold-500:#c9b08b;
  --gold-600:#b99b6f;

  --stroke:rgba(15, 25, 36, .10);
  --stroke-dark:rgba(255,255,255,.12);

  --shadow: 0 22px 60px rgba(0,0,0,.10);
  --shadow-soft: 0 16px 44px rgba(0,0,0,.10);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--ivory-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

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

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border-radius:10px;
  box-shadow: var(--shadow-soft);
  z-index:9999;
}

/* =========================
   Premium Header (rewrite)
   ========================= */

:root{
  --nav-bg: rgba(10, 18, 28, .58);         /* slightly lighter + more “glass” */
  --nav-bg-strong: rgba(10, 18, 28, .78);  /* for fallback / deeper areas */
  --nav-border: rgba(255,255,255,.10);
  --nav-border-soft: rgba(255,255,255,.06);

  --nav-text: rgba(255,255,255,.92);
  --nav-muted: rgba(255,255,255,.72);

  --gold: rgb(201,176,139);
  --gold-soft: rgba(201,176,139,.30);

  --shadow-lg: 0 18px 50px rgba(0,0,0,.35);
  --shadow-md: 0 10px 28px rgba(0,0,0,.25);
  --shadow-sm: 0 8px 18px rgba(0,0,0,.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Header surface */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;

  /* Layering order: overlays first (top), then texture image (bottom) */
  background:
    /* 1) subtle top sheen */
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 55%),
    /* 2) dark tint for legibility */
    linear-gradient(180deg, rgba(10,18,28,.72), rgba(10,18,28,.60)),
    /* 3) your texture image */
    url("assets/header-background.png");

  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;

  /* Frosted glass effect over the texture */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 0.5px solid rgba(201, 176, 139, 0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);

  /* Helps some browsers render sticky blur more cleanly */
  transform: translateZ(0);
}

/* Luxury hairline highlight */
.site-header::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,176,139,.32), transparent);
  opacity: .9;
  pointer-events:none;
}

/* Subtle vignette to “frame” the nav text (makes it feel expensive) */
.site-header::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 220px at 50% 0%, rgba(0,0,0,.22), transparent 60%),
    radial-gradient(900px 260px at 50% 120%, rgba(0,0,0,.18), transparent 60%);
  opacity: .9;
}

/* Layout */
.nav-inner{
  max-width: 1160px;
  margin: 0 auto;

  /* Premium headers breathe a little more */
  padding: 12px 24px;

  display:flex;
  align-items:center;
  gap: 26px;

  position: relative; /* ensures above ::after sheen */
  z-index: 1;
}
.page-top{
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
}
.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;
}

.menu-wrapper{
  margin-left: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.menu-toggle{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(201,176,139,.35);
  background: rgba(10,18,28,.32);
  color: var(--nav-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.menu-toggle:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(201,176,139,.6);
}
.menu-toggle:focus-visible{
  outline: 2px solid rgba(201,176,139,.55);
  outline-offset: 3px;
}
.menu-bars{
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--nav-text);
  transition: background .2s ease;
}
.menu-bars::before,
.menu-bars::after{
  content:"";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--nav-text);
  transition: transform .2s ease, top .2s ease;
}
.menu-bars::before{ top: -6px; }
.menu-bars::after{ top: 6px; }

.site-menu{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(201,176,139,.25);
  background: rgba(10,18,28,.96);
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 6px;
}
.site-menu a{
  color: var(--nav-text);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.site-menu a:hover{
  background: rgba(201,176,139,.16);
  color: #fff;
}
.site-header.menu-open .site-menu{
  display: flex;
}
.site-header.menu-open .menu-bars{
  background: transparent;
}
.site-header.menu-open .menu-bars::before{
  top: 0;
  transform: rotate(45deg);
}
.site-header.menu-open .menu-bars::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Brand */
.brand{
  color: var(--nav-text);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  /* If you’re using DM Serif in the hero, this ties it together nicely */
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;

  /* tiny optical alignment helps “premium” feel */
  transform: translateY(-.5px);
}

.brand-text{
  display: inline-flex;
  flex-direction: column;
  line-height: 1.3;
  letter-spacing: .02em;
}

.brand-name{
  font-size: 20px;
  letter-spacing: .06em;
  font-weight: 600;
}

.brand-title{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--nav-muted);
}

.brand-logo{
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Keyboard focus (premium but accessible) */
.nav-links a:focus-visible,
.brand:focus-visible,
.nav-cta:focus-visible{
  outline: 2px solid rgba(201,176,139,.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Slightly tighten header on scroll-heavy pages (optional).
   If you later add a "scrolled" class via JS, you can shrink padding. */
/*
.site-header.is-scrolled .nav-inner{
  padding: 12px 24px;
}
*/

/* Responsive behavior */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-inner{
    justify-content: space-between;
    gap: 14px;
  }
  .brand{ font-size: 17px; }
  .brand-text{ letter-spacing: .01em; }
  .brand-name{ font-size: 17px; }
  .brand-title{ font-size: 11px; letter-spacing: .22em; }
  .brand-logo{
    height: 36px;
    max-width: 190px;
  }
}

@media (max-width: 520px){
  .nav-inner{ padding: 10px 16px; }
  .brand{ gap: 10px; }
  .nav-cta{
    padding: 10px 14px;
    letter-spacing: .08em;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .nav-links a,
  .nav-links a::after,
  .nav-cta,
  .btn,
  .btn-primary::after{
    transition: none;
  }
  .btn-primary::after{
    opacity:0;
  }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing:.2px;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space:nowrap;
}
.btn:focus-visible{
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}
.btn:active{transform: translateY(1px)}
.btn-lg{padding: 13px 16px; font-size: 15px}

.btn-primary{
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(201,176,139,.92), rgba(185,155,111,.92));
  color: #1b2430;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.12);
}
.btn-primary::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-120%;
  width: 65%;
  height: 220%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.7), transparent 70%);
  opacity:0;
  transform: translateX(0);
  transition: transform .8s var(--ease), opacity .25s ease;
  mix-blend-mode: screen;
  pointer-events:none;
}
.btn-primary:hover{
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
  transform: translateY(-1px);
}
.btn-primary:hover::after{
  opacity:1;
  transform: translateX(250%);
}
.btn-primary:focus-visible{
  outline: 2px solid rgba(201,176,139,.8);
  outline-offset: 4px;
}


/* HERO
   IMPORTANT: Background is applied to .hero (true background),
   so it can never cover the hero content.
*/
.hero{
  position:relative;
  display:flex;
  flex-direction:column;
  color:#fff;
  min-height: 660px;
  --hero-top-pad: 96px;
  --hero-portrait-top-offset: 64px;

  /* Your hero background stack */
  --hero-bg: radial-gradient(900px 520px at 72% 32%, rgba(201, 176, 139, .16), transparent 58%), radial-gradient(900px 520px at 18% 24%, rgba(255, 255, 255, .06), transparent 62%), linear-gradient(180deg, rgba(11, 27, 43, .55), rgba(11, 27, 43, .65)), url(assets/hero-bg.png) center / cover no-repeat;
  background: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  --strip-height: 86px;      /* approx strip height */
  --shelf-tail: 24px;        /* ivory below the strip */
  --shelf-height: calc(var(--strip-height) + var(--shelf-tail));
  --shelf-half: calc(var(--shelf-height) * 0.5);
  --shelf-cut: var(--shelf-half);
  padding: var(--hero-top-pad) 0 0;

}

/* Layout */
.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  flex: 1 1 auto;
}

.hero-copy{
  max-width: 640px;
}

.hero-title{
  margin:0 0 18px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight:400;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: .2px;
}

.hero-subtitle{
  margin: 0 0 28px 0;
  max-width: 52ch;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Portrait anchored like the mock */
.hero-portrait{
  position:absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: var(--shelf-cut);
  width: min(520px, 44vw);
  height: calc(100% - var(--hero-portrait-top-offset) - var(--shelf-cut));
  pointer-events:none;
  z-index: 1;
}
.hero-portrait img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter: drop-shadow(0 25px 20px rgba(79, 69, 64, 1));
}

/* HERO STRIP — stable layout */
.hero-shelf-wrap{
  position: relative;
  z-index: 2;
  margin-top: auto;
  height: var(--shelf-height);
}
.hero-shelf-ivory{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 50%;
  z-index: 0;
  background: #f7f2ea;
}
.hero-shelf{
  position: relative;
  z-index: 1;
  height: 100%;
  display:flex;
  align-items:center;
  backdrop-filter: blur(6px);
}
.hero-strip{
  /* width: min(var(--max), calc(100% - 48px)); */
  padding: 18px 22px;
  margin: 0 auto;
  --strip-divider-gap: 16px;

  position: relative;
  z-index: 1;
  min-height: var(--strip-height);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 0; /* spacing comes from padding & flex */

  border-radius: 10px;
  background: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}
.strip-break-next{
  display:inline;
}
.strip-item{
  align-self:flex-start;
}

.strip-item{
  flex: 1 1 0;
  padding: 6px var(--strip-divider-gap);
  text-align:center;
  min-width: 0; /* allows long text to wrap instead of pushing layout */
}

.strip-top{
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  letter-spacing: .2px;
  white-space: nowrap; /* keep top line crisp like the mock */
}

.strip-accent{
  color: rgba(201,176,139,.95);
}

.strip-sub{
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);

  /* allow the long right-most subtitle to wrap neatly */
  white-space: normal;
  line-height: 1.35;
}

.strip-divider{
  width:1px;
  height: calc(var(--strip-height) * 0.7);
  margin-inline: var(--strip-divider-gap);
  flex: 0 0 1px;
  align-self:center;
  background: linear-gradient(180deg, rgba(201,176,139,0), rgba(201,176,139,.55), rgba(201,176,139,.28), rgba(201,176,139,0));
  opacity:.85;
}

/* Sections */
.section{
  padding: 78px 0;
  position: relative;
}

.bg-ivory{
  position: relative;
  background: var(--ivory-100);
}
.bg-ivory-alt{
  position: relative;
  background: var(--ivory-50);
}

/* ensure content is above the texture pseudo-element */
.bg-ivory > .container,
.bg-ivory-alt > .container{
  position:relative;
  z-index: 1;
}

.section-overlap{
  padding-top: 78px;
}

.section-divider-top{
  border-top: 1px solid rgba(15,25,36,.08);
}

.section-head{
  margin-bottom: 28px;
}
.section-head.centered{
  text-align:center;
  max-width: 760px;
  margin-inline:auto;
}

.kicker{
  margin:0 0 10px;
  text-transform:uppercase;
  font-size:18px;
  letter-spacing:.22em;
  color: var(--ink-700);
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.kicker::before,
.kicker::after{
  content:"";
  height:1px;
  width:34px;
  background: linear-gradient(90deg, transparent, rgba(185,155,111,.7), transparent);
}

.h2{
  margin: 0 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight:400;
  font-size: clamp(30px, 3vw, 40px);
  line-height:1.1;
  letter-spacing:.2px;
}
.lede{
  margin:0;
  color: rgba(42,54,70,1);
  max-width: 70ch;
}
.centered .lede{margin-inline:auto}

.cards{
  display:grid;
  gap: 18px;
}
.cards.two-up{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#personal-story .cards.two-up{
  grid-template-columns: 1fr;
}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,25,36,.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px;
}
.reveal-on-scroll{
  opacity:0;
  transform: translateY(18px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transition: opacity .6s ease, transform .6s ease, box-shadow .6s ease;
}
.reveal-on-scroll.is-visible{
  opacity:1;
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}
.h3{
  margin:0 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight:400;
  font-size: 22px;
  line-height:1.1;
}
.h4{
  margin:0 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight:400;
  font-size: 19px;
  line-height:1.15;
}
.card p{margin:0; color: rgba(42,54,70,1)}
.card p:not(:last-child){margin-bottom: 0.75rem}

/* About */
.about-primary{
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.about-primary > .card{
  height: auto;
}
.about-feature{
  margin-bottom: 0;
}
.about-education p:not(:last-child){
  margin-bottom: 10px;
}
.about-list{
  margin:0;
  padding-left: 18px;
  color: rgba(42,54,70,1);
  line-height:1.6;
}
.about-list li{
  margin:6px 0;
}

.about-support{
  margin-top: 32px;
}
.about-support .about-list{
  margin-top: 12px;
}
.about-support .card{
  transition: opacity .6s ease, transform .6s ease, box-shadow .6s ease, border-color .18s ease;
}

/* Career */
.career{
  margin-top: 10px;
  position: relative;
  padding-left: 22px;
}
.career::before{
  content:"";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(15, 25, 36, .12);
}
.career-subtitle, .pubs-subtitle{
  margin: 6px 0 16px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
}
.career-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.career-item{
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, max-content);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 25, 36, .08);
}
.career-item:first-child{
  border-top: 0;
}
.career-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 176, 139, .35);
  background: rgba(201, 176, 139, .12);
  color: rgba(42, 54, 70, .82);
  white-space: nowrap;
}
.career-badge--court{
  background: rgba(15, 25, 36, .06);
  border-color: rgba(15, 25, 36, .12);
}
.career-badge--government{
  background: rgba(201, 176, 139, .10);
}
.career-badge--teaching{
  background: rgba(255, 255, 255, .4);
}
.career-role{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(15, 25, 36, .92);
}
.career-area{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
  opacity: .78;
}
.career-meta{
  text-align: right;
  min-width: 0;
}
.career-org{
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  opacity: .82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.career-loc{
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .60;
}

/* Publications and Speaking */
.pubs{
  margin-top: 14px;
  position: relative;
  padding-left: 22px;
}
.pubs::before{
  content:"";
  position: absolute;
  left: 8px;
  top: 56px;
  bottom: 10px;
  width: 1px;
  background: rgba(15, 25, 36, .14);
}
.pubs-yearTitle{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .85;
  margin: 18px 0 10px;
}
.pubs-year + .pubs-year{
  border-top: 1px solid rgba(15, 25, 36, .08);
  margin-top: 18px;
  padding-top: 8px;
}
.pubs-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.pubs-item{
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
}
.pubs-item + .pubs-item{
  border-top: 1px solid rgba(15, 25, 36, .08);
}
.pubs-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 176, 139, .35);
  background: rgba(201, 176, 139, .12);
  color: rgba(42, 54, 70, .82);
  text-align: center;
}
.pubs-badge--moderator{
  background: rgba(201, 176, 139, .14);
}
.pubs-badge--speaker{
  background: rgba(201, 176, 139, .10);
}
.pubs-badge--panelist{
  background: rgba(201, 176, 139, .08);
}
.pubs-badge--coauthor{
  background: rgba(201, 176, 139, .16);
}
.pubs-main{
  min-width: 0;
}
.pubs-title{
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}
.pubs-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
  color: rgba(42, 54, 70, .75);
}
.pubs-venue{
  font-size: 14px;
  opacity: .85;
}
.pubs-metaNote{
  font-size: 14px;
  opacity: .75;
}
.pubs-sep{
  opacity: .45;
  font-size: 12px;
}
.pubs-date{
  text-align: right;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
  padding-top: 2px;
  white-space: nowrap;
}

/* Who I Serve */
.who-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}
.who-card{
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,25,36,.10);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.industry-list{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.industry{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,25,36,.04);
  border: 1px solid rgba(15,25,36,.08);
  color: rgba(42,54,70,1);
  font-size: 13px;
  text-align:center;
}

/* Approach */
.approach-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.approach-panel{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,25,36,.10);
  border-radius: var(--radius-xl);
  padding: 22px 22px;
  box-shadow: var(--shadow-soft);
}
.approach-panel p{margin:0; color: rgba(42,54,70,1)}

/* CTA */
.cta{
  position:relative;
  padding: 84px 0;
  color:#fff;
  overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  --cta-bg: linear-gradient(180deg, rgba(10,22,36,.3), rgba(10,22,36,.3)),
    url(assets/contact-bg.png) center / cover no-repeat;
  background: var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.cta-inner{position:relative}

.cta-box{
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(160deg, rgba(9,18,30,.5), rgba(9,18,30,.5));
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
  padding: 34px 30px;
  max-width: 860px;
  margin-inline:auto;
  text-align:center;
}
.cta-title{
  margin:0 0 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight:400;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height:1.02;
  letter-spacing:.2px;
}
.cta-lede{
  margin: 0 auto 22px;
  max-width: 72ch;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height:1.6;
}
.cta-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 12px 0 14px;
}
.cta-note{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

/* Footer */
.site-footer{
  background: var(--navy-900);
  color: rgba(255,255,255,.84);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 26px;
  padding: 34px 0 22px;
}
.footer-brand{
  font-weight:600;
  color:#fff;
  letter-spacing:.2px;
  margin-bottom:8px;
}
.footer-desc{
  margin:0;
  max-width: 54ch;
  color: rgba(255,255,255,.74);
}
.footer-right{
  display:flex;
  gap: 34px;
}
.footer-col{min-width: 180px}
.footer-label{
  text-transform:uppercase;
  font-size: 12px;
  letter-spacing:.22em;
  color: rgba(201,176,139,.92);
  margin-bottom: 10px;
}
.footer-link{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.82);
}
.footer-bottom{
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-bottom p{
  margin:0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}
.footer-disclaimer{
  max-width: 86ch;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .nav-mobile{display:inline-flex}

  .hero{
    padding-top: 50px;
    min-height: auto;
    --hero-top-pad: 120px;
    --hero-portrait-top-offset: 80px;
  }

  .hero-copy{
    max-width: none;
  }

  .hero-subtitle{
    max-width: none;
  }

  .hero-portrait{
    position:relative;
    right:auto;
    bottom:auto;
    width: min(520px, 92vw);
    height:auto;
    margin: 26px auto 0;
  }
  .hero-portrait img{
    height:auto;
  }

  .hero-strip{
    width: min(var(--max), calc(100% - 32px));
  }

  .cards.two-up{grid-template-columns: 1fr}
  .who-grid{grid-template-columns: 1fr}
  .approach-grid{grid-template-columns: 1fr}
  .industry-list{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .about-support{margin-top: 24px}

  .footer-inner{flex-direction:column}
  .footer-right{flex-direction:column}
}

@media (max-width: 820px){
  .pubs-item{
    grid-template-columns: 120px 1fr;
    column-gap: 14px;
    row-gap: 0;
  }
  .pubs-date{
    grid-column: 2;
    text-align: left;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 900px){
  .career-item{
    grid-template-columns: 110px minmax(0, 1fr) minmax(0, max-content);
  }
}

@media (max-width: 720px){
  .career-item{
    grid-template-columns: 110px 1fr;
    gap: 0 14px;
  }
  .career-meta{
    grid-column: 2;
    text-align: left;
    margin-top: 6px;
  }
  .career-loc{
    display: inline-block;
  }
}

@media (min-width: 980px){
  .strip-break-next{
    display:block;
  }
  .about-primary{
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    grid-auto-rows: 1fr;
  }
  .about-primary > .card{
    height: 100%;
  }
}

@media (max-width: 700px){
  .hero{
    --strip-height: 140px;
    --shelf-tail: 28px;
  }
  .hero-strip{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
  .strip-item{
    text-align: center;
    flex: 1 1 calc(50% - 6px);
  }
  .strip-divider{display:none}
  .strip-item:last-child{
    flex-basis: 100%;
  }
}

@media (max-width: 650px){
  .hero-shelf .container{
    width: 95%;
  }
  .hero-strip{
    width: 100%;
  }
}

@media (max-width: 520px){
  .pubs{
    padding-left: 18px;
  }
  .pubs::before{
    left: 6px;
  }
  .pubs-item{
    grid-template-columns: 1fr;
  }
  .pubs-badge{
    width: fit-content;
    margin-bottom: 12px;
  }
  .pubs-date{
    grid-column: auto;
    text-align: left;
  }
  .career{
    padding-left: 18px;
  }
  .career::before{
    left: 6px;
  }
  .career-item{
    grid-template-columns: 1fr;
  }
  .career-badge{
    width: fit-content;
    margin-bottom: 12px;
  }
  .career-meta{
    grid-column: auto;
    margin: 0;
  }
  .career-area {
    margin: 0;
  }
  .career-loc{
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
  .reveal-on-scroll{
    opacity:1;
    transform:none;
    transition:none;
  }
}

@media (max-width: 1400px){
  .hero-title{
    max-width: 80%;
  }
  .hero-subtitle{
    max-width: 80%;
  }
}
