:root {
  --ink: #f7f1e8;
  --muted-ink: rgba(247, 241, 232, 0.72);
  --beige-light: #d8d1c6;
  --beige-dark: #d4cabc;
  --deep: var(--beige-dark);
  --stone: var(--beige-light);
  --footer-bg: var(--beige-dark);
  --footer-ink: #1f1b17;
  --footer-muted: rgba(31, 27, 23, 0.68);
  --hairline: rgba(255, 250, 241, 0.58);
  --font: "Maison Neue", "MaisonNeue-Book", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-family: "Maison Neue";
  src: url("assets/fonts/MaisonNeue-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("assets/fonts/MaisonNeue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("assets/fonts/MaisonNeue-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige-dark);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
  font-synthesis: none;
}

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

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  overflow: hidden;
  background: var(--beige-dark);
}

.material-grid {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-material-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-cinema 26s ease-in-out infinite alternate;
}

.panel {
  display: none;
}

.material-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 34%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 46% 52%, rgba(255, 244, 228, 0.05), transparent 28%);
  animation: hero-light-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.panel-stone {
  background: transparent;
}

.panel-stone::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 56%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 35% 35%, rgba(255, 246, 226, 0.08), transparent 30%);
  mix-blend-mode: soft-light;
}

.panel-bronze {
  background: transparent;
}

.panel-bronze::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 12%, transparent 84%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 44% 31%, rgba(255, 173, 92, 0.17), transparent 34%);
  animation: bronze-breathe 14s ease-in-out infinite alternate;
}

.panel-linen {
  background: transparent;
}

.panel-linen::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 24%, rgba(255, 245, 226, 0.04) 54%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 58% 39%, rgba(255, 237, 207, 0.08), transparent 32%);
  animation: linen-drift 18s ease-in-out infinite alternate;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 42% 18% 40%;
  align-items: start;
  padding: clamp(38px, 4.8vw, 62px) clamp(48px, 4.8vw, 66px);
  pointer-events: none;
}

.brand,
.desktop-nav,
.menu-toggle {
  pointer-events: auto;
}

.brand {
  grid-column: 1;
  font-size: clamp(36px, 3vw, 46px);
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 250, 241, 0.97);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: clamp(34px, 4.1vw, 56px);
  padding-top: 12px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 250, 241, 0.9);
}

.desktop-nav a,
.mobile-nav a {
  transition: opacity 220ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  opacity: 0.62;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero-center {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 50.4%;
  top: 55.6%;
  width: min(31vw, 430px);
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: auto;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 53px;
  margin-top: clamp(54px, 5.8vw, 78px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.portfolio-link:hover {
  border-color: rgba(255, 250, 241, 0.86);
  color: #fffaf1;
  background-color: rgba(255, 250, 241, 0.045);
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: clamp(38px, 4.4vw, 62px);
  bottom: clamp(62px, 7vh, 92px);
  margin: 0;
  max-width: none;
  color: rgba(255, 250, 241, 0.82);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-note span {
  display: block;
}

.studio-section,
.work-section,
.join-section {
  background: var(--beige-light);
  color: #181512;
  padding: clamp(82px, 10vw, 136px) clamp(28px, 5.4vw, 70px);
}

.studio-section {
  background: var(--beige-light);
  padding-bottom: 0;
}

.work-section {
  background: var(--beige-dark);
}

.join-section {
  background: var(--beige-light);
  border-top: 1px solid rgba(31, 27, 23, 0.08);
}

.section-kicker {
  margin-bottom: clamp(34px, 5vw, 64px);
  color: rgba(24, 21, 18, 0.54);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-layout,
.work-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.28fr);
  gap: clamp(58px, 8vw, 126px);
  align-items: start;
}

.studio-layout > *,
.work-layout > * {
  min-width: 0;
}

.studio-intro {
  position: sticky;
  top: 56px;
  min-width: 0;
}

.studio-intro h2,
.work-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #181512;
  font-size: clamp(36px, 4.1vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.studio-intro p,
.work-copy p {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(24, 21, 18, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.studio-intro strong,
.studio-text strong {
  font-weight: 600;
}

.studio-text {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  min-width: 0;
  padding-top: clamp(34px, 3.8vw, 58px);
}

.studio-text article {
  border-top: 1px solid rgba(24, 21, 18, 0.2);
  padding-top: 24px;
}

.studio-text h3 {
  margin: 0;
  color: #181512;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.studio-text p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(24, 21, 18, 0.68);
  font-size: 14px;
  line-height: 1.78;
}

.methodology-block {
  margin-top: clamp(42px, 5.5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid rgba(24, 21, 18, 0.18);
}

.methodology-block h3 {
  margin: 0 0 26px;
  color: rgba(24, 21, 18, 0.76);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.methodology-grid article {
  min-width: 0;
}

.methodology-grid span {
  display: block;
  margin-bottom: 14px;
  color: rgba(24, 21, 18, 0.42);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.methodology-grid h4 {
  max-width: 180px;
  margin: 0;
  color: rgba(24, 21, 18, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-actions,
.work-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  border: 1px solid rgba(24, 21, 18, 0.38);
  border-radius: 999px;
  color: rgba(24, 21, 18, 0.78);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.studio-actions span,
.work-actions span {
  color: rgba(24, 21, 18, 0.48);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 78px);
  width: min(100%, 1120px);
  margin: clamp(70px, 8vw, 112px) 0 0 auto;
}

.founders-grid article {
  border-top: 1px solid rgba(24, 21, 18, 0.22);
  padding-top: 28px;
  min-width: 0;
}

.founder-image {
  position: relative;
  isolation: isolate;
  margin: 0 0 26px;
  overflow: hidden;
  background: var(--beige-dark);
  box-shadow: inset 0 0 0 1px rgba(31, 27, 23, 0.1);
}

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(31, 27, 23, 0.08)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.founder-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(1.02) brightness(0.96);
  mix-blend-mode: normal;
  transform: scale(1.012);
}

.founders-grid article:nth-child(2) .founder-image img {
  object-position: center top;
}

.founder-copy {
  max-width: 470px;
}

.founder-name {
  margin: 0;
  color: #181512;
  font-size: 18px;
  line-height: 1.25;
}

.founder-role {
  margin: 9px 0 24px;
  color: rgba(24, 21, 18, 0.58);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founders-grid article p:not(.founder-name):not(.founder-role) {
  margin: 0;
  color: rgba(24, 21, 18, 0.7);
  font-size: 14px;
  line-height: 1.78;
}

.founders-grid article p + p:not(.founder-role) {
  margin-top: 18px;
}

.services-list {
  max-width: 520px;
  margin-top: clamp(42px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid rgba(24, 21, 18, 0.22);
}

.services-list p {
  margin: 0 0 18px;
  color: rgba(24, 21, 18, 0.56);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li {
  color: rgba(24, 21, 18, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.services-list li:not(:last-child)::after {
  content: "/";
  margin-left: 18px;
  color: rgba(24, 21, 18, 0.28);
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(210px, 0.22fr) minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin: clamp(78px, 9vw, 128px) calc(clamp(28px, 5.4vw, 70px) * -1) 0;
  padding: clamp(42px, 5vw, 58px) clamp(28px, 7vw, 112px);
  background: var(--beige-light);
  border-top: 1px solid rgba(31, 27, 23, 0.07);
  border-bottom: 1px solid rgba(31, 27, 23, 0.07);
}

.experience-band-editorial {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  align-items: start;
}

.experience-content {
  display: grid;
  gap: clamp(42px, 5vw, 70px);
}

.experience-band-editorial .experience-copy {
  max-width: 760px;
}

.experience-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(31, 27, 23, 0.68);
  font-size: 14px;
  line-height: 1.72;
}

.experience-band-editorial .experience-copy p {
  max-width: 690px;
}

.experience-band-editorial .experience-copy p:first-child {
  color: #181512;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1.18;
}

.experience-band-editorial .experience-copy p + p {
  margin-top: 22px;
}

.experience-copy strong {
  color: #181512;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.experience-label p {
  max-width: 220px;
  margin: 0;
  color: rgba(31, 27, 23, 0.6);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-label-title {
  margin-bottom: 12px !important;
  color: #181512 !important;
  font-size: 16px !important;
  font-weight: 300;
  letter-spacing: 0.04em !important;
}

.experience-label span {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 18px;
  background: rgba(31, 27, 23, 0.28);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  max-width: 920px;
}

.expertise-grid article {
  border-top: 1px solid rgba(31, 27, 23, 0.2);
  padding-top: 22px;
}

.expertise-grid h3 {
  margin: 0 0 18px;
  color: rgba(31, 27, 23, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expertise-grid p {
  margin: 0;
  color: rgba(31, 27, 23, 0.66);
  font-size: 13px;
  line-height: 1.72;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-drift 36s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  align-items: center;
}

.logo-set img {
  display: block;
  width: clamp(145px, 12.1vw, 196px);
  height: 77px;
  padding: 0 clamp(24px, 3vw, 42px);
  object-fit: contain;
  opacity: 0.46;
  filter: grayscale(1) contrast(0.92);
}

.logo-set img + img {
  border-left: 1px solid rgba(31, 27, 23, 0.16);
}

.experience-note {
  grid-column: 2 / 4;
  margin-top: 12px;
  color: rgba(31, 27, 23, 0.58);
  font-size: 12px;
  line-height: 1.7;
}

.experience-note p {
  margin: 0;
}

.project-visual {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.archive-slides {
  position: relative;
  height: clamp(560px, 62vw, 820px);
  background: var(--beige-dark);
}

.archive-slides img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.88) contrast(0.98);
  animation: archive-fade 18s ease-in-out infinite;
}

.archive-slides img:nth-child(2) {
  animation-delay: 6s;
}

.archive-slides img:nth-child(3) {
  animation-delay: 12s;
}

.project-visual figcaption {
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 38px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 250, 241, 0.76);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-line {
  color: rgba(24, 21, 18, 0.58) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confidential-portfolio {
  max-width: 470px;
  margin-top: clamp(54px, 6vw, 78px);
  padding-top: 28px;
  border-top: 1px solid rgba(24, 21, 18, 0.22);
}

.confidential-portfolio .gallery-eyebrow {
  margin: 0 0 18px;
  color: rgba(24, 21, 18, 0.56);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.confidential-portfolio h3 {
  margin: 0 0 22px;
  color: #181512;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidential-portfolio p:not(.gallery-eyebrow):not(.portfolio-request) {
  margin: 0;
  color: rgba(24, 21, 18, 0.66);
  font-size: 14px;
  line-height: 1.76;
}

.portfolio-request {
  margin: 26px 0 0;
  color: rgba(24, 21, 18, 0.72);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confidential-portfolio .gallery-button {
  min-width: 205px;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.28fr);
  gap: clamp(58px, 8vw, 126px);
  align-items: start;
}

.join-layout h2 {
  max-width: 520px;
  margin: 0;
  color: #181512;
  font-size: clamp(36px, 4.1vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.join-layout p {
  max-width: 650px;
  margin: 0;
  color: rgba(24, 21, 18, 0.68);
  font-size: 15px;
  line-height: 1.85;
}

.join-layout a {
  color: rgba(24, 21, 18, 0.84);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.brand-logos {
  margin: clamp(64px, 8vw, 110px) auto 0;
  width: min(100%, 900px);
  padding: clamp(34px, 5vw, 58px);
  background: var(--beige-light);
}

.brand-logos img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.72;
  mix-blend-mode: multiply;
  filter: grayscale(1);
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  border-top: 1px solid rgba(31, 27, 23, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.92fr;
  gap: clamp(54px, 8vw, 132px);
  padding: clamp(58px, 7vw, 88px) clamp(28px, 5.4vw, 70px) clamp(34px, 4vw, 48px);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.site-footer h3 {
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 10px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(28px, 5.4vw, 70px) clamp(30px, 4vw, 44px);
}

.footer-legal {
  display: block;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.4;
}

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

.footer-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: rgba(31, 27, 23, 0.68);
  transition: opacity 220ms ease;
}

.footer-social a:hover {
  opacity: 0.62;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-group + .footer-group {
  margin-top: 26px;
}

.footer-group p,
.footer-address p {
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-group a {
  display: inline-block;
  color: rgba(31, 27, 23, 0.78);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 220ms ease;
}

.footer-group a:hover {
  opacity: 0.66;
}

@keyframes bronze-breathe {
  from {
    opacity: 0.86;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes hero-cinema {
  from {
    transform: scale(1.01) translate3d(-0.45%, -0.25%, 0);
  }

  to {
    transform: scale(1.055) translate3d(0.45%, 0.35%, 0);
  }
}

@keyframes hero-light-drift {
  from {
    opacity: 0.86;
    transform: translate3d(-0.3%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0.3%, 0, 0);
  }
}

@keyframes linen-drift {
  from {
    transform: translateX(-0.7%) scale(1.01);
  }

  to {
    transform: translateX(0.7%) scale(1.02);
  }
}

@keyframes archive-fade {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  95% {
    opacity: 0;
    transform: scale(1.035);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logo-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .logo-track {
    transform: translateX(0);
  }

  .hero-material-image,
  .archive-slides img {
    animation: none;
  }

  .archive-slides img:first-child {
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .material-grid,
  .site-header,
  .hero-center {
    grid-template-columns: 18% 60% 22%;
  }

  .site-header {
    padding: 24px 22px;
  }

  .brand {
    grid-column: 1 / 3;
    font-size: clamp(28px, 7.8vw, 34px);
    font-weight: 400;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 241, 0.58);
    border-radius: 999px;
    background: var(--beige-dark);
    color: var(--ink);
    cursor: pointer;
    position: relative;
    z-index: 6;
    appearance: none;
  }

  .menu-toggle span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  body.menu-open .menu-toggle span:first-child {
    transform: rotate(38deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: rotate(-38deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 4;
    top: 78px;
    right: 22px;
    display: grid;
    gap: 18px;
    min-width: 156px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 250, 241, 0.24);
    background: var(--beige-dark);
    backdrop-filter: blur(18px);
    color: rgba(24, 21, 18, 0.84);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-copy {
    left: 50%;
    right: auto;
    top: 56%;
    width: min(68vw, 292px);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  h1 {
    font-size: clamp(19px, 5.15vw, 21px);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .portfolio-link {
    min-width: 194px;
    min-height: 50px;
    margin-top: 40px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .hero-note {
    display: block;
    right: 18px;
    bottom: 42px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .studio-section,
  .work-section,
  .join-section {
    padding: 68px 26px;
  }

  .studio-section {
    padding-bottom: 0;
  }

  .section-kicker {
    margin-bottom: 30px;
  }

  .studio-layout,
  .work-layout,
  .founders-grid,
  .join-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .studio-intro {
    position: static;
  }

  .studio-text {
    padding-top: 0;
  }

  .methodology-block {
    margin-top: 34px;
    padding-top: 22px;
  }

  .methodology-block h3 {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .methodology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  .methodology-grid h4 {
    max-width: 100%;
    font-size: 11px;
  }

  .studio-intro h2,
  .work-copy h2,
  .join-layout h2 {
    font-size: clamp(32px, 8.9vw, 38px);
    line-height: 1.08;
  }

  .studio-intro p,
  .work-copy p,
  .join-layout p {
    margin-top: 22px;
    font-size: 14px;
  }

  .join-layout p {
    margin-top: 0;
  }

  .studio-actions {
    margin-top: 28px;
  }

  .confidential-portfolio {
    margin-top: 42px;
    padding-top: 24px;
  }

  .confidential-portfolio .gallery-button {
    min-width: 100%;
  }

  .founders-grid {
    width: 100%;
    margin-top: 44px;
  }

  .founders-grid article {
    padding-top: 22px;
  }

  .experience-band {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 56px -26px 0;
    padding: 36px 26px 42px;
  }

  .experience-band-editorial {
    gap: 30px;
  }

  .experience-label p {
    max-width: 250px;
  }

  .experience-copy p {
    max-width: 100%;
  }

  .experience-band-editorial .experience-copy p:first-child {
    font-size: clamp(25px, 7vw, 31px);
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .expertise-grid article {
    padding-top: 20px;
  }

  .logo-carousel {
    margin: 0 -26px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  }

  .logo-set img {
    width: 150px;
    height: 62px;
    padding: 0 26px;
  }

  .experience-note {
    grid-column: 1;
    margin-top: 0;
  }

  .archive-slides {
    height: 480px;
  }

  .project-visual figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
    font-size: 9px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 54px 26px 46px;
  }

  .footer-brand p {
    margin-top: 26px;
    font-size: 14px;
  }

  .footer-bottom {
    padding: 0 26px 34px;
  }

  .site-footer h3 {
    margin-bottom: 22px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
  }

  .material-grid,
  .site-header,
  .hero-center {
    grid-template-columns: 18% 60% 22%;
  }

  .brand {
    font-size: 29px;
  }

  .hero-copy {
    width: min(68vw, 276px);
  }

  h1 {
    font-size: clamp(19px, 5vw, 20px);
  }

}
