:root {
  color-scheme: dark;
  --bg: #090909;
  --ink: #f4f1ea;
  --muted: #aaa9a4;
  --soft: #777873;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(8, 8, 9, 0.34);
  --panel-solid: #121213;
  --accent: #d7d0c3;
  --gold: #b9a06f;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body > main,
body > header {
  position: relative;
  z-index: 3;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #101114;
}

.works-landing {
  min-height: 72svh;
}

.stage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stage-frame {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
}

.stage-frame:last-child {
  border-right: 0;
}

.stage-frame-image {
  opacity: 1;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 4200ms ease, filter 900ms ease;
}

.stage-frame.is-changing .stage-frame-image {
  opacity: 0.24;
  transform: scale(1.075);
  filter: saturate(0.72) contrast(1);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.44) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

.bottom-panel {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 116px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 14px 0 0;
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 -18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(5px);
}

.panel-logo {
  grid-column: 1;
  align-self: stretch;
  display: flex;
  width: 124px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.brand-block {
  grid-column: 2;
  display: grid;
  gap: 7px;
  justify-self: start;
  align-content: end;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-name {
  display: inline-flex;
  justify-self: start;
  text-transform: uppercase;
}

.site-name h1 {
  margin: 0;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  font-weight: 300;
}

.experience-line {
  color: var(--gold);
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.social-links {
  position: relative;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.92;
}

.panel-actions {
  grid-column: 3;
  display: grid;
  justify-items: end;
  align-content: end;
  gap: 11px;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 30px clamp(22px, 2.4vw, 48px) 28px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a + a,
.subpage-nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.58);
}

.main-nav a:last-child {
  padding-right: 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.language-switch {
  --lang-row: 40px;
  position: relative;
  display: inline-grid;
  justify-content: flex-end;
  justify-items: stretch;
  width: max-content;
  z-index: 8;
}

.language-switch button {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 86px;
  min-height: 40px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--soft);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bottom-panel .language-switch {
  --lang-row: 32px;
  transform: translate(14px, -4px);
}

.bottom-panel .language-switch button {
  width: 72px;
  min-height: 32px;
  padding: 4px 8px;
  font-size: 9.5px;
}

.bottom-panel .language-switch button.is-active {
  padding-right: 20px;
}

.bottom-panel .language-switch button.is-active::after {
  right: 7px;
}

.bottom-panel .language-switch .flag {
  width: 28px;
  height: 18px;
}

.language-switch button.is-active,
.language-switch.is-open button {
  display: inline-flex;
}

.language-switch button.is-active {
  position: relative;
  padding-right: 24px;
  z-index: 2;
}

.language-switch button.is-active::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(-35%);
  opacity: 0.8;
}

.language-switch.is-open button.is-active::after {
  transform: translateY(-35%) rotate(180deg);
}

.language-switch.is-open button:not(.is-active) {
  position: absolute;
  right: 0;
  z-index: 1;
  border-top: 0;
  background: rgba(14, 14, 15, 0.94);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
}

.language-switch.is-open button:nth-of-type(2) {
  top: calc(100% + 4px);
}

.language-switch.is-open button:nth-of-type(3) {
  top: calc(100% + 4px + var(--lang-row));
}

.language-switch.is-open button:nth-of-type(4) {
  top: calc(100% + 4px + var(--lang-row) + var(--lang-row));
}

.language-switch.is-open button:nth-of-type(5) {
  top: calc(100% + 4px + var(--lang-row) + var(--lang-row) + var(--lang-row));
}

.language-switch.is-open button:nth-of-type(6) {
  top: calc(100% + 4px + var(--lang-row) + var(--lang-row) + var(--lang-row) + var(--lang-row));
}

.bottom-panel .language-switch.is-open button:not(.is-active) {
  top: auto;
}

.bottom-panel .language-switch.is-open button:nth-of-type(2) {
  bottom: calc(100% + 4px);
}

.bottom-panel .language-switch.is-open button:nth-of-type(3) {
  bottom: calc(100% + 4px + var(--lang-row));
}

.bottom-panel .language-switch.is-open button:nth-of-type(4) {
  bottom: calc(100% + 4px + var(--lang-row) + var(--lang-row));
}

.bottom-panel .language-switch.is-open button:nth-of-type(5) {
  bottom: calc(100% + 4px + var(--lang-row) + var(--lang-row) + var(--lang-row));
}

.bottom-panel .language-switch.is-open button:nth-of-type(6) {
  bottom: calc(100% + 4px + var(--lang-row) + var(--lang-row) + var(--lang-row) + var(--lang-row));
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.flag {
  width: 36px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.shopier-banner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: clamp(43px, 4.5vw, 69px);
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34)),
    url("./assets/shopier-banner.png") center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
}

.shopier-banner span {
  color: var(--ink);
  font-size: clamp(17px, 3vw, 43px);
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.7), 0 0 1px rgba(0, 0, 0, 0.9);
}

.shopier-banner:hover span,
.shopier-banner:focus-visible span {
  color: #fff;
}

.work-strip,
.awards-section,
.about-contact {
  padding: 88px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.work-strip:not(.works-page) .section-title {
  display: grid;
  grid-template-columns: 1fr;
}

.work-strip:not(.works-page) .filter-pills {
  justify-self: end;
}

.section-title p {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-heading {
  flex: 1 1 auto;
  min-width: 0;
}

.work-title-row {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr);
  align-items: end;
  column-gap: clamp(28px, 5vw, 88px);
}

.work-slogan {
  justify-self: end;
  max-width: 520px;
  padding-bottom: clamp(2px, 0.7vw, 8px);
  text-align: right;
  color: var(--muted);
  font-size: clamp(18px, 1.725vw, 25.5px);
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 300;
}

h2 small,
.works-hero-copy h1 small {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  font-weight: 800;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(250px, 34vw);
  gap: 12px;
}

.strip-grid.all-projects {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: minmax(105px, 11vw);
  gap: 7px;
}

.strip-grid.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: stretch;
  min-height: 106px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline-year,
.timeline-count {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.timeline-count {
  color: var(--muted);
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 7px;
  min-height: 86px;
}

.timeline-items:empty {
  min-height: 42px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-items .project-tile {
  min-height: 86px;
  aspect-ratio: 1.2;
}

.project-tile {
  position: relative;
  overflow: hidden;
  background: var(--panel-solid);
}

.project-tile.large {
  grid-row: span 2;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.project-tile img {
  transition: transform 320ms ease, filter 320ms ease;
}

.project-tile:hover img {
  filter: contrast(1.05);
  transform: scale(1.035);
}

.project-tile span {
  position: absolute;
  z-index: 1;
  left: 9px;
  right: 9px;
  bottom: 22px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.project-tile small {
  position: absolute;
  z-index: 1;
  left: 9px;
  right: 9px;
  bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-contact p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.awards-section {
  background: rgba(8, 8, 8, 0.82);
}

.awards-grid {
  display: grid;
  gap: 16px;
}

.award-film {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-film-head h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  font-weight: 300;
}

.award-film-head p,
.award-list p {
  margin: 0;
}

.award-film-head p {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.award-list {
  display: grid;
  gap: 1px;
}

.award-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.award-year {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.award-event {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.award-result {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.source-link {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 820px) auto;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  min-height: 520px;
  background: rgba(17, 17, 17, 0.82);
}

.about-contact .about-portrait {
  width: min(300px, 100%);
}

.about-contact .about-copy p:not(.kicker) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.78;
}

.contact-link {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.back-top-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.back-top-link::before {
  content: "↑";
  margin-right: 7px;
  font-size: 13px;
  line-height: 1;
}

.back-top-link:hover,
.back-top-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 88px;
}

.filter-pills {
  display: flex;
  flex-wrap: nowrap;
  justify-content: end;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-pills a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.filter-pills a:hover,
.filter-pills a:focus-visible,
.filter-pills a.is-active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.46);
}

.subpage {
  min-height: 100svh;
  background: transparent;
}

.subpage-header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
}

.subpage-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.subpage-nav a {
  position: relative;
  white-space: nowrap;
}

.subpage-nav a + a::before {
  left: calc(-0.5 * clamp(14px, 2vw, 30px));
}

.subpage-nav a:hover,
.subpage-nav a:focus-visible,
.subpage-nav a.is-active {
  color: var(--ink);
}

.works-page {
  padding-top: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.82);
}

.works-hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 138px;
  max-width: 1000px;
  text-transform: uppercase;
}

.works-hero-copy p {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.works-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 118px);
  line-height: 0.9;
  font-weight: 300;
}

.about-page {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 760px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 8vw, 120px);
}

.about-portrait {
  margin: 0;
  aspect-ratio: 300 / 449;
  background: #141414;
}

.about-portrait img {
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .bottom-panel {
    grid-template-columns: auto minmax(150px, 1fr) auto auto;
  }

  .panel-logo {
    width: 116px;
  }

  .menu-toggle {
    grid-column: 4;
    grid-row: 1;
    display: flex;
    justify-self: end;
  }

  .panel-actions {
    display: contents;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12, 12, 13, 0.72);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    transform: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a + a {
    border-left: 0;
    padding-left: 28px;
  }

  .strip-grid.all-projects {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(120px, 24vw);
  }

  .timeline-row {
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    gap: 8px;
  }

  .timeline-items {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  }

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

  .filter-pills {
    justify-content: flex-start;
  }

  .work-strip:not(.works-page) .filter-pills {
    justify-self: start;
  }

  .subpage-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .subpage-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .subpage-nav a + a {
    padding-left: 14px;
  }

  .about-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing {
    min-height: 82svh;
  }

  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .stage-frame {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .stage-frame:nth-child(2) {
    border-right: 0;
  }

  .stage-frame:nth-child(n + 3) {
    display: none;
  }

  .bottom-panel {
    grid-template-columns: 74px minmax(0, 1fr) 44px;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 136px;
    padding: 10px 12px 10px 0;
    gap: 8px 10px;
  }

  .panel-logo {
    grid-row: 1 / 3;
    width: 74px;
    padding: 10px;
  }

  .brand-block {
    grid-column: 2;
    grid-row: 1;
    gap: 5px;
    min-width: 0;
    align-self: end;
    white-space: normal;
  }

  .panel-actions {
    display: contents;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
    align-self: start;
  }

  .language-switch {
    --lang-row: 32px;
    grid-column: 2 / 4;
    grid-row: 2;
    justify-content: flex-start;
    min-width: 0;
    transform: none;
  }

  .main-nav {
    bottom: 136px;
  }

  .works-hero-copy {
    bottom: 162px;
  }

  .site-name h1 {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.02;
  }

  .experience-line {
    font-size: 10px;
    line-height: 1.15;
  }

  .work-title-row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .work-slogan {
    justify-self: end;
    max-width: min(100%, 420px);
  }

  .language-switch button {
    min-height: 32px;
    padding: 4px 6px;
    width: 70px;
    gap: 5px;
    font-size: 9px;
  }

  .language-switch button.is-active {
    padding-right: 20px;
  }

  .language-switch button.is-active::after {
    right: 7px;
  }

  .flag {
    width: 24px;
    height: 16px;
  }

  .social-links {
    top: 0;
    gap: 4px;
    max-width: 100%;
    overflow: hidden;
  }

  .social-link {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
  }

  .social-link img {
    width: 14px;
    height: 14px;
  }

  .shopier-banner {
    min-height: 46px;
  }

  .work-strip,
  .awards-section,
  .about-contact {
    padding: 64px 20px;
  }

  .section-title {
    gap: 22px;
    margin-bottom: 28px;
  }

  .work-slogan {
    justify-self: start;
    text-align: left;
  }

  .filter-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 6px;
  }

  .filter-pills a {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 10px;
  }

  .filter-pills a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .strip-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, 70vw);
  }

  .strip-grid.all-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(130px, 42vw);
  }

  .strip-grid.timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .timeline-year,
  .timeline-count {
    justify-content: start;
    place-items: start;
  }

  .project-tile.large {
    grid-row: auto;
  }

  .about-contact {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 0;
  }

  .award-film {
    grid-template-columns: 1fr;
  }
}
