:root {
  --navy-950: #143971;
  --navy-900: #193e72;
  --navy-850: #204379;
  --navy-800: #294f82;
  --blue: #204379;
  --blue-soft: #eaf0f7;
  --orange: #d9753c;
  --orange-bright: #ec7b32;
  --amber: #f4c165;
  --ink: #173457;
  --muted: #5e7189;
  --paper: #f7f9fc;
  --cream: #fcfaf6;
  --white: #ffffff;
  --line: #d9e1e9;
  --max: 1260px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --serif: Iowan Old Style, Baskerville, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

body,
button { font-family: var(--sans); }

a { color: inherit; }

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

section { scroll-margin-top: 4.5rem; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  background: white;
  color: var(--navy-950);
  border-radius: 0.25rem;
}

.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: 5.3rem;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 4.6rem;
  background: rgba(20, 57, 113, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: -0.08em;
}

.brand-copy { display: grid; line-height: 1.2; }
.brand-institution { margin-bottom: 0.12rem; color: rgba(255, 255, 255, 0.68); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.065em; text-transform: uppercase; white-space: nowrap; }
.brand-copy strong { font-size: 0.94rem; letter-spacing: -0.015em; }
.brand-copy small { margin-top: 0.18rem; color: rgba(255, 255, 255, 0.6); font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 0.62rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
}

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8.5rem var(--pad) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 7% 20%, rgba(244, 193, 101, 0.18), transparent 28rem),
    linear-gradient(115deg, #143971, #204379 56%, #294f82);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  left: -22rem;
  bottom: -25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(255, 255, 255, 0.018), 0 0 0 14rem rgba(255, 255, 255, 0.012);
}

.hero-copy { position: relative; z-index: 2; max-width: 49rem; }

.availability {
  width: fit-content;
  margin: 0 0 2.3rem;
  padding: 0.48rem 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.availability span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 0.25rem rgba(237, 136, 72, 0.12);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--amber); }

.hero h1,
.profile h2,
.areas h2,
.trajectory h2,
.projects h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero h1 { max-width: 18ch; font-size: clamp(2.65rem, 4.8vw, 5.35rem); letter-spacing: 0.005em; }
.hero h1 em,
.hero h1 .quote-accent { color: var(--amber); font-weight: 400; }

.hero-author {
  margin: 1.1rem 0 0;
  color: var(--amber);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-author strong { color: white; }

.hero-intro {
  max-width: 43rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.1rem; }

.button {
  min-height: 3.2rem;
  padding: 0.78rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: var(--orange-bright); }

.text-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 0.35rem;
}

.hero-facts {
  margin: 3.2rem 0 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts div { padding-right: 1rem; }
.hero-facts div + div { padding-left: 1.2rem; border-left: 1px solid rgba(255, 255, 255, 0.13); }
.hero-facts dt { color: white; font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; }
.hero-facts dd { margin: 0.4rem 0 0; color: rgba(255, 255, 255, 0.52); font-size: 0.72rem; line-height: 1.35; }

.hero-visual {
  position: relative;
  width: min(100%, 31rem);
  margin: 0 auto;
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15rem 15rem 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.36);
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -1.4rem 2.1rem 2rem -1.2rem;
  border: 1px solid rgba(242, 181, 111, 0.25);
  border-radius: 15rem 15rem 1.2rem 1.2rem;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15rem 15rem 0.85rem 0.85rem;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 4;
  right: -2.5rem;
  bottom: 2rem;
  width: min(16rem, 58%);
  padding: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.8rem;
  background: rgba(20, 57, 113, 0.9);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.caption-line { width: 1.7rem; height: 1px; flex: 0 0 auto; margin-top: 0.5rem; background: var(--amber); }
.hero-visual figcaption p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 0.7rem; line-height: 1.4; }
.hero-visual figcaption strong { display: block; margin-bottom: 0.25rem; color: white; font-size: 0.78rem; font-weight: 700; }

.credential-band {
  min-height: 4.5rem;
  margin: 0;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.3vw, 2.5rem);
  background: var(--orange);
  color: white;
  text-align: center;
}

.credential-band p { margin: 0; font-size: 0.74rem; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.credential-band span { color: rgba(255, 255, 255, 0.46); }

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span { color: var(--orange); font-weight: 850; }
.section-label p { margin: 0; }
.section-label-light { color: rgba(255, 255, 255, 0.5); }
.section-label-light span { color: var(--amber); }

.profile,
.trajectory {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.profile h2,
.areas h2,
.trajectory h2,
.projects h2,
.contact h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.profile-content > .eyebrow,
.areas-heading .eyebrow,
.experience-heading .eyebrow,
.consulting-copy > .eyebrow,
.contact .eyebrow { margin-bottom: 1.55rem; }

.profile h2 { max-width: 16ch; }
.profile-content > .eyebrow,
.profile-content > h2 { margin-left: auto; margin-right: auto; text-align: center; }

.profile-intro {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(13rem, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.profile-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 10rem 10rem 0.8rem 0.8rem;
  background: white;
  box-shadow: 0 1.6rem 4rem rgba(7, 26, 47, 0.12);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 10rem 10rem 0.5rem 0.5rem;
}

.profile-grid {
  margin-top: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.profile-grid p { margin-top: 0; }
.profile-grid .lead { color: var(--navy-800); font-family: var(--serif); font-size: 1.38rem; line-height: 1.55; text-align: center; }
.profile-detail {
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.profile-detail p { margin-bottom: 0; line-height: 1.72; }
.profile-detail p + p { margin-top: 1rem; }
.profile-grid-brief { margin-top: 0; grid-template-columns: 1fr; gap: 1rem; }

.education {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.education h3 {
  margin: 0 0 1rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

.education ul { margin: 0; padding: 0; list-style: none; }
.education li { padding: 0.72rem 0; display: flex; flex-direction: column; gap: 0.2rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; line-height: 1.4; }
.education strong { color: var(--ink); font-weight: 650; }
.education span { color: var(--orange); font-size: 0.74rem; font-weight: 750; letter-spacing: 0.02em; }

.principles {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principles article { min-height: 13rem; padding: 1.6rem 1.5rem 1.5rem 0; border-right: 1px solid var(--line); }
.principles article + article { padding-left: 1.5rem; }
.principles article:last-child { border-right: 0; }
.principles span { color: var(--orange); font-size: 0.7rem; font-weight: 850; }
.principles h3 { margin: 2rem 0 0.55rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.principles p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.areas {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--navy-950);
  color: white;
}

.areas-heading,
.projects-heading {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.areas h2 { max-width: 19ch; }
.areas-heading > div:last-child { text-align: center; }
.areas-heading h2 { margin-left: auto; margin-right: auto; }

.service-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card {
  min-height: 22rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 4px 0 var(--service-accent);
}

.service-card:nth-child(1) {
  --service-accent: #e18a4a;
  background: linear-gradient(145deg, rgba(172, 78, 40, 0.38), rgba(217, 117, 60, 0.12));
}
.service-card:nth-child(2) {
  --service-accent: #d6b95c;
  background: linear-gradient(145deg, rgba(150, 122, 37, 0.34), rgba(214, 185, 92, 0.1));
}
.service-card:nth-child(3) {
  --service-accent: #5c9fc7;
  background: linear-gradient(145deg, rgba(32, 90, 132, 0.46), rgba(92, 159, 199, 0.1));
}
.service-card:nth-child(4) {
  --service-accent: #65a18b;
  background: linear-gradient(145deg, rgba(45, 105, 84, 0.42), rgba(101, 161, 139, 0.1));
}
.service-number { margin: 0 0 3rem; color: var(--service-accent); font-family: var(--serif); font-size: 1rem; font-weight: 700; text-align: center; }
.service-card h3 { max-width: 18ch; margin: 0 auto 1rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.45rem); font-weight: 400; line-height: 1.12; text-align: center; }
.service-card > p:not(.service-number) { max-width: 35rem; margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.67); text-align: left; }
.service-card ul { padding: 1.3rem 0 0; margin: 1.5rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); list-style: none; color: rgba(255, 255, 255, 0.76); font-size: 0.84rem; }
.service-card li { margin-top: 0.42rem; }
.service-card li::before { content: "—"; margin-right: 0.55rem; color: var(--service-accent); }

.experience {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.experience-heading {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.experience h2,
.consulting h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5.2rem); font-weight: 400; letter-spacing: -0.035em; line-height: 1.1; }
.experience h2 { max-width: 18ch; }
.experience-heading > div:last-child { text-align: center; }
.experience-heading h2 { margin-left: auto; margin-right: auto; }
.section-intro { max-width: 48rem; margin: 1.6rem auto 0; color: var(--muted); font-size: 1.05rem; }

.experience-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-grid article { min-height: 20rem; padding: clamp(1.7rem, 4vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.experience-grid article:nth-child(2),
.experience-grid article:nth-child(3) { background: var(--blue-soft); }
.experience-meta { margin: 0 0 2.5rem; color: var(--orange); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-align: center; text-transform: uppercase; }
.experience-grid h3 { max-width: 21ch; margin: 0 auto 1rem; color: var(--navy-950); font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.25rem); font-weight: 400; line-height: 1.14; text-align: center; }
.experience-grid article > p:last-child { margin: 0; color: var(--muted); text-align: left; }

.consulting { padding: clamp(4.5rem, 8vw, 7rem) 0; background: var(--orange); color: white; }
.consulting-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.consulting-copy .section-label { margin-bottom: 3.5rem; }
.consulting h2 { max-width: 13ch; }
.consulting-copy > .eyebrow,
.consulting-copy > h2 { margin-left: 0; margin-right: 0; text-align: left; }
.consulting-copy > p:not(.eyebrow) { max-width: 38rem; margin: 1.7rem auto 2rem; color: rgba(255, 255, 255, 0.86); text-align: left; }
.consulting-copy > .button { width: fit-content; margin-left: auto; margin-right: auto; }
.consulting .button-primary { background: var(--navy-950); }
.consulting .button-primary:hover { background: var(--navy-800); }
.consulting-list { border-top: 1px solid rgba(255, 255, 255, 0.3); }
.consulting-list article { padding: 1.8rem 0; display: grid; grid-template-columns: 2.5rem 1fr; gap: 1.2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.consulting-list article > span { color: var(--amber); font-family: var(--serif); }
.consulting-list h3 { margin: 0 0 0.45rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.2; text-align: left; }
.consulting-list p { margin: 0; color: rgba(255, 255, 255, 0.78); text-align: left; }

.trajectory h2 { max-width: 18ch; }

.timeline { margin-top: 4rem; border-top: 1px solid var(--line); }
.timeline article { padding: 2rem 0; display: grid; grid-template-columns: minmax(8rem, 0.3fr) 1fr; gap: 2rem; border-bottom: 1px solid var(--line); }
.timeline-date { margin: 0; color: var(--orange); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.timeline h3 { margin: 0 0 0.45rem; color: var(--navy-900); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.2; }
.timeline article div p { max-width: 45rem; margin: 0; color: var(--muted); }

.projects {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--blue-soft);
}

.projects h2 { max-width: 19ch; }

.project-list {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.project-card {
  min-height: 27rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 26, 47, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.3rem 3rem rgba(7, 26, 47, 0.06);
}

.project-card:nth-child(2) { background: var(--navy-900); color: white; transform: translateY(1.5rem); }
.project-card:nth-child(2) > p { color: rgba(255, 255, 255, 0.6); }
.project-card:nth-child(2) .project-top,
.project-card:nth-child(2) .project-note { border-color: rgba(255, 255, 255, 0.14); }

.project-top { padding-bottom: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); color: var(--orange); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.project-top strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.project-card h3 { margin: 3.2rem 0 1rem; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.55rem); font-weight: 400; line-height: 1.1; }
.project-card > p { color: var(--muted); font-size: 0.92rem; }
.project-card .project-note { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--blue); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }

.contact {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--blue);
  color: white;
  overflow: hidden;
}

.contact::before,
.contact::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 50%; }
.contact::before { width: 31rem; height: 31rem; right: -9rem; top: -14rem; }
.contact::after { width: 20rem; height: 20rem; right: 14rem; bottom: -15rem; }

.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.contact h2 { max-width: 16ch; }
.contact-inner > div:first-child { text-align: center; }
.contact h2 { margin-left: auto; margin-right: auto; }
.contact-panel { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.24); }
.contact-panel > p { margin: 0 0 1.8rem; color: rgba(255, 255, 255, 0.74); font-size: 1.05rem; }
.button-light { background: white; color: var(--navy-900); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button-whatsapp { border: 1px solid rgba(255, 255, 255, 0.55); color: white; }
.button-whatsapp:hover { background: rgba(255, 255, 255, 0.1); }
.contact-email { display: block; width: fit-content; margin-top: 1.3rem; color: rgba(255, 255, 255, 0.62); font-size: 0.8rem; text-underline-offset: 0.3rem; }

.site-footer {
  min-height: 7rem;
  padding: 1.5rem var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 2rem;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.site-footer p { margin: 0; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand strong { color: white; font-size: 0.8rem; }

@media (max-width: 1080px) {
  .site-nav { gap: 1rem; }
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr); gap: 3rem; }
  .hero-visual figcaption { right: -1rem; }
  .project-list { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(2) { transform: none; }
  .project-card:last-child { grid-column: 1 / -1; min-height: 21rem; }
}

@media (max-width: 820px) {
  .site-header { min-height: 4.7rem; }
  .menu-button { display: flex; align-items: center; gap: 0.65rem; border: 0; background: transparent; color: white; font-size: 0.82rem; }
  .menu-icon { width: 1.25rem; height: 0.75rem; border-top: 1px solid; border-bottom: 1px solid; }
  .site-nav { position: fixed; inset: 4.7rem 0 auto; padding: 0.8rem var(--pad) 1.25rem; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(20, 57, 113, 0.99); border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.72rem 0; font-size: 0.95rem; }
  .site-nav .nav-cta { border: 0; border-radius: 0; color: var(--amber); }
  .hero { min-height: auto; padding-top: 8rem; grid-template-columns: 1fr; }
  .hero-copy { max-width: 44rem; }
  .hero-visual { width: min(100%, 34rem); margin-top: 1rem; }
  .credential-band { flex-wrap: wrap; padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .profile, .trajectory, .areas-heading, .projects-heading, .experience-heading { grid-template-columns: 1fr; }
  .profile .section-label, .trajectory .section-label, .areas-heading .section-label, .projects-heading .section-label, .experience-heading .section-label { margin-bottom: 1rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-intro { grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.28fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .consulting-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-institution { font-size: 0.5rem; letter-spacing: 0.025em; }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.4rem); line-height: 1.08; }
  .profile h2, .areas h2, .experience h2, .consulting h2, .contact h2 { font-size: clamp(2rem, 10vw, 3rem); line-height: 1.08; }
  .availability { align-items: flex-start; border-radius: 0.7rem; line-height: 1.35; }
  .availability span { margin-top: 0.28rem; flex: 0 0 auto; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; }
  .hero-facts div + div { padding-left: 1rem; }
  .hero-facts div:last-child { grid-column: 1 / -1; padding: 1.2rem 0 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .hero-visual figcaption { right: 0; bottom: 1rem; }
  .credential-band span { display: none; }
  .credential-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .principles { grid-template-columns: 1fr; }
  .profile-intro { grid-template-columns: 1fr; }
  .profile-photo { width: min(100%, 23rem); }
  .education li { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .principles article, .principles article + article { min-height: auto; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid, .project-list, .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article:nth-child(3) { background: white; }
  .experience-grid article:nth-child(even) { background: var(--blue-soft); }
  .service-card { min-height: auto; }
  .project-card, .project-card:last-child { min-height: 23rem; grid-column: auto; }
  .timeline article { grid-template-columns: 1fr; gap: 0.7rem; }
  .site-footer { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 420px) {
  .hero-facts dt { font-size: 1.25rem; }
  .image-frame { padding: 0.45rem; }
  .image-frame::before { inset: -0.75rem 1rem 1rem -0.55rem; }
  .hero-visual figcaption { width: 67%; }
  .credential-band { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
