:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #ffffff;
  --soft: #eeeeec;
  --muted: #606060;
  --line: #dfdfdc;
  --focus: #111111;
  --font-sans: "Roboto", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--font-sans);
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 70px);
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--white);
  pointer-events: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .72);
}

.plain-page .site-header {
  color: var(--black);
  text-shadow: none;
}

.menu-block {
  position: relative;
  pointer-events: auto;
}

.menu-block::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  width: min(390px, 88vw);
  height: 52px;
}

.text-button,
.text-link {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.text-link {
  font-weight: 400;
}

.menu-block > .text-button {
  text-transform: uppercase;
}

.cascade-menu {
  position: absolute;
  top: 26px;
  left: 0;
  z-index: 2;
  width: max-content;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-block:hover .cascade-menu,
.menu-block:focus-within .cascade-menu,
.menu-block.is-menu-open .cascade-menu,
.cascade-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cascade-menu a,
.submenu-trigger {
  display: block;
  width: max-content;
  max-width: min(340px, 80vw);
  margin: 0 0 7px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
}

.submenu {
  position: relative;
  width: max-content;
}

.submenu::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 100%;
  width: 42px;
  height: calc(100% + 24px);
}

.submenu-list {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 330px;
  padding-left: 28px;
  padding-right: 12px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  scrollbar-width: thin;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.submenu:hover .submenu-list,
.submenu:focus-within .submenu-list,
.submenu.is-submenu-open .submenu-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
}

.slides {
  height: 100%;
  display: flex;
  transform: translateX(calc(var(--active-slide, 0) * -100%));
  transition: transform 680ms cubic-bezier(.76, 0, .24, 1);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.slide img,
.project-hero img,
.project-media img,
.overview-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.16) brightness(.92);
}

.slide::after,
.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, .32), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, .34), transparent 38%);
  pointer-events: none;
}

.slide-caption {
  position: absolute;
  left: clamp(20px, 4vw, 54px);
  bottom: clamp(88px, 12vh, 136px);
  z-index: 2;
  max-width: min(560px, calc(100vw - 40px));
  color: var(--white);
}

.meta {
  display: block;
  margin-bottom: 16px;
  color: currentColor;
  font-size: 11px;
  font-weight: 500;
}

.slide-caption h1,
.project-title h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(52px, 8.2vw, 112px);
  line-height: .92;
  font-weight: 300;
}

.slide-caption p {
  max-width: 370px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.5;
}

.caption-link {
  display: inline-block;
  margin-top: 22px;
  text-decoration: none;
  font-size: 12px;
}

.hero-controls {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(28px, 6vh, 54px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.arrow-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.arrow-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.counter {
  min-width: 52px;
  font-size: 13px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.project-overview {
  min-height: 100vh;
  padding: clamp(88px, 13vh, 132px) clamp(20px, 5vw, 70px) clamp(62px, 9vh, 104px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.overview-panel > .meta {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.overview-index {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px clamp(18px, 3vw, 42px);
  margin: clamp(64px, 9vw, 120px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.overview-index-button {
  padding: 0 0 3px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
}

.overview-index-button.is-active {
  color: var(--black);
  border-color: currentColor;
}

.project-switcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
  margin-top: clamp(44px, 7vw, 86px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.project-switch-button {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.project-switch-button + .project-switch-button {
  justify-items: end;
  text-align: right;
}

.project-switch-button span {
  color: var(--muted);
  font-size: 12px;
}

.project-switch-button strong {
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.15;
  font-weight: 400;
}

.overview-panel[hidden] {
  display: none;
}

.overview-content {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.overview-content h2 {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: .98;
  font-weight: 300;
}

.overview-facts {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: grid;
  gap: 0;
  margin: 0;
  font-size: 12px;
}

.overview-facts div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.overview-facts dt {
  color: var(--muted);
}

.overview-facts dd {
  margin: 0;
}

.overview-copy p {
  max-width: 620px;
  margin: 0 0 1.05em;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.46;
  font-weight: 400;
}

.overview-gallery {
  grid-column: 2;
  display: grid;
  max-width: 900px;
  margin-top: clamp(18px, 3.5vw, 42px);
}

.overview-gallery figure {
  margin: 0;
}

.project-gallery {
  gap: 12px;
}

.project-gallery-frame {
  display: grid;
  background: var(--black);
}

.project-gallery-frame figure {
  grid-area: 1 / 1;
}

.project-gallery-frame figure[hidden] {
  display: none;
}

.overview-gallery img {
  aspect-ratio: 16 / 10;
  background: var(--black);
}

.project-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 28px;
}

.gallery-title {
  color: var(--muted);
  font-size: 12px;
}

.project-gallery-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.gallery-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gallery-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gallery-counter {
  min-width: 52px;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.project-hero {
  position: relative;
  height: 86vh;
  height: 86svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.project-title {
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  bottom: clamp(40px, 8vh, 86px);
  z-index: 2;
  max-width: min(780px, calc(100vw - 40px));
  color: var(--white);
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(220px, 32vw) minmax(0, 1fr);
  min-height: 80vh;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.project-facts {
  padding: clamp(40px, 7vw, 92px) clamp(22px, 5vw, 70px);
  border-right: 1px solid var(--line);
}

.project-facts dl {
  display: grid;
  gap: 12px;
  margin: 58px 0 0;
  font-size: 13px;
}

.project-facts div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-facts dt {
  color: var(--muted);
}

.project-facts dd {
  margin: 0;
}

.project-copy {
  padding: clamp(40px, 7vw, 92px) clamp(22px, 5vw, 76px);
}

.project-copy p {
  max-width: 660px;
  margin: 0 0 1.15em;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.42;
  font-weight: 400;
}

.project-copy .small {
  max-width: 520px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.project-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
  gap: 18px;
  margin-top: clamp(42px, 7vw, 96px);
}

.project-media figure {
  margin: 0;
}

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

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.drawing-block {
  margin-top: clamp(42px, 7vw, 96px);
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, .08) 1px, transparent 1px),
    #eeeeeb;
  background-size: 22px 22px;
  border: 1px solid var(--line);
}

.plan {
  width: 100%;
  min-height: 240px;
}

.plan line,
.plan rect,
.plan path,
.plan circle {
  vector-effect: non-scaling-stroke;
}

.project-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 70px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.project-next a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.05;
  font-weight: 300;
}

.project-next span {
  color: var(--muted);
  font-size: 12px;
}

.contact-layout {
  display: block;
  min-height: 100vh;
  padding: clamp(118px, 17vh, 170px) clamp(18px, 4vw, 54px) 70px;
  background: var(--paper);
}

.contact-intro {
  max-width: 380px;
  padding: 0;
}

.contact-intro p {
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  width: min(420px, 100%);
  padding: 42px 0 0;
}

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

.field {
  display: grid;
  gap: 9px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 36px;
  padding: 7px 0;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  font: inherit;
}

.select-field {
  position: relative;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 16px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  pointer-events: none;
  transform: rotate(45deg);
}

.select-field select {
  min-height: 34px;
  padding-right: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  appearance: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--muted);
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-top: 26px;
}

.cf-turnstile {
  min-height: 65px;
}

.submit-button {
  justify-self: start;
  min-width: 0;
  min-height: 0;
  padding: 0 0 3px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
}

.submit-button:disabled {
  color: var(--muted);
  cursor: wait;
}

.form-status {
  max-width: 320px;
  min-height: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status[data-state="success"] {
  color: var(--black);
}

.form-status[data-state="error"] {
  color: var(--black);
}

body.contact-overlay-open {
  overflow: hidden;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: clamp(112px, 17vh, 168px) clamp(18px, 4vw, 54px) 64px;
  overflow: auto;
  color: var(--black);
  background: rgba(255, 255, 255, .98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-overlay-panel {
  position: relative;
  width: min(420px, 100%);
}

.about-overlay-panel {
  width: min(500px, 100%);
}

.studio-overlay-panel {
  width: min(640px, 100%);
}

.about-profile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px clamp(18px, 3.5vw, 28px);
  align-items: start;
}

.about-profile .meta {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.profile-portrait {
  margin: 0;
  max-width: 96px;
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.about-profile p {
  max-width: 300px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.studio-profile {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 18px clamp(22px, 4vw, 36px);
  align-items: start;
}

.studio-profile > .meta {
  grid-column: 1 / -1;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-intro .meta {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.studio-image {
  margin: 0;
}

.studio-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.studio-copy {
  display: grid;
  gap: 10px;
}

.studio-copy p,
.contact-choice p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.studio-location-link {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.studio-location-link:hover,
.studio-location-link:focus-visible {
  border-bottom-color: currentColor;
}

.contact-options {
  display: grid;
  gap: 0;
  width: min(420px, 100%);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-choice {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.contact-choice-trigger {
  justify-self: stretch;
  min-height: 42px;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

.contact-choice-trigger:hover,
.contact-choice-trigger:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-choice p {
  margin: -2px 0 18px;
}

.contact-choice-trigger[aria-expanded="false"] + p {
  display: none;
}

.contact-choice .contact-form {
  padding: 0 0 22px;
}

.join-form textarea {
  min-height: 88px;
}

.contact-overlay .contact-form {
  padding-top: 0;
}

.overlay-close {
  position: fixed;
  top: 24px;
  right: clamp(18px, 4vw, 54px);
  padding: 0 0 3px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
}

.plain-page .site-footer {
  display: none;
}

.site-footer {
  display: block;
  padding: 26px clamp(20px, 5vw, 70px);
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
}

@media (max-width: 900px) {
  .overview-content {
    grid-template-columns: 1fr;
  }

  .overview-content h2 {
    grid-column: auto;
  }

  .profile-portrait {
    max-width: 96px;
  }

  .project-detail,
  .project-media {
    grid-template-columns: 1fr;
  }

  .project-facts {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

}

@media (max-width: 620px) {
  .site-header {
    pointer-events: auto;
  }

  .menu-block {
    display: grid;
    gap: 8px;
    max-width: calc(100vw - 44px);
  }

  .menu-block::after,
  .submenu::after {
    display: none;
  }

  .cascade-menu {
    position: static;
    display: grid;
    gap: 2px;
    width: auto;
    min-width: 0;
    max-width: calc(100vw - 44px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .submenu-list {
    display: none;
    position: static;
    width: min(330px, calc(100vw - 72px));
    min-width: 0;
    padding: 4px 0 0 16px;
    max-height: min(46vh, 390px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .submenu:hover .submenu-list,
  .submenu:focus-within .submenu-list,
  .submenu.is-submenu-open .submenu-list {
    display: block;
  }

  .cascade-menu a,
  .submenu-trigger {
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    margin: 0;
    padding: 4px 0;
    text-align: left;
  }

  .submenu-list a {
    display: block;
    min-height: 28px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 18px;
    gap: 18px;
  }

  .contact-overlay {
    padding: 92px 18px 42px;
  }

  .overlay-close {
    top: 18px;
  }

  .hero {
    min-height: 620px;
  }

  .slide-caption {
    right: 18px;
    bottom: 134px;
    left: 18px;
    max-width: none;
  }

  .slide-caption h1,
  .project-title h1 {
    font-size: clamp(40px, 14vw, 66px);
    line-height: .94;
  }

  .slide-caption p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 15px;
  }

  .hero-controls {
    left: 18px;
    right: auto;
    bottom: 28px;
    gap: 13px;
  }

  .arrow-button {
    width: 42px;
    height: 42px;
  }

  .project-overview {
    min-height: 0;
    padding: 80px 18px 64px;
  }

  .overview-index {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 48px;
    padding-top: 18px;
  }

  .overview-index-button {
    width: 100%;
    min-height: 30px;
    text-align: left;
  }

  .project-switcher {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
    padding-top: 18px;
  }

  .project-switch-button + .project-switch-button {
    justify-items: start;
    text-align: left;
  }

  .project-switch-button strong {
    font-size: 16px;
  }

  .overview-content {
    gap: 28px;
  }

  .overview-gallery {
    margin-top: 4px;
  }

  .project-gallery-controls {
    gap: 11px;
  }

  .overview-content h2 {
    font-size: clamp(40px, 14vw, 68px);
    line-height: .94;
  }

  .overview-facts div,
  .project-facts div {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
  }

  .overview-copy p,
  .project-copy p {
    font-size: clamp(16px, 4.5vw, 21px);
    line-height: 1.44;
  }

  .project-hero {
    min-height: 540px;
  }

  .project-title {
    right: 18px;
    bottom: 52px;
    left: 18px;
    max-width: none;
  }

  .project-facts,
  .project-copy {
    padding: 42px 18px;
  }

  .project-facts dl {
    margin-top: 38px;
  }

  .drawing-block {
    padding: 14px;
    overflow-x: auto;
  }

  .plan {
    min-width: 560px;
  }

  .contact-layout {
    padding: 174px 18px 56px;
  }

  .contact-form {
    padding-top: 34px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .about-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-profile .meta,
  .studio-profile > .meta {
    grid-column: auto;
  }

  .studio-profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-portrait {
    max-width: 92px;
  }

  .studio-image {
    max-width: 220px;
  }

  .about-profile p {
    font-size: 13px;
    line-height: 1.55;
  }

  .studio-copy p,
  .contact-choice p {
    font-size: 13px;
    line-height: 1.55;
  }

  .project-next {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

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

@media (max-width: 380px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .menu-block,
  .cascade-menu {
    max-width: calc(100vw - 28px);
  }

  .submenu-list {
    width: calc(100vw - 58px);
    padding-left: 14px;
  }

  .slide-caption h1,
  .project-title h1,
  .overview-content h2 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .hero-controls {
    gap: 10px;
  }
}
