:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.04);
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Poppins, Arial, sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 20;
}

.brand {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.menu-shell {
  position: relative;
}

.menu-toggle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-grid;
  place-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--fg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  animation: menu-bob 600ms ease-in-out;
}

.menu-toggle:hover span:nth-child(1) {
  transform: translateX(-3px);
}

.menu-toggle:hover span:nth-child(2) {
  transform: translateX(3px);
}

.menu-toggle:hover span:nth-child(3) {
  transform: translateX(-2px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 6px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav a {
  opacity: 0.9;
  padding: 12px 14px;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav a[aria-current="page"] {
  opacity: 1;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(-2px);
}

.nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@keyframes menu-bob {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  35% {
    transform: rotate(-4deg) translateY(-1px);
  }

  70% {
    transform: rotate(4deg) translateY(1px);
  }
}

.footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: grid;
  place-items: center;
  gap: 16px;
}

.footer-email {
  font-size: 17px;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 22px;
}

.socials img {
  width: 25px;
  height: 25px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 44%),
    linear-gradient(135deg, #101010 0%, #040404 45%, #1e1e1e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
}

.hero-title {
  font-size: clamp(54px, 7vw, 70px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 34px;
}

.hero-kicker {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.cta-row {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta {
  position: relative;
  min-width: 170px;
  height: 56px;
  border: 1px solid var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.08);
  padding: 0 54px 0 22px;
  text-align: center;
}

.cta svg {
  position: absolute;
  right: 18px;
  width: 22px;
  height: 22px;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 180px);
  align-items: stretch;
}

.media-fill {
  min-height: 72vh;
}

.media-fill img,
.media-card,
.contact-panel {
  width: 100%;
  height: 100%;
}

.media-card,
.contact-panel {
  min-height: 100%;
  padding: 48px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0a0a0a;
  border: 1px solid var(--line);
  display: grid;
  align-content: end;
}

.media-card-label,
.contact-panel-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
}

.media-card-copy,
.contact-panel-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.copy-panel {
  display: grid;
  align-content: center;
  padding: 48px 64px;
}

.eyebrow {
  font-size: 28px;
  margin: 0 0 18px;
  font-weight: 500;
}

.body-copy {
  font-size: 17px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 560px;
}

.work-page {
  padding: 28px 0 40px;
}

.featured {
  display: grid;
  grid-template-columns: minmax(280px, 516px);
  justify-content: center;
  gap: 24px;
  align-items: center;
  margin: 18px auto 56px;
}

.project-details {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.project-details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.project-details summary::-webkit-details-marker {
  display: none;
}

.project-details summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.project-details[open] summary::after {
  content: "-";
}

.project-details-body {
  padding: 0 18px 18px;
}

.project-details-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.project-details-body p:last-child {
  margin-bottom: 0;
}

.featured-media img,
.featured-media video {
  width: 100%;
  aspect-ratio: 516 / 776;
  object-fit: cover;
}

.project {
  margin: 0 0 64px;
}

.project-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

.project-media button,
.featured-media button {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #090909;
  cursor: pointer;
}

.project-media img,
.project-media video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #090909;
}

.project-preview {
  width: 100%;
  height: 100%;
}

.project-copy {
  text-align: center;
  padding: 18px 12px 0;
}

.project-copy-top {
  padding-top: 0;
  margin-bottom: 30px;
}

.full-video-section {
  margin: 40px 0 28px;
}

.full-video-copy {
  margin-bottom: 22px;
  text-align: center;
}

.full-video-label {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.full-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid var(--line);
  background: #050505;
}

.full-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-title {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
}

.project-role {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.project-subtitle,
.project-date {
  margin: 0;
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: min(100%, 1040px);
}

.video-modal video {
  width: 100%;
  max-height: 86vh;
  background: #000;
}

.video-close {
  position: absolute;
  top: -44px;
  right: 0;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 30px;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 490px minmax(320px, 540px);
  justify-content: center;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.contact-panel {
  aspect-ratio: 490 / 859;
}

.about-page {
  min-height: calc(100vh - 150px);
  padding: 10px 0 22px;
  display: grid;
  align-content: start;
  gap: 18px;
  position: relative;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 0;
}

.about-copy {
  padding-right: 10px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.about-copy::before,
.about-statement::before,
.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.about-copy::after,
.about-statement::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.about-copy .eyebrow {
  margin-bottom: 12px;
  font-size: 24px;
}

.about-copy .body-copy {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 12px;
  max-width: 620px;
}

.about-copy .body-copy:last-child {
  margin-bottom: 0;
}

.about-statement {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  padding: 24px 26px;
  display: grid;
  align-content: end;
  min-height: 100%;
  border-radius: 30px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 20px 50px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.about-statement-label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-statement-copy {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  text-wrap: balance;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: minmax(120px, 22vh) minmax(120px, 22vh);
  gap: 14px;
}

.about-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.03);
  border-radius: 26px;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 45px rgba(0, 0, 0, 0.22);
  position: relative;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(1.02);
}

.about-media video {
  pointer-events: none;
}

.about-media-wide {
  grid-row: 1 / 3;
  grid-column: 1;
}

.about-media-tall {
  aspect-ratio: auto;
}

.about-media-portrait {
  grid-column: 3;
  grid-row: 1 / 3;
}

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

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 15px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--fg);
  padding: 14px 16px;
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.send {
  width: 160px;
  height: 46px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font: inherit;
  cursor: pointer;
}

.send-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.downloads-page {
  padding: 24px 0 56px;
}

.downloads-hero {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.downloads-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
}

.downloads-hero-copy p,
.downloads-note p,
.download-meta,
.download-file-size,
.download-file-type,
.lock-help,
.unlock-status {
  color: var(--muted);
}

.downloads-hero-copy p,
.downloads-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}

.downloads-note {
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.downloads-search-shell {
  max-width: 760px;
  margin: 0 auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  padding: 28px;
  border-radius: 30px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.downloads-search {
  display: grid;
  gap: 14px;
}

.downloads-search-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.downloads-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.downloads-search-row button {
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font: inherit;
  cursor: pointer;
  min-width: 120px;
}

.downloads-results {
  display: grid;
}

.download-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 28px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.download-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.download-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 500;
}

.download-card p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
}

.lock-badge {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lock-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 20px;
}

.lock-form input {
  min-width: 0;
}

.lock-form button,
.download-file-link {
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font: inherit;
  cursor: pointer;
}

.lock-form button {
  min-width: 118px;
  padding: 0 18px;
}

.lock-help,
.unlock-status {
  margin: 10px 0 0;
  font-size: 13px;
}

.unlock-status[data-state="error"] {
  color: #ff8f8f;
}

.unlock-status[data-state="success"] {
  color: #9ae6b4;
}

.download-files {
  margin-top: 22px;
  display: none;
  gap: 14px;
}

.download-card.is-unlocked .download-files {
  display: grid;
}

.download-card.is-unlocked .lock-badge {
  background: rgba(154, 230, 180, 0.12);
}

.search-result {
  display: none;
}

.search-result.is-visible {
  display: block;
}

.download-files.is-visible {
  display: grid;
}

.download-file {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.download-file-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.download-file-name {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.download-file-type,
.download-file-size {
  margin: 0;
  font-size: 13px;
}

.download-file-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.downloads-search-shell::before,
.download-card::before,
.project-copy::before,
.project-details::before,
.contact-panel::before,
.contact-form::before,
.download-file::before,
.full-video-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.downloads-search-shell::after,
.download-card::after,
.project-copy::after,
.project-details::after,
.contact-panel::after,
.contact-form::after,
.download-file::after,
.full-video-embed::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.project-copy,
.project-details,
.contact-panel,
.contact-form,
.full-video-embed {
  position: relative;
  overflow: hidden;
}

.project-copy {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 26px 24px;
}

.project-details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.project-media {
  gap: 14px;
}

.project-media button {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 45px rgba(0, 0, 0, 0.2);
}

.full-video-embed {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  padding: 28px;
  border-radius: 30px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.2);
}

input,
textarea,
.downloads-search-row button,
.download-file-link,
.send {
  border-radius: 18px;
}

input,
textarea {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.downloads-search-row button,
.download-file-link,
.send {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

@media (max-width: 1100px) {
  .featured,
  .split,
  .contact-grid,
  .downloads-hero,
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .copy-panel {
    padding: 34px 0 20px;
  }

  .media-fill {
    min-height: auto;
  }

  .contact-grid {
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
  }

  .downloads-note {
    order: -1;
  }

  .about-copy {
    padding-right: 0;
  }

  .about-page {
    min-height: auto;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .about-page {
    padding-top: 8px;
    gap: 16px;
  }

  .about-intro {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
  }

  .about-copy,
  .about-statement {
    border-radius: 26px;
  }

  .about-copy .eyebrow {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about-copy .body-copy {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .about-statement {
    padding: 22px;
  }

  .about-statement-copy {
    font-size: 22px;
  }

  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(120px, 18vh));
    gap: 14px;
  }

  .about-media,
  .about-media-wide,
  .about-media-tall,
  .about-media-portrait {
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding-bottom: 8px;
  }

  .brand {
    font-size: 24px;
  }

  .menu-toggle {
    width: 58px;
    height: 58px;
  }

  .nav {
    min-width: min(250px, calc(100vw - 32px));
  }

  .hero-title {
    margin-bottom: 24px;
  }

  .cta {
    min-width: 150px;
    height: 52px;
  }

  .page,
  .topbar,
  .footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .project-media {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .project-media img {
    aspect-ratio: 1 / 1;
  }

  .project-media video {
    aspect-ratio: 1 / 1;
  }

  .project-media button {
    border-radius: 18px;
  }

  .project-title {
    font-size: 24px;
  }

  .project-subtitle,
  .project-date {
    font-size: 18px;
  }

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

  .project-details summary {
    padding: 14px 16px;
    font-size: 13px;
  }

  .full-video-section {
    margin-top: 32px;
  }

  .project-copy {
    padding: 20px 18px;
  }

  .full-video-copy {
    margin-bottom: 16px;
  }

  .full-video-label {
    font-size: 22px;
  }

  .about-page {
    padding-top: 12px;
  }

  .about-statement {
    padding: 20px;
  }

  .about-statement-copy {
    font-size: 24px;
  }

  .about-copy .body-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(88px, 15vh));
    gap: 12px;
  }

  .about-media,
  .about-media-wide,
  .about-media-tall,
  .about-media-portrait {
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .about-statement {
    padding: 18px;
  }

  .about-statement-copy {
    font-size: 20px;
  }

  .about-copy,
  .about-statement,
  .about-media {
    border-radius: 22px;
  }

  .project-details-body {
    padding: 0 16px 16px;
  }

  .downloads-page {
    padding-top: 12px;
  }

  .download-card {
    padding: 18px;
  }

  .download-card-head,
  .download-file-head {
    flex-direction: column;
  }

  .lock-form {
    grid-template-columns: 1fr;
  }

  .lock-form button,
  .download-file-link {
    width: 100%;
  }

  .downloads-search-shell {
    padding: 18px;
  }

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

  .downloads-search-row button {
    min-height: 46px;
  }
}
