.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--active-shell-background);
  color: var(--active-shell-foreground);
  padding: calc(clamp(2rem, 3vw, 3rem) + 1.5rem) var(--gutter) clamp(2.5rem, 6vw, 5rem);
  transition: background-color 320ms ease-in-out, color 320ms ease-in-out;
}

/* Experimental decorative motion layer. Remove this block and its matching
   .hero__motion markup to disable the enhancement. */
.hero__motion {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__motion-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 320ms ease-in-out, visibility 320ms ease-in-out;
}

.hero__motion-art--studio {
  right: auto;
  left: 50%;
  width: 100vw;
  color: rgba(129, 70, 40, 0.13);
  transform: translateX(-50%);
}

.hero__motion-art--studio path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  animation: hero-doodle-draw 3.4s cubic-bezier(0.5, 0, 0.25, 1) forwards;
  animation-play-state: paused;
}

.hero__ginkgo path {
  stroke-width: 0.9;
  animation-duration: 1.3s;
  animation-delay: 0s;
}

.hero__ginkgo-veins path {
  stroke-width: 0.6;
  animation-duration: 1s;
  animation-delay: 0.55s;
}

.hero__motion-art--studio .hero__ginkgo-stem {
  stroke-width: 0.75;
  animation-duration: 0.7s;
  animation-delay: 0.1s;
}

.hero__motion-art--lab circle {
  fill: #ffffff;
}

.hero__wave-dot {
  opacity: var(--dot-base-opacity, 0.04);
  animation: hero-dot-flicker var(--dot-duration, 2.6s) ease-in-out var(--dot-delay, 0s) infinite;
  animation-play-state: paused;
}

body:not([data-theme="lab"]) .hero__motion-art--studio,
body[data-theme="lab"] .hero__motion-art--lab {
  visibility: visible;
  opacity: 1;
}

body:not([data-theme="lab"]) .hero__motion-art--studio path,
body[data-theme="lab"] .hero__wave-dot {
  animation-play-state: running;
}

@keyframes hero-doodle-draw {
  from {
    opacity: 0.35;
    stroke-dashoffset: 1;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes hero-dot-flicker {
  0%,
  32%,
  100% {
    opacity: var(--dot-base-opacity, 0.04);
  }

  48% {
    opacity: var(--dot-peak-opacity, 0.13);
  }

  68% {
    opacity: calc(var(--dot-base-opacity, 0.04) * 0.7);
  }
}

.work-switcher {
  --hero-headline-visual-offset: 0rem;
  --folder-raised-width: 25%;
  --folder-raised-start: 75%;
  width: min(100%, var(--container));
  margin-inline: auto;
  z-index: 1;
}

.hero__topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--folder-raised-width);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: end;
}

.hero h1 {
  display: grid;
  max-width: 100%;
  margin-bottom: 1.5rem;
  font-size: calc(clamp(2.7rem, 5vw, 5.6rem) - 25px);
  font-weight: 600;
  letter-spacing: -0.075em;
  transform: translateY(var(--hero-headline-visual-offset));
}

.hero__headline-state {
  grid-area: 1 / 1;
  width: max-content;
  max-width: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 320ms ease-in-out, visibility 320ms ease-in-out;
}

.hero__headline-state.is-active {
  visibility: visible;
  opacity: 1;
}

.hero__headline-state > span {
  display: block;
  white-space: nowrap;
}

.work-switcher {
  position: relative;
}

.work-switcher__tabs {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  width: 100%;
  min-height: 6.5rem;
  margin-bottom: -1px;
}

.work-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
  min-width: 11.5rem;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.55rem 1.15rem;
  border: 0;
  border-radius: 0;
  background: var(--studio-primary);
  color: var(--studio-secondary);
  cursor: pointer;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 700;
  text-align: left;
  transition: translate 240ms ease, background-color 240ms ease, color 240ms ease;
}

.work-tab[data-switcher-tab="lab"] {
  z-index: 1;
  background: var(--lab-primary);
  color: var(--lab-secondary);
}

.work-tab.is-active {
  z-index: 2;
  order: 2;
  margin-top: -1px;
  border-top: 0;
  translate: 0;
}

.work-tab:not(.is-active) {
  border-radius: 1rem 1rem 0 0;
}

.work-tab__number {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.75;
}

.work-switcher__panels {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  border-radius: 1.5rem 0 1.5rem 1.5rem;
}

.work-panel {
  position: relative;
  grid-area: 1 / 1;
  display: block;
  height: clamp(34rem, 53vw, 44rem);
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 320ms ease-in-out;
}

.work-panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 20, 11, 0.9) 0%, rgba(39, 20, 11, 0.68) 34%, rgba(39, 20, 11, 0.12) 70%);
  content: "";
  pointer-events: none;
}

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

.work-panel.is-active {
  opacity: 1;
}

.work-panel--studio {
  color: var(--studio-secondary);
}

.work-panel--lab {
  color: var(--lab-secondary);
}

.work-panel--lab::after {
  background: linear-gradient(90deg, rgba(18, 18, 19, 0.92) 0%, rgba(18, 18, 19, 0.68) 36%, rgba(18, 18, 19, 0.1) 72%);
}

.work-panel__copy {
  position: absolute;
  z-index: 2;
  top: clamp(6.5rem, 11vw, 9rem);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(52%, 42rem);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.work-panel h2 {
  max-width: 18ch;
  margin-bottom: var(--space-6);
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.work-panel__artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
}

.work-panel__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 320ms ease-in-out, scale 700ms ease;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.works {
  --works-background: var(--studio-secondary);
  --works-foreground: var(--studio-primary);
  --works-card-line: rgba(181, 88, 40, 0.28);
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: var(--works-background);
  color: var(--works-foreground);
  transition: background-color 320ms ease-in-out, color 320ms ease-in-out;
}

body[data-theme="lab"] .works {
  --works-background: var(--lab-primary);
  --works-foreground: var(--lab-secondary);
  --works-card-line: rgba(255, 255, 255, 0.22);
}

.works__states {
  display: grid;
  width: min(100%, calc(var(--container) - (2 * var(--gutter))));
  margin-inline: auto;
}

.works__state {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  transition: opacity 320ms ease-in-out;
}

.works__state[hidden] {
  display: none;
}

.works__state.is-active {
  opacity: 1;
}

.works__heading {
  max-width: 62rem;
}

.works__heading h2 {
  max-width: 22ch;
  min-height: 2.12em;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.35vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.works__heading del {
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.09em;
  text-decoration-skip-ink: none;
}

.works__heading strong {
  font-weight: 800;
}

.works-carousel {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.works-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.works-carousel__control {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  place-items: center;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.works-carousel__control:hover:not(:disabled) {
  background: var(--works-foreground);
  color: var(--works-background);
}

.works-carousel__control:disabled {
  cursor: default;
  opacity: 0.32;
}

.works-carousel__track {
  display: grid;
  grid-auto-columns: calc((100% - (2 * var(--space-4))) / 2.72);
  grid-auto-flow: column;
  gap: var(--space-4);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: var(--space-6);
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  touch-action: pan-x pan-y;
}

.works-carousel__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.works-carousel__track.is-auto-scrolling {
  scroll-snap-type: none;
}

.works-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.portfolio-card {
  min-width: 0;
  scroll-snap-align: start;
}

.portfolio-card__media {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: flex-end;
  margin-bottom: var(--space-6);
  overflow: hidden;
  padding: var(--space-4);
  border: 1px solid var(--works-card-line);
  background-color: rgba(255, 255, 255, 0.16);
}

.portfolio-card__media::before,
.portfolio-card__media::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.portfolio-card__media::before {
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
  translate: 45% 35%;
}

.portfolio-card__media::after {
  inset: 14%;
  border: 1px solid currentColor;
  opacity: 0.2;
}

.portfolio-card__media--two::before {
  border-radius: 0;
  rotate: 18deg;
  translate: -35% -24%;
}

.portfolio-card__media--three::before {
  width: 48%;
  border-radius: 0;
  rotate: 45deg;
  translate: 65% 5%;
}

.portfolio-card__media--four::before {
  width: 86%;
  translate: -20% 55%;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__media span {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card__category {
  margin-bottom: var(--space-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: var(--space-2);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  text-align: center;
}

.portfolio-card__descriptor {
  margin-bottom: 0;
  font-size: 0.86rem;
  opacity: 0.72;
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.services__intro h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.service-list {
  --service-number-width: 2rem;
  --service-row-gap: clamp(1rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item {
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin: 0;
}

.service-trigger {
  display: grid;
  grid-template-columns: var(--service-number-width) minmax(0, 1fr) 1.5rem;
  gap: var(--service-row-gap);
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.service-trigger__number {
  color: var(--studio-primary);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-trigger__name {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-trigger__indicator {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  place-items: center;
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 240ms ease-in-out, opacity 180ms ease-in-out;
}

.service-item.is-open .service-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-panel__inner {
  min-height: 0;
  overflow: hidden;
}

.service-panel p {
  max-width: 43rem;
  margin-bottom: 0;
  padding: 0 2.5rem 1.35rem calc(var(--service-number-width) + var(--service-row-gap));
  color: var(--muted);
}

.consultation {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(32rem, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.consultation__intro h2 {
  max-width: 10ch;
  margin-bottom: var(--space-6);
  font-size: clamp(2.45rem, 4.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
}

.consultation__intro > p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.consultation-form {
  min-width: 0;
}

.consultation-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6) var(--space-4);
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field label {
  margin-bottom: var(--space-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.form-field label > span[aria-hidden="true"] {
  color: var(--studio-primary);
}

.form-field__optional {
  margin-left: var(--space-2);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(37, 28, 23, 0.32);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-field input,
.form-field select {
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  min-height: 7rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--studio-primary);
  background: rgba(255, 255, 255, 0.28);
  outline: 3px solid rgba(23, 92, 211, 0.28);
  outline-offset: 1px;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #a23428;
}

.form-field__error,
.form-field__note {
  min-height: 1.25rem;
  padding-top: 0.3rem;
  font-size: 0.72rem;
  line-height: 1.35;
}

.form-field__error {
  color: #8d271f;
}

.form-field__note {
  color: var(--muted);
}

.consultation-form__message {
  grid-column: 1 / -1;
}

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

.consultation-form__actions {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: var(--space-4) var(--space-6);
  align-items: center;
  margin-top: var(--space-6);
}

.consultation-form__submit {
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--studio-primary);
  border-radius: 999px;
  background: var(--studio-primary);
  color: var(--studio-secondary);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.consultation-form__submit:hover,
.consultation-form__submit:focus-visible {
  background: transparent;
  color: var(--studio-primary);
}

.consultation-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.consultation-form__helper {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.consultation-form__secondary {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  align-items: baseline;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.consultation-form__secondary p {
  margin: 0;
}

.consultation-form__secondary a {
  color: var(--studio-primary);
  font-weight: 700;
  text-underline-offset: 0.22em;
}

.consultation-form__secondary a:hover,
.consultation-form__secondary a:focus-visible {
  text-decoration-thickness: 2px;
}

.consultation-form__feedback {
  margin-top: var(--space-6);
  padding: var(--space-4);
  border-left: 3px solid var(--studio-primary);
  background: rgba(181, 88, 40, 0.08);
}

.consultation-form__feedback[hidden] {
  display: none;
}

.consultation-form__feedback strong {
  display: block;
  font-size: 1rem;
}

.consultation-form__feedback p {
  margin: var(--space-1) 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.consultation-form__mock-note {
  font-weight: 700;
}

.consultation-form[data-form-state="error"] .consultation-form__feedback {
  border-left-color: #a23428;
  background: rgba(162, 52, 40, 0.08);
}

@media (min-width: 64rem) {
  .works__heading {
    max-width: none;
  }

  .works__heading h2 {
    max-width: none;
    min-height: 1.06em;
    font-size: clamp(2.4rem, 3.75vw, 3.5rem);
    white-space: nowrap;
  }
}

@media (max-width: 63.99rem) {
  .work-switcher {
    --folder-raised-width: 30%;
    --folder-raised-start: 70%;
  }

  .hero__topline {
    grid-template-columns: minmax(0, 1fr) var(--folder-raised-width);
  }

  .work-panel {
    height: 36rem;
  }

  .work-panel__copy {
    width: min(62%, 36rem);
  }

  .services {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(20rem, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .works-carousel__track {
    grid-auto-columns: calc((100% - var(--space-4)) / 2.05);
  }

  .consultation {
    grid-template-columns: minmax(15rem, 0.68fr) minmax(27rem, 1.32fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

@media (max-width: 47.99rem) {
  .services {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .services__intro h2 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
  }

  .service-list {
    --service-number-width: 1.75rem;
    --service-row-gap: var(--space-4);
  }

  .service-trigger {
    min-height: 3.75rem;
    padding-block: 0.85rem;
  }

  .service-panel p {
    padding-right: 1.5rem;
    padding-bottom: 1.15rem;
  }

  .hero__motion-art--studio {
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero__motion-art--studio path,
  .hero__wave-dot {
    animation: none;
  }

  .hero__motion-art--studio path {
    stroke-dashoffset: 0;
  }

  .hero__ginkgo,
  .hero__motion-art--lab {
    display: none;
  }

  .work-switcher {
    --folder-raised-width: 100%;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__topline {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
  }

  .hero h1 {
    min-width: 0;
    margin-bottom: 0;
    font-size: calc(clamp(2.1rem, 9.5vw, 3.3rem) - 25px);
    transform: none;
  }

  .hero__headline-state {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero__headline-state > span {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .work-switcher__tabs {
    justify-self: end;
    width: 100%;
    min-height: 6.1rem;
    margin-bottom: -1px;
  }

  .work-tab {
    min-width: 10.5rem;
    min-height: 3rem;
    padding: 0.45rem 0.9rem;
  }

  .work-tab.is-active {
    translate: 0;
  }

  .work-tab__number {
    display: none;
  }

  .work-panel {
    height: 34rem;
  }

  .work-switcher__panels {
    clip-path: none;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .work-panel__copy {
    top: 5.25rem;
    width: 100%;
    padding-inline: 1.35rem;
  }

  .work-panel__artwork {
    width: 100%;
    margin: 0;
  }

  .work-panel::after,
  .work-panel--lab::after {
    background: linear-gradient(180deg, rgba(25, 17, 13, 0.88) 0%, rgba(25, 17, 13, 0.58) 58%, rgba(25, 17, 13, 0.18) 100%);
  }

  .work-panel h2 {
    max-width: 14ch;
  }

  .works__heading h2 {
    min-height: 3.18em;
  }

  .works-carousel__track {
    grid-auto-columns: 86%;
  }

  .consultation {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .consultation__intro h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .consultation-form__fields {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .consultation-form__message {
    grid-column: auto;
  }

  .consultation-form__actions {
    grid-template-columns: 1fr;
  }

  .consultation-form__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__motion-art--studio path,
  .hero__wave-dot {
    animation: none;
  }

  .hero__motion-art--studio path {
    stroke-dashoffset: 0;
  }

  .hero__wave-dot {
    opacity: 0.06;
  }
}
