:root {
  color-scheme: dark;
  --bg: #0b0c0e;
  --panel: #121417;
  --panel-2: #17191d;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #9a9da3;
  --text: #f3f1eb;
  --accent: #ff6a36;
  --accent-soft: #f4c8b6;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 240ms;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-label,
.site-header nav a,
.contact-link {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.contact-link {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.contact-link:hover {
  color: var(--text);
}

.contact-link {
  justify-self: end;
  color: var(--text);
}

.hero {
  --spot-x: 68%;
  --spot-y: 42%;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 76px);
  padding: 8vh 4vw 7vh;
  align-items: center;
  overflow: hidden;
  background: #08090a;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.7);
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.88) 0%,
      rgba(5, 6, 7, 0.68) 38%,
      rgba(5, 6, 7, 0.24) 70%,
      rgba(5, 6, 7, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 7, 0.2) 0%,
      rgba(5, 6, 7, 0.08) 56%,
      rgba(5, 6, 7, 0.92) 100%
    );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    520px circle at var(--spot-x) var(--spot-y),
    rgba(255, 106, 54, 0.1),
    transparent 60%
  );
  content: "";
  pointer-events: none;
}

.eyebrow,
.section-number {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70e69b;
  box-shadow: 0 0 12px #70e69b;
}

.hero h1 {
  max-width: 920px;
  margin: 28px 0 24px;
  font-size: clamp(72px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 500;
}

.hero h1 em,
.section-heading h2 em,
footer p em {
  color: var(--accent-soft);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero-intro {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 100px;
  background: var(--text);
  color: #101113;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

.text-button {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  color: #c9cace;
  font-size: 13px;
}

.hero-reel {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(220px, 0.72fr);
  gap: 14px;
  height: min(72vh, 760px);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.reel-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
}

.reel-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reel-card:hover img {
  transform: scale(1.035);
}

.reel-card-main {
  border-radius: 2px 2px 80px 2px;
}

.reel-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.reel-meta {
  display: flex;
  justify-content: space-between;
  padding: 5px 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reel-card-small {
  border-radius: 80px 2px 2px 2px;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 45%, rgba(0, 0, 0, 0.82));
}

.reel-overlay.compact {
  padding: 22px;
}

.reel-index {
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 10px;
}

.reel-overlay p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-overlay h2 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: -0.04em;
}

.play-button {
  align-self: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.play-button:hover {
  transform: scale(1.08);
  background: var(--accent);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: #111;
}

.ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  animation: ticker 22s linear infinite;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

@keyframes ticker {
  to {
    transform: translateX(-25%);
  }
}

.work-section,
.profile-section,
.capabilities-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 4vw;
}

.work-section {
  --work-x: -999px;
  --work-y: -999px;
  position: relative;
  isolation: isolate;
}

.work-backdrop {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  overflow: hidden;
  background: #08090a;
  transform: translateX(-50%);
  pointer-events: none;
}

.work-backdrop-base,
.work-backdrop-reveal,
.work-backdrop-shade {
  position: absolute;
  inset: 0;
}

.work-backdrop-base,
.work-backdrop-reveal {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-backdrop-base {
  background-image: url("https://images.higgs.ai/?default=1&output=webp&url=https%3A%2F%2Fd8j0ntlcm91z4.cloudfront.net%2Fuser_38xzZboKViGWJOttwIXH07lWA1P%2Fhf_20260609_195923_b0ba8ace-1d1d-4f2c-9a28-1ab84b330680.png&w=1280&q=85");
  filter: saturate(0.86) contrast(1.04) brightness(0.72);
  transform: scale(1.04);
}

.work-backdrop-reveal {
  background-image: url("https://images.higgs.ai/?default=1&output=webp&url=https%3A%2F%2Fd8j0ntlcm91z4.cloudfront.net%2Fuser_38xzZboKViGWJOttwIXH07lWA1P%2Fhf_20260609_201152_bba90a12-bf12-459f-91f0-51f237dbaf3b.png&w=1280&q=85");
  filter: saturate(0.98) contrast(1.04) brightness(0.92);
  -webkit-mask-image: radial-gradient(
    circle 260px at var(--work-x) var(--work-y),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.75) 60%,
    rgba(255, 255, 255, 0.4) 75%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  mask-image: radial-gradient(
    circle 260px at var(--work-x) var(--work-y),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.75) 60%,
    rgba(255, 255, 255, 0.4) 75%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
}

.work-backdrop-shade {
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.38), rgba(8, 9, 10, 0.18) 42%, rgba(8, 9, 10, 0.55)),
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(8, 9, 10, 0.14) 74%);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.filter.active,
.filter:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter.active {
  background: var(--text);
  color: #111;
}

.filter:active {
  transform: scale(0.96);
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 43.2%;
  margin: 0 auto;
  gap: 32px 10px;
  align-items: start;
}

.project-featured {
  grid-row: span 2;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: var(--panel);
  cursor: pointer;
}

.project-featured .project-image {
  aspect-ratio: 9 / 15;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project:hover .project-image img {
  transform: scale(1.035);
}

.duration,
.project-arrow {
  position: absolute;
  z-index: 2;
}

.duration {
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  font-size: 10px;
}

.project-arrow {
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #111;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project:hover .project-arrow {
  transform: translateY(0);
  opacity: 1;
}

.project-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.project-info p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.project-info > span {
  color: var(--muted);
  font-size: 11px;
}

.project-placeholder {
  grid-column: 3;
}

.placeholder-visual {
  position: relative;
  display: flex;
  aspect-ratio: 9 / 12;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 65% 40%, rgba(120, 83, 255, 0.45), transparent 32%),
    linear-gradient(145deg, #1e163a, #0f1724 70%);
}

.placeholder-visual > span,
.placeholder-visual > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.placeholder-visual > p {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.orb {
  position: absolute;
  top: 26%;
  left: 25%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, #e3d7ff, #8c69ff 18%, #34217c 45%, #0f0a20 72%);
  box-shadow: 0 0 80px rgba(119, 74, 255, 0.5);
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.75fr);
  gap: 8vw;
  border-top: 1px solid var(--line);
}

.profile-statement blockquote {
  margin: 34px 0 0;
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.resume-card {
  align-self: start;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.resume-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.monogram {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.resume-top h2 {
  margin: 0 0 4px;
  font-size: 26px;
}

.resume-top p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.resume-card dl {
  margin: 0;
}

.resume-card dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.resume-card dt {
  color: var(--muted);
  font-size: 11px;
}

.resume-card dd {
  margin: 0;
  font-size: 13px;
}

.resume-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 13px;
}

.capabilities-section {
  border-top: 1px solid var(--line);
}

.capability-list {
  margin-top: 46px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 70px 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease;
}

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

.capability-list article:hover {
  padding-left: 14px;
  color: var(--accent-soft);
}

.capability-list span,
.capability-list p {
  color: var(--muted);
  font-size: 11px;
}

.capability-list h3,
.capability-list p {
  margin: 0;
}

.capability-list h3 {
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.capability-list p {
  justify-self: end;
  max-width: 460px;
  line-height: 1.8;
}

footer {
  padding: 90px 4vw 28px;
  background: var(--text);
  color: #111;
}

footer > div:first-child {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

footer p {
  margin: 0;
  font-size: clamp(50px, 8vw, 126px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

footer p em {
  color: var(--accent);
}

footer > div:first-child > a {
  min-width: 148px;
  padding: 15px 20px;
  border: 1px solid #111;
  border-radius: 100px;
  text-align: center;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  max-width: var(--max);
  margin: 90px auto 0;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 330px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 22, 25, 0.92);
  color: #c7c8cc;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 12px;
}

.preview-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.project.hidden {
  display: none;
}

.project.is-filtering {
  animation: filter-in 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes filter-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.project:focus-visible,
.reel-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.project-dialog {
  width: min(1060px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #15171a;
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  animation: dialog-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-dialog::backdrop {
  background: rgba(4, 5, 7, 0.8);
  backdrop-filter: blur(18px);
  animation: backdrop-in 300ms ease;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  cursor: pointer;
  font-size: 24px;
}

.dialog-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #0d0e10;
}

.dialog-visual img {
  height: 100%;
  object-fit: cover;
}

.dialog-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.62));
  content: "";
  pointer-events: none;
}

.dialog-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(132, 88, 255, 0.8), transparent 18%),
    linear-gradient(140deg, #21194b, #0a101c);
}

.dialog-placeholder span {
  position: relative;
  z-index: 2;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.dialog-placeholder i {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(125, 82, 255, 0.5);
}

.dialog-visual.is-placeholder img {
  display: none;
}

.dialog-visual.is-placeholder .dialog-placeholder {
  display: grid;
}

.dialog-play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px 10px 10px;
  border: 0;
  border-radius: 100px;
  background: var(--text);
  color: #111;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.dialog-play span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
}

.dialog-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 54px;
}

.dialog-copy > p:first-child {
  margin: 0 0 20px;
  color: var(--accent-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

#dialog-description {
  margin: 34px 0;
  color: #b8bbc1;
  font-size: 15px;
  line-height: 1.9;
}

.dialog-copy > div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-copy > div span,
.dialog-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-copy > div strong {
  font-size: 13px;
  font-weight: 500;
}

.dialog-copy small {
  margin-top: 30px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 4vh;
  }

  .hero-reel {
    height: 72vh;
  }

  .project-grid {
    width: 60.48%;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-featured {
    grid-row: auto;
  }

  .project-placeholder {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 20px;
  }

  .brand-label,
  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 20px 48px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-reel {
    grid-template-columns: 1.08fr 0.72fr;
    height: 68vh;
  }

  .reel-card-main {
    border-radius: 2px 2px 40px 2px;
  }

  .reel-card-small {
    border-radius: 40px 2px 2px;
  }

  .reel-meta {
    flex-direction: column;
    gap: 4px;
  }

  .reel-overlay {
    padding: 16px;
  }

  .play-button {
    width: 54px;
    height: 54px;
  }

  .work-section,
  .profile-section,
  .capabilities-section {
    padding: 84px 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2 {
    font-size: 46px;
  }

  .filters {
    justify-content: flex-start;
  }

  .project-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 42px 10px;
  }

  .project-info {
    display: block;
  }

  .project-info h3 {
    font-size: 16px;
  }

  .project-info > span {
    display: none;
  }

  .placeholder-visual > p {
    font-size: 20px;
  }

  .profile-statement blockquote {
    font-size: 45px;
  }

  .resume-card {
    padding: 24px;
  }

  .capability-list article {
    grid-template-columns: 34px 1fr;
  }

  .capability-list p {
    display: none;
  }

  footer {
    padding: 70px 20px 24px;
  }

  footer > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    font-size: 52px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .dialog-visual {
    min-height: 52vh;
  }

  .dialog-copy {
    min-height: auto;
    padding: 42px 24px 34px;
  }

  .dialog-copy h2 {
    font-size: 48px;
  }
}

@media (pointer: coarse) {
  .work-backdrop-reveal {
    -webkit-mask-image: radial-gradient(
      circle 190px at 68% 40%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 0.72) 62%,
      rgba(255, 255, 255, 0.25) 84%,
      rgba(255, 255, 255, 0) 100%
    );
    mask-image: radial-gradient(
      circle 190px at 68% 40%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 0.72) 62%,
      rgba(255, 255, 255, 0.25) 84%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

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

  .ticker div {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

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