:root {
  --navy: #172f6b;
  --navy-deep: #0e1e49;
  --navy-soft: #244584;
  --wine: #b51943;
  --wine-dark: #8f1435;
  --ink: #202632;
  --muted: #656e7e;
  --line: #dfe2e8;
  --paper: #f7f5f1;
  --white: #ffffff;
  --mist: #eef1f6;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(14, 30, 73, 0.13);
  --shadow-soft: 0 14px 38px rgba(14, 30, 73, 0.09);
  --radius: 3px;
  --container: 1210px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--wine); }

.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(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(23, 47, 107, .10);
  box-shadow: 0 8px 28px rgba(14, 30, 73, .07);
  background: rgba(255, 255, 255, .985);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { width: 235px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav a {
  position: relative;
  color: #343d4c;
  text-decoration: none;
}
.primary-nav > a:not(.nav-external)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px 0;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-external {
  padding: 10px 15px;
  color: var(--navy) !important;
  border: 1px solid rgba(23, 47, 107, .34);
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-external:hover,
.nav-external:focus-visible { color: var(--white) !important; background: var(--navy); border-color: var(--navy); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 137px 0 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(181, 25, 67, .055), transparent 27%),
    linear-gradient(112deg, #fbfaf7 0%, #f6f4f1 58%, #eef0f5 58%, #f6f7f9 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -245px;
  top: 160px;
  border: 1px solid rgba(23, 47, 107, .10);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(23,47,107,.018), 0 0 0 164px rgba(23,47,107,.012);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  padding-bottom: 46px;
}
.hero-copy { padding: 24px 0 42px; }
.eyebrow {
  margin: 0 0 17px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #efb2c2; }
.hero h1,
.section h2,
.jr-bridge h2,
.contact h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.026em;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.5vw, 92px);
}
.hero-role {
  margin: 8px 0 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.2;
}
.hero-role span { padding: 0 4px; color: #9b2444; }
.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #4c5564;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(181, 25, 67, .2); outline-offset: 3px; }
.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(23, 47, 107, .18);
}
.button-primary:hover { background: var(--navy-soft); box-shadow: 0 16px 34px rgba(23, 47, 107, .22); }
.button-ghost {
  color: var(--navy);
  background: rgba(255,255,255,.48);
  border-color: rgba(23, 47, 107, .26);
}
.button-ghost:hover { border-color: var(--navy); background: rgba(255, 255, 255, .82); }
.button-wine { color: var(--white); background: var(--wine); box-shadow: 0 12px 30px rgba(181,25,67,.2); }
.button-wine:hover { background: #c42651; }
.button-full { width: 100%; }

.hero-portrait {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  align-self: end;
  margin: 0;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 64%;
  height: 64%;
  right: -23px;
  top: -23px;
  border-top: 3px solid var(--wine);
  border-right: 3px solid var(--wine);
}
.portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eceae7;
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.credentials-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: .86fr 1.5fr .78fr;
  gap: 0;
  padding: 0 4px;
  background: rgba(255,255,255,.95);
  border-top: 1px solid rgba(23,47,107,.10);
  border-bottom: 1px solid rgba(23,47,107,.10);
  box-shadow: 0 -10px 32px rgba(14,30,73,.035);
}
.credential-item {
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 17px;
  padding: 20px 30px;
}
.credential-item + .credential-item { border-left: 1px solid rgba(23,47,107,.12); }
.credential-icon { width: 43px; color: var(--wine); }
.credential-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.credential-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}
.credential-item span:not(.credential-icon) {
  display: block;
  margin-top: 6px;
  color: #565e6c;
  font-size: 13px;
  line-height: 1.35;
}

.role-note { color: var(--white); background: var(--navy-deep); }
.role-note-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 56px;
}
.role-note p { margin: 0; color: rgba(255,255,255,.76); }
.role-note p:first-child { padding-right: 56px; border-right: 1px solid rgba(255,255,255,.18); }
.role-note strong { color: var(--white); }
.role-note a { color: #efb2c2; font-weight: 750; text-underline-offset: 4px; }

.section { padding: clamp(86px, 9vw, 128px) 0; }
.section-heading { max-width: 790px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.trajectory h2,
.publications h2,
.contact h2,
.jr-bridge h2,
.section-dark h2 { font-size: clamp(40px, 4.8vw, 61px); }
.section-heading > p:last-child { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading-row > div { max-width: 820px; }
.text-link {
  flex: 0 0 auto;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid var(--wine);
}
.text-link:hover { color: var(--wine); }

.practice { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.service-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 31px 27px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(14,30,73,.035);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(23,47,107,.28); box-shadow: var(--shadow-soft); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--wine);
}
.service-icon svg { width: 47px; height: 47px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 22px 0 0; color: var(--navy-deep); font-family: var(--serif); font-size: 27px; font-weight: 650; line-height: 1.13; }
.service-card p { margin: 15px 0 17px; color: var(--muted); }
.service-detail { margin-top: auto; padding-top: 17px; border-top: 1px solid #ebedf1; color: #515a68; font-size: 13px; line-height: 1.5; }

.section-dark { color: var(--white); background: var(--navy); }
.approach-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(55px, 8vw, 115px); align-items: start; }
.approach-image {
  position: sticky;
  top: 124px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}
.approach-image::after {
  content: "";
  position: absolute;
  width: 44%;
  height: 44%;
  left: -14px;
  bottom: -14px;
  border-left: 3px solid var(--wine);
  border-bottom: 3px solid var(--wine);
  pointer-events: none;
}
.approach-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 37%; }
.section-dark h2 { color: var(--white); }
.approach-copy > p:last-child { max-width: 720px; margin: 25px 0 34px; color: rgba(255,255,255,.70); font-size: 18px; }
.principles { border-top: 1px solid rgba(255,255,255,.17); }
.principle {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 21px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.principle > span { color: #efb2c2; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.principle h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.principle p { margin: 0; color: rgba(255,255,255,.66); }

.trajectory { background: var(--paper); }
.trajectory-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: clamp(54px, 8vw, 104px); align-items: start; }
.trajectory-image { position: sticky; top: 126px; margin: 0; }
.trajectory-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.trajectory-image figcaption {
  display: inline-block;
  margin: -1px 0 0 22px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--wine);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
}
.large-copy { margin: 26px 0 34px; color: #555e6c; font-size: 18px; }
.timeline { border-top: 1px solid #cfd3dc; }
.timeline-item { display: grid; grid-template-columns: 112px 1fr; gap: 21px; padding: 20px 0; border-bottom: 1px solid #cfd3dc; }
.timeline-item > span { color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.timeline-item p { margin: 0; color: #626a77; }
.timeline-item strong { color: var(--navy-deep); font-family: var(--serif); font-size: 20px; font-weight: 650; }
.credentials-details { margin-top: 24px; border: 1px solid #cfd3dc; background: rgba(255,255,255,.58); }
.credentials-details summary { padding: 16px 19px; color: var(--navy); font-weight: 750; cursor: pointer; }
.credentials-details summary::marker { color: var(--wine); }
.credentials-panel { display: grid; gap: 0; padding: 0 19px 18px; }
.credentials-panel > div { padding: 17px 0; border-top: 1px solid #d9dde4; }
.credentials-panel h3 { margin: 0 0 5px; color: var(--navy-deep); font-family: var(--serif); font-size: 20px; }
.credentials-panel p { margin: 0; color: var(--muted); font-size: 14px; }

.publications { background: var(--white); }
.publication-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.publication-card {
  grid-column: span 2;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  background: #fafafa;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.publication-card:nth-child(n+4) { grid-column: span 3; }
.publication-card:hover { transform: translateY(-4px); border-color: rgba(23,47,107,.28); box-shadow: var(--shadow); }
.publication-card.featured { color: var(--white); background: var(--navy-deep); border-color: var(--navy-deep); }
.publication-meta { display: flex; justify-content: space-between; gap: 18px; color: #8b94a3; font-size: 11px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.featured .publication-meta { color: rgba(255,255,255,.58); }
.publication-card h3 { margin: 42px 0 17px; color: var(--navy-deep); font-family: var(--serif); font-size: clamp(26px, 2.55vw, 35px); line-height: 1.13; font-weight: 600; }
.featured h3 { color: var(--white); }
.publication-card > p { margin: 0; color: var(--muted); }
.featured > p { color: rgba(255,255,255,.72); }
.publication-footer { margin-top: auto; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.publication-tag { color: var(--wine); font-size: 12px; font-weight: 800; }
.featured .publication-tag { color: #efb2c2; }
.publication-download {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--navy);
  border: 1px solid rgba(23,47,107,.25);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.publication-download:hover { color: var(--white); border-color: var(--wine); background: var(--wine); }
.featured .publication-download { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.featured .publication-download:hover { color: var(--navy-deep); border-color: var(--white); background: var(--white); }
.publication-archive {
  margin-top: 54px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--mist);
}
.archive-heading { max-width: 760px; }
.archive-heading h3 { margin: 4px 0 10px; color: var(--navy-deep); font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 600; line-height: 1.12; }
.archive-heading > p:last-child { margin: 0; color: var(--muted); }
.archive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid #cfd4de;
  list-style: none;
}
.archive-list li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #cfd4de;
}
.archive-number { color: var(--wine); font-size: 12px; font-weight: 850; letter-spacing: .06em; }
.archive-copy { display: grid; gap: 3px; }
.archive-copy strong { color: var(--navy-deep); font-family: var(--serif); font-size: 18px; font-weight: 650; line-height: 1.25; }
.archive-copy small { color: #737b88; font-size: 12px; }

.jr-bridge { padding: clamp(78px, 8vw, 112px) 0; color: var(--white); background: linear-gradient(112deg, var(--navy-deep) 0 38%, #182e63 38% 100%); }
.jr-grid { display: grid; grid-template-columns: .54fr 1.46fr; gap: clamp(55px, 9vw, 124px); align-items: center; }
.jr-brand { min-height: 210px; display: flex; flex-direction: column; justify-content: center; border-left: 3px solid var(--wine); padding-left: 29px; }
.jr-brand span { font-family: var(--serif); font-size: clamp(76px, 8vw, 112px); line-height: .78; }
.jr-brand strong { margin-top: 19px; color: #efb2c2; font-size: 14px; letter-spacing: .34em; }
.jr-bridge h2 { color: var(--white); }
.jr-copy > p:not(.eyebrow) { max-width: 760px; margin: 23px 0 27px; color: rgba(255,255,255,.70); font-size: 18px; }

.contact { background: var(--mist); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 8vw, 112px); }
.contact-copy > p:not(.eyebrow) { margin: 23px 0 31px; color: var(--muted); font-size: 18px; }
.contact-list { border-top: 1px solid #cfd4de; }
.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #cfd4de;
  text-decoration: none;
}
.contact-list a:hover strong { color: var(--wine); }
.contact-list span { color: var(--muted); font-size: 13px; }
.contact-list strong { color: var(--navy); text-align: right; transition: color .2s ease; }
.contact-form { padding: 33px; background: var(--white); box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 7px; color: var(--navy-deep); font-size: 13px; font-weight: 750; }
.form-row label span { color: var(--muted); font-weight: 500; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cfd4de;
  border-radius: 0;
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(23,47,107,.10); }
.form-note, .form-status { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.form-status { min-height: 19px; color: var(--wine); font-weight: 700; }

.site-footer { padding: 56px 0 33px; color: rgba(255,255,255,.66); background: #0b1533; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 58px; }
.footer-logo { width: 230px; filter: brightness(0) invert(1); opacity: .96; }
.footer-grid p { margin: 12px 0 0; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #efb2c2; }
.footer-legal { text-align: right; }
.footer-legal p:first-child { margin-top: 0; }
.mobile-contact { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 330px; }
  .credentials-strip { grid-template-columns: .9fr 1.35fr .8fr; }
  .credential-item { padding-inline: 22px; }
}

@media (max-width: 980px) {
  .header-inner { min-height: 78px; }
  .brand img { width: 210px; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
  }
  .nav-toggle span:not(.sr-only) { width: 24px; height: 2px; display: block; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    padding: 20px 22px 26px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(14,30,73,.12);
  }
  .primary-nav.is-open { display: grid; gap: 0; }
  .primary-nav a { padding: 12px 0; border-bottom: 1px solid #e9ebef; }
  .primary-nav a::after { display: none; }
  .nav-external { margin-top: 12px; padding: 12px 14px !important; text-align: center; border: 1px solid rgba(23,47,107,.25) !important; }

  .hero { padding-top: 118px; background: linear-gradient(180deg, #fbfaf7 0%, #f4f2ef 58%, #eef0f5 58%, #f5f6f8 100%); }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding-bottom: 38px; }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero-portrait { width: min(590px, 88%); justify-self: center; }
  .credentials-strip { grid-template-columns: 1fr; padding: 0 24px; }
  .credential-item { min-height: 94px; padding: 18px 0; }
  .credential-item + .credential-item { border-left: 0; border-top: 1px solid rgba(23,47,107,.12); }

  .role-note-inner { grid-template-columns: 1fr; gap: 14px; padding: 27px 0; }
  .role-note p:first-child { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .approach-grid { grid-template-columns: .75fr 1.25fr; gap: 44px; }
  .approach-image { position: static; }
  .trajectory-grid { grid-template-columns: 1fr; }
  .trajectory-image { position: static; width: min(760px, 100%); }
  .publication-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .publication-card,
  .publication-card:nth-child(n+4) { grid-column: auto; min-height: 320px; }
  .publication-card:last-child { grid-column: 1 / -1; }
  .archive-list { grid-template-columns: 1fr; }
  .jr-grid { grid-template-columns: .48fr 1.52fr; gap: 45px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 760px) {
  .publication-grid { grid-template-columns: 1fr; }
  .publication-card,
  .publication-card:nth-child(n+4),
  .publication-card:last-child { grid-column: auto; min-height: 0; }
  .publication-footer { align-items: flex-start; flex-direction: column; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-image { width: min(520px, 88%); margin-inline: auto; }
  .jr-grid { grid-template-columns: 1fr; }
  .jr-brand { min-height: 125px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 84px; }
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 185px; }
  .hero { padding: 105px 0 0; }
  .hero-copy { padding-top: 10px; }
  .hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-role { font-size: 23px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-portrait { width: 96%; }
  .hero-portrait::before { right: -13px; top: -13px; }
  .credentials-strip { padding-inline: 18px; }
  .credential-item { grid-template-columns: 46px 1fr; gap: 14px; }
  .credential-item strong { font-size: 28px; }
  .role-note { font-size: 14px; }
  .section { padding: 76px 0; }
  .section-heading-row { display: block; }
  .section-heading-row .text-link { display: inline-block; margin-top: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 27px 23px 25px; }
  .approach-image { width: 100%; }
  .principle { grid-template-columns: 39px 1fr; gap: 14px; }
  .trajectory-image figcaption { margin-left: 12px; }
  .timeline-item { grid-template-columns: 84px 1fr; gap: 13px; }
  .timeline-item strong { font-size: 18px; }
  .publication-card { padding: 24px; }
  .publication-archive { padding: 24px 20px; }
  .archive-list li { grid-template-columns: 48px 1fr; gap: 11px; }
  .contact-form { padding: 23px 19px; }
  .contact-list a { display: block; }
  .contact-list strong { display: block; margin-top: 4px; text-align: left; overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { grid-column: auto; }
  .mobile-contact {
    position: fixed;
    z-index: 1100;
    inset: auto 0 0 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .mobile-contact a { display: grid; place-items: center; color: var(--white); font-size: 14px; font-weight: 750; text-decoration: none; }
  .mobile-contact a + a { border-left: 1px solid rgba(255,255,255,.16); background: var(--wine); }
}

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

/* Contacto directo, redes sociales y acceso rápido a WhatsApp */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  inset: auto auto auto -10000px !important;
}
.form-submit { position: relative; }
.submit-spinner {
  width: 17px;
  height: 17px;
  display: none;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-spin .75s linear infinite;
}
.contact-form.is-submitting .submit-spinner { display: inline-block; }
.contact-form.is-submitting .form-submit { cursor: wait; opacity: .88; }
.form-submit:disabled { transform: none; }
.form-privacy { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-status.is-success { color: #17603a; }
.form-status.is-error { color: #9b1e3f; }
@keyframes contact-spin { to { transform: rotate(360deg); } }

.footer-social { display: flex; gap: 10px; margin-top: 19px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.whatsapp-float {
  position: fixed;
  z-index: 1090;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(9, 32, 19, .28);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); background: #1fbd59; box-shadow: 0 18px 40px rgba(9, 32, 19, .34); }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37,211,102,.35); outline-offset: 4px; }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }

.mobile-contact a { gap: 5px; grid-template-rows: 23px auto; }
.mobile-contact a svg { width: 21px; height: 21px; fill: currentColor; }
.mobile-contact a span { line-height: 1; }

@media (max-width: 640px) {
  .whatsapp-float { display: none; }
}

@media print {
  .whatsapp-float,
  .mobile-contact { display: none !important; }
}
