@charset "utf-8";

@font-face {
  font-family: "Bebas Custom";
  src: url("/fonts/bebasneue-webfont.woff") format("woff");
  font-display: swap;
}

:root {
  --ink: #0b1118;
  --ink-soft: #151e28;
  --paper: #f4f3ef;
  --paper-bright: #ffffff;
  --line: rgba(11, 17, 24, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --text: #18212b;
  --muted: #66717c;
  --blue: #1f80ff;
  --blue-deep: #0e5fd2;
  --cyan: #66d9e8;
  --accent: #f0aa3c;
  --success: #177248;
  --error: #a33131;
  --shell: 1180px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(8, 18, 30, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--blue);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 24, 0.94);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--cyan);
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-name {
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand-name strong {
  color: var(--cyan);
  font-weight: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-contact {
  margin-left: 10px;
  padding-inline: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  background: #fff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.story-section .eyebrow,
.contact-section .eyebrow {
  color: var(--cyan);
}

.eyebrow span {
  margin-inline: 6px;
  color: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: clamp(3.6rem, 6.8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
}

.hero .button-primary {
  background: var(--cyan);
  color: var(--ink);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #43c8da;
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue-deep);
}

.text-link,
.card-link,
.life-card a,
.latest-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-weight: 750;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.text-link span,
.card-link span,
.life-card a span,
.latest-card a span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.card-link:hover span,
.life-card a:hover span,
.latest-card a:hover span {
  transform: translateX(4px);
}

.text-link:hover,
.text-link:focus-visible,
.life-card a:hover,
.life-card a:focus-visible,
.latest-card a:hover,
.latest-card a:focus-visible {
  transform: translateY(-2px);
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 58px;
}

.hero-roles span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.75rem;
  font-weight: 650;
}

.hero-quote {
  max-width: none;
  margin: 46px 0 0;
  padding: 2px 0 2px 18px;
  border-left: 2px solid rgba(102, 217, 232, 0.58);
  color: rgba(255, 255, 255, 0.54);
}

.hero-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.55;
}

.hero-aside {
  align-self: start;
  width: min(100%, 380px);
  margin-left: auto;
  padding-top: 34px;
}

.hero-aside .hero-actions {
  flex-wrap: nowrap;
  margin-top: 44px;
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 9 / 8;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.identity-strip {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.identity-grid > * {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
  border-left: 1px solid var(--line);
  text-decoration: none;
}

.identity-grid > *:last-child {
  border-right: 1px solid var(--line);
}

.identity-grid > a {
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.identity-grid > a:hover,
.identity-grid > a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.identity-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-grid strong {
  margin-top: 5px;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.identity-grid > a:hover .identity-kicker,
.identity-grid > a:focus-visible .identity-kicker {
  color: var(--cyan);
}

.identity-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--blue);
  font-size: 1.2rem;
}

.identity-center::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 62px;
  height: 4px;
  background: var(--accent);
}

.section {
  padding-block: clamp(86px, 10vw, 140px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(30px, 7vw, 100px);
  margin-bottom: 48px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.story-intro h2,
.latest-label h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.04rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  grid-column: span 6;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 128, 255, 0.45);
  box-shadow: 0 18px 50px rgba(8, 18, 30, 0.1);
}

.project-featured {
  grid-column: 1 / -1;
  min-height: 370px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 30px;
  align-items: start;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.project-featured::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 370px;
  height: 370px;
  border: 52px solid rgba(102, 217, 232, 0.1);
  border-radius: 50%;
}

.project-number {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.project-featured .project-number {
  color: var(--cyan);
}

.project-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-featured .project-body {
  max-width: 760px;
}

.project-card:not(.project-featured) .project-body {
  margin-top: 42px;
}

.project-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-featured .project-meta {
  color: rgba(255, 255, 255, 0.52);
}

.project-card h3 {
  margin: 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

.project-card p {
  max-width: 700px;
  margin: 17px 0 0;
  color: var(--muted);
}

.project-featured p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.contribution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contribution-list li {
  position: relative;
  padding-left: 13px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 750;
}

.contribution-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.project-featured .contribution-list li {
  color: rgba(255, 255, 255, 0.78);
}

.project-featured .contribution-list li::before {
  background: var(--cyan);
}

.project-status {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(102, 217, 232, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(11, 17, 24, 0.84);
  backdrop-filter: blur(8px);
}

.project-compact {
  min-height: 410px;
}

.project-screen {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 8 / 5;
  margin: auto 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #dfe3e7;
}

.project-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.project-card:hover .project-screen img {
  transform: scale(1.018);
}

.project-featured .project-screen {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  width: min(100%, 400px);
  height: auto;
  aspect-ratio: 8 / 5;
  min-height: 0;
  margin: 18px auto 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #06090d;
}

.project-featured .project-screen img {
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.card-link {
  align-self: flex-end;
  width: fit-content;
  margin: 22px 0 18px;
  border: 1px solid rgba(14, 95, 210, 0.42);
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.card-link:hover,
.card-link:focus-visible {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  transform: translateY(-2px);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  color: var(--muted);
}

.story-section {
  background: var(--ink-soft);
  color: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 10vw, 140px);
}

.story-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.story-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 27px 0;
  color: rgba(255, 255, 255, 0.66);
}

.light-link {
  color: var(--cyan);
}

.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.story-links .text-link:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.story-links .text-link:hover,
.story-links .text-link:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: chapters;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  padding: 0 0 64px;
  counter-increment: chapters;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 125px;
  bottom: 0;
  width: 1px;
  background: var(--line-dark);
}

.timeline li::after {
  content: counter(chapters, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 113px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--ink-soft);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.54rem;
  font-weight: 800;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li:last-child::before {
  display: none;
}

.timeline-date {
  padding-top: 2px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.05;
}

.timeline p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.awards-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.4fr;
  gap: 22px;
  margin-top: 95px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.award-label {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.award strong,
.award span {
  display: block;
}

.award strong {
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.award span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
}

.capabilities-section {
  background: var(--paper-bright);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  min-height: 270px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.capability-grid article:last-child {
  border-right: 1px solid var(--line);
}

.capability-grid article > span {
  color: var(--blue-deep);
  font-family: "Bebas Custom", Impact, sans-serif;
  letter-spacing: 0.08em;
}

.capability-grid h3 {
  margin: 60px 0 12px;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.off-clock-section {
  background: #e7e8e8;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.life-card {
  overflow: hidden;
  background: var(--paper-bright);
  border-radius: var(--radius);
}

.life-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #000;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-card > div:not(.video-frame) {
  padding: 28px;
}

.life-card > div > span {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.life-card h3 {
  margin: 7px 0 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 2.35rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

.life-card p {
  margin: 16px 0;
  color: var(--muted);
}

.life-card a {
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.life-card a:hover,
.life-card a:focus-visible,
.latest-card a:hover,
.latest-card a:focus-visible {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}

.life-video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
}

.life-video .video-frame {
  aspect-ratio: 16 / 8.2;
}

.life-video > div:not(.video-frame) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.latest-section {
  background: var(--paper-bright);
}

.latest-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(35px, 8vw, 105px);
  align-items: start;
}

.latest-label h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
}

.latest-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.latest-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.latest-card > div > span {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-card h3 {
  margin: 9px 0 0;
  font-family: "Bebas Custom", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.latest-card p {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.latest-card a {
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.contact-section {
  background: var(--ink);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(55px, 10vw, 135px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.4rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.62);
}

.email-link {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid rgba(102, 217, 232, 0.55);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.email-link:hover,
.email-link:focus-visible {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 46px;
}

.social-links a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-form-wrap {
  padding: clamp(25px, 4vw, 42px);
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
}

.form-notice {
  margin-bottom: 24px;
  padding: 13px 15px;
  border-left: 4px solid currentColor;
  background: #eef1f4;
  font-weight: 700;
}

.form-notice.success {
  color: var(--success);
}

.form-notice.error {
  color: var(--error);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.contact-form {
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  background: #f7f8f9;
  color: var(--text);
  border: 1px solid #cbd0d5;
  border-radius: 8px;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 128, 255, 0.16);
}

.recaptcha-wrap {
  max-width: 100%;
  overflow: hidden;
}

.submit-button {
  justify-self: start;
  border: 0;
}

.submit-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.site-footer {
  padding-block: 40px;
  background: #070b10;
  color: #fff;
  border-top: 1px solid var(--line-dark);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: center;
}

.footer-layout p span {
  color: rgba(255, 255, 255, 0.38);
}

.footer-credit {
  justify-self: end;
}

.footer-credit a {
  color: var(--cyan);
  font-weight: 800;
  text-underline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.js .reveal.reveal-delay {
  transition-delay: 0.12s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 74px;
  }

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

  .hero-aside {
    width: 100%;
    max-width: 620px;
    margin-left: 0;
    padding-top: 0;
  }

  .hero-portrait {
    width: min(100%, 360px);
  }

  .hero-portrait img {
    object-position: center 18%;
  }

  .project-card,
  .project-compact {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-intro {
    position: static;
  }

  .story-intro > p:not(.eyebrow) {
    max-width: 700px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .capability-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .latest-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 700px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-layout > p:first-of-type {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 14px 20px;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav .nav-contact {
    margin: 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    text-align: center;
  }

  .hero-layout {
    gap: 52px;
    padding-block: 60px 70px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .hero-aside .hero-actions {
    flex-wrap: wrap;
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .identity-grid > * {
    min-height: 104px;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .identity-center::after {
    left: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-featured {
    display: flex;
    gap: 20px;
  }

  .project-featured .project-screen {
    width: min(78%, 340px);
    height: auto;
    min-height: 0;
    margin: 12px auto 0;
    border-width: 1px;
    border-radius: 10px;
  }

  .project-featured .project-screen img {
    height: 100%;
  }

  .awards-row {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .capability-grid article:nth-child(3),
  .capability-grid article:nth-child(4) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .capability-grid article:first-child {
    border-top: 0;
  }

  .capability-grid h3 {
    margin-top: 34px;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-video {
    grid-column: auto;
    display: block;
  }

  .life-video .video-frame {
    aspect-ratio: 16 / 9;
  }

  .latest-card {
    grid-template-columns: 1fr;
  }

  .latest-card img {
    min-height: 220px;
    max-height: 320px;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 1.08rem;
  }

  .hero-actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .section-cta .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-portrait {
    margin-inline: auto;
  }

  .project-card {
    padding: 24px;
  }

  .project-screen {
    width: 100%;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
  }

  .project-featured .project-screen {
    width: min(86%, 300px);
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
  }

  .project-featured::after {
    display: none;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 37px;
  }

  .timeline li::before {
    left: 11px;
  }

  .timeline li::after {
    left: 0;
  }

  .contact-form-wrap {
    padding: 22px 18px;
  }

  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
    margin-bottom: -8px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-credit {
    justify-self: start;
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
