:root {
  --bg: #fafafa;
  --surface: rgba(255, 255, 255, 0.7);
  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.68);
  --hairline: rgba(11, 11, 11, 0.14);
  --hairline-strong: rgba(11, 11, 11, 0.2);
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  --container: min(1440px, calc(100vw - 8vw));
  --copy: min(820px, calc(100vw - 10vw));
  --header-height: clamp(5.9rem, 8vw, 6.6rem);
  --type-label-size: 0.82rem;
  --type-label-track: 0.045em;
  --type-page-size: clamp(2.2rem, 4vw, 3.7rem);
  --type-section-size: clamp(1.95rem, 3.4vw, 2.85rem);
  --type-detail-size: clamp(1.8rem, 3vw, 2.45rem);
  --type-card-size: clamp(1rem, 2vw, 1.25rem);
  --type-copy-size: 1rem;
  --type-copy-line: 1.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

figure {
  margin: 0;
}

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  min-height: 100svh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 3.25vw;
  transition: background-color 90ms ease, border-color 90ms ease, backdrop-filter 90ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  pointer-events: none;
  transition: inherit;
}

.site-header.is-scrolled::before,
.site-header.menu-active::before {
  background: #fff;
  border-color: var(--hairline);
}

.site-header__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.desktop-only {
  display: flex;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav--left {
  justify-content: center;
  justify-self: center;
}

.site-nav--right {
  justify-content: flex-end;
  gap: 1.45rem;
}

.site-nav__link,
.mobile-menu__link,
.pagination-meta,
.button,
.site-social__label,
.form-field label,
.detail-kicker,
.media-row__meta {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--type-label-size);
  font-weight: 700;
  letter-spacing: var(--type-label-track);
  text-transform: uppercase;
}

.site-nav__link,
.mobile-menu__link {
  position: relative;
  color: #000;
}

.site-nav__link::after,
.mobile-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1.5px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 80ms ease, transform 80ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.mobile-menu__link:hover::after,
.mobile-menu__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
}

.site-logo img {
  width: clamp(14.75rem, 22vw, 19.5rem);
  max-width: 100%;
  height: auto;
}

.site-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.1rem;
  color: #000;
  opacity: 1;
  transition: color 80ms ease, opacity 80ms ease;
}

.site-social:hover,
.site-social:focus-visible {
  color: #000;
  opacity: 0.58;
}

.site-social svg {
  width: 2.35rem;
  height: 2.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.45rem;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 0 currentColor;
  transition: background-color 80ms ease, border-color 80ms ease, color 80ms ease, box-shadow 80ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  border-color: #000;
  color: #000;
  box-shadow: inset 0 0 0 1px currentColor;
}

.button--compact {
  min-height: 2.95rem;
  padding: 0 1.55rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.menu-toggle__bars {
  display: grid;
  gap: 0.35rem;
  width: 1.4rem;
  margin: 0 auto;
}

.menu-toggle__bars span {
  display: block;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 80ms ease, opacity 80ms ease;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(20px);
  padding: 7rem 7vw 3rem;
  z-index: 45;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100%;
}

.mobile-menu__links {
  display: grid;
  gap: 1.25rem;
}

.mobile-menu__link {
  width: fit-content;
  font-size: 1.05rem;
}

.mobile-menu__footer {
  display: grid;
  gap: 1.1rem;
}

.mobile-menu__socials {
  display: flex;
  gap: 0.65rem;
}

.home-main {
  min-height: calc(100svh - var(--header-height));
  padding: 0;
}

.home-section {
  height: calc(100svh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}

.home-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.home-gallery__viewport {
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;
  height: 100%;
  outline: none;
}

.home-gallery__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: 100%;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  margin: 0;
}

.home-slide__frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-slide__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-gallery__controls {
  display: none;
}

.home-links {
  display: none;
}

.page-grid {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 4.25rem;
}

.media-list {
  display: grid;
  gap: 0;
}

.media-row {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.2rem, 2vw, 1.75rem) 0;
}

.media-row + .media-row {
  border-top: 1px solid var(--hairline);
}

.media-row__trigger,
.media-row__poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.media-row__trigger {
  cursor: pointer;
}

.media-row__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(11, 11, 11, 0.05);
}

.media-row__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 110ms ease, opacity 110ms ease;
}

.media-row__trigger:hover .media-row__frame img,
.media-row__trigger:focus-visible .media-row__frame img {
  transform: scale(1.015);
  opacity: 0.96;
}

.media-row__trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 11, 11, 0.06), rgba(11, 11, 11, 0.18)),
    linear-gradient(to right, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.08));
  pointer-events: none;
}

.media-row__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #000;
  box-shadow: 0 0 0 transparent;
  pointer-events: none;
}

.media-row__play svg {
  width: 1.24rem;
  height: 1.24rem;
  margin-left: 0.12rem;
}

.media-row__copy {
  display: grid;
  gap: 0.3rem;
  align-content: center;
  justify-items: start;
}

.media-row__meta {
  color: rgba(11, 11, 11, 0.72);
}

.media-row__title {
  margin: 0;
  font-size: var(--type-section-size);
  line-height: 1;
  text-transform: uppercase;
}

.media-row__notes {
  display: grid;
  gap: 0.32rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

.media-row__notes p {
  margin: 0;
}

.media-row__notes a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.media-row--disabled .media-row__frame img {
  opacity: 0.9;
}

.media-row--disabled .media-row__copy {
  opacity: 0.78;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.85rem);
}

.portfolio-card {
  display: block;
}

.portfolio-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(11, 11, 11, 0.05);
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 110ms ease, opacity 110ms ease;
}

.portfolio-card:hover .portfolio-card__media img {
  transform: scale(1.015);
  opacity: 0.96;
}

.detail-main {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.detail-shell {
  width: min(1400px, calc(100vw - 8vw));
  margin: 0 auto;
}

.detail-media {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.video-shell {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.video-shell--youtube {
  aspect-ratio: 16 / 9;
}

.video-shell--native {
  aspect-ratio: 16 / 9;
}

.video-shell--image {
  aspect-ratio: 16 / 9;
  background: transparent;
}

.video-shell--native video,
.video-shell iframe,
.video-shell__poster,
.video-shell__still {
  display: block;
  width: 100%;
  height: 100%;
}

.video-shell__still {
  background: transparent;
}

.video-shell__still img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-shell__poster {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-shell__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shell--native video {
  object-fit: cover;
}

.video-shell iframe {
  display: block;
  border: 0;
}

.video-shell__poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.22)),
    linear-gradient(to right, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.08));
}

.video-shell__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #000;
}

.video-shell__play svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.14rem;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.86);
}

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

.video-lightbox__close {
  position: absolute;
  top: clamp(1rem, 2.4vw, 1.5rem);
  right: clamp(1rem, 2.4vw, 1.5rem);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.12);
  color: #fff;
  cursor: pointer;
}

.video-lightbox__dialog {
  position: relative;
  width: min(1200px, calc(100vw - 4rem));
}

.video-lightbox__dialog--image {
  width: min(1400px, calc(100vw - 4rem));
}

.video-lightbox__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox__frame--image {
  aspect-ratio: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: min(84vh, calc(100svh - 4rem));
  width: auto;
  height: auto;
  object-fit: contain;
}

.detail-copy {
  width: var(--copy);
  margin: 0 auto;
  text-align: center;
}

.detail-copy h1 {
  margin: 0;
  font-size: var(--type-detail-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detail-kicker {
  margin: 0.95rem 0 0;
  color: rgba(11, 11, 11, 0.72);
}

.detail-line {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

.detail-line a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.detail-empty {
  min-height: 28vh;
}

.team-main {
  width: var(--container);
  margin: 0 auto;
  min-height: auto;
  padding: clamp(1.35rem, 2.6vw, 2rem) 0 clamp(1rem, 2vw, 1.45rem);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.team-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: start;
}

.team-copy h1 {
  margin: 0 0 1rem;
  font-size: var(--type-page-size);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-copy p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

.team-copy__cta {
  margin-top: 0.1rem;
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(11, 11, 11, 0.04);
  border: 1px solid var(--hairline);
  width: min(100%, 42rem);
  justify-self: end;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-main {
  width: min(960px, calc(100vw - 8vw));
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.6rem) 0 clamp(2rem, 4vw, 3rem);
}

.contact-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  justify-items: center;
  align-items: start;
  text-align: center;
}

.contact-copy {
  width: min(100%, 40rem);
}

.contact-copy h1 {
  margin: 0 0 1rem;
  font-size: var(--type-page-size);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 44rem);
  padding: clamp(1.25rem, 2.3vw, 1.6rem);
  border: 1px solid var(--hairline-strong);
  background: #fff;
  text-align: left;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

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

.form-field label {
  color: #000;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #000;
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 80ms ease, box-shadow 80ms ease;
  appearance: none;
}

.form-field textarea {
  min-height: 12rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #000;
  box-shadow: inset 0 0 0 1px #000;
}

.budget-field {
  gap: 0.65rem;
}

.budget-range {
  height: 1.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.budget-range:focus {
  box-shadow: none;
}

.budget-range::-webkit-slider-runnable-track {
  height: 2px;
  background: #000;
  border-radius: 999px;
}

.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: calc((2px - 0.9rem) / 2);
  border: 0;
  border-radius: 999px;
  background: #000;
}

.budget-range::-moz-range-track {
  height: 2px;
  background: #000;
  border: 0;
  border-radius: 999px;
}

.budget-range::-moz-range-thumb {
  width: 0.9rem;
  height: 0.9rem;
  border: 0;
  border-radius: 999px;
  background: #000;
}

.budget-scale {
  position: relative;
  height: 0.95rem;
  color: var(--muted);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.budget-scale span {
  position: absolute;
  top: 0;
  white-space: nowrap;
}

.budget-scale span:nth-child(1) {
  left: 0;
}

.budget-scale span:nth-child(2) {
  left: 33.333%;
  transform: translateX(-50%);
}

.budget-scale span:nth-child(3) {
  left: 66.666%;
  transform: translateX(-50%);
}

.budget-scale span:nth-child(4) {
  right: 0;
}

.contact-feedback {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

.contact-feedback.is-visible {
  display: block;
}

.item-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 4.6rem);
  border-top: 1px solid var(--hairline-strong);
}

.item-pagination:empty {
  display: none;
}

.item-pagination__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  min-height: 7.5rem;
  padding: 1.4rem 5vw 1.5rem;
  border-right: 1px solid var(--hairline);
}

.item-pagination__link:last-child {
  border-right: 0;
}

.item-pagination__link--solo {
  grid-column: 1 / -1;
}

.item-pagination__link--next {
  text-align: right;
}

.item-pagination__eyebrow {
  margin-bottom: 0.35rem;
}

.pagination-meta {
  font-weight: 700;
  color: var(--muted);
}

.item-pagination__title {
  font-size: var(--type-card-size);
  line-height: 1.2;
  text-transform: uppercase;
}

.item-pagination__icon {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
}

.not-found {
  width: min(720px, calc(100vw - 10vw));
  margin: 0 auto;
  padding: 10rem 0 4rem;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 0.85rem;
  font-size: var(--type-page-size);
  font-weight: 700;
  text-transform: uppercase;
}

.not-found p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: var(--type-copy-size);
  font-weight: 500;
  line-height: var(--type-copy-line);
}

@media (max-width: 960px) {
  .desktop-only {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
  }

  .site-logo {
    min-width: unset;
  }

  .home-gallery__controls {
    inset-inline: -0.4rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .team-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .team-copy {
    justify-items: start;
  }

  .item-pagination {
    grid-template-columns: 1fr;
  }

  .item-pagination__link {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .item-pagination__link:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .site-logo img {
    width: min(16rem, 62vw);
  }

  .home-main {
    padding-top: 0;
  }

  .home-section {
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .page-grid,
  .detail-main,
  .team-main,
  .contact-main {
    padding-top: 1.4rem;
  }

  .detail-shell,
  .page-grid,
  .detail-copy,
  .not-found,
  .team-main,
  .contact-main {
    width: calc(100vw - 2rem);
  }

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

  .budget-scale {
    height: 1.95rem;
  }

  .video-lightbox__dialog {
    width: calc(100vw - 2rem);
  }

  .button {
    width: 100%;
  }

  .home-links {
    flex-direction: column;
    padding-inline: 1rem;
  }
}
