:root {
  --light: #FCFCFC;
  --dark: #1A070B;
  --mid: #933A1F;
  --accent: #D78F87;
  --accent: var(--dark);
  --fg: var(--accent);
  --bg: var(--light);
  --fg-highlight: color-mix(in srgb, var(--fg) 100%, var(--dark) 50%);
}

@font-face {
  font-family: "Untitled Sans";
  src: url("/fonts/UntitledSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled Sans";
  src: url("/fonts/UntitledSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --fs-S: 11px;
  --fs-M: 14px;
  --fs-L: 0.95rem;
  --ff-sans: 'Untitled Sans', sans-serif;
  --ls-1-5: 0.05em;
}

h1, h2 {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: var(--ls-1-5);
  font-size: var(--fs-L);
  margin-block-end: var(--gap);
  filter: var(--blur);
}

p {
  font-size: var(--fs-S);
  line-height: 1.6;
  letter-spacing: var(--ls-1-5);
}
p a {
  color: inherit;
}

.description {
  margin-block: var(--gap);
}

:root {
  --gap: 2.6vw;
  --margin: 6vmin;
}

:root {
  --br-S: 4px;
  --br-M: 8px;
  --blur: blur(0px);
}
@media (max-aspect-ratio: 1/1) {
  :root {
    --br-S: 2px;
  }
}

.img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--br-S);
  overflow: hidden;
}

.img-wrapper:has(img[data-sanity-image]) img[data-sanity-image] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.img-wrapper:has(img[data-sanity-image]) img[data-sanity-image] {
  opacity: 0;
  filter: blur(6px);
}
.img-wrapper:has(img[data-sanity-image]).is-image-loaded img[data-sanity-image] {
  animation: image-reveal 600ms ease-out var(--image-reveal-delay, 100ms) forwards;
}

@keyframes image-reveal {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .img-wrapper:has(img[data-sanity-image]).is-image-loaded img[data-sanity-image] {
    animation-duration: 1ms;
  }
}
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
  max-height: calc(100vh - var(--margin) * 2);
  border-radius: var(--br-S);
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: var(--br-S);
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  min-height: -webkit-fill-available;
  overflow: hidden;
}

body {
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--ff-sans);
}

.smooth-type, body {
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

main {
  --gap: 2.4vw;
  --content-height: min(75vh, calc(100svh - var(--gap) * 2));
  --remaining-height: calc((100% - var(--content-height)) / 2);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: var(--remaining-height) var(--content-height) var(--remaining-height);
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  padding: var(--gap);
  height: 100vh;
  height: 100svh;
}
main > :not(nav):not(.page-footer):not(.page-utility) {
  grid-row: 2;
  min-height: 0;
  height: var(--content-height);
  overflow-y: auto;
  scrollbar-width: none;
}
main .page-footer,
main .page-utility {
  grid-column: 1/-1;
  grid-row: 3;
  align-self: end;
  justify-content: center;
}
@media (max-aspect-ratio: 1/1) {
  main {
    padding: calc(var(--gap) * 1.5);
  }
}
@media (max-aspect-ratio: 5/8) {
  main {
    padding: calc(var(--gap) * 3);
  }
}

@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s; /* default is ~0.25s */
  animation-timing-function: ease-in-out;
}

/* Old page fades out */
::view-transition-old(root) {
  animation-name: fade-out;
  animation-duration: 0.4s;
}

/* New page fades in, starting after the old one finishes */
::view-transition-new(root) {
  animation-name: fade-in;
  animation-duration: 0.4s;
  animation-delay: 0.4s; /* waits until fade-out completes */
}

/* Define the keyframes */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.arrow {
  color: var(--fg);
  width: 10px;
  height: auto;
}
.arrow-divider {
  margin-block: calc(var(--gap) * 2);
}

nav {
  grid-column: 1/-1;
  grid-row: 1;
  z-index: 10;
}
nav ul {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  list-style: none;
  gap: calc(var(--margin) * 0.45);
  justify-content: space-between;
}
nav ul li a {
  transition: color 0.3s ease;
}
nav ul li a:hover,
nav ul li a:focus-visible,
nav ul li a.active {
  color: var(--fg-highlight);
}
nav ul li:has(.nav-video) {
  justify-self: end;
}
nav.mobile-nav {
  display: none;
}
@media (max-aspect-ratio: 1/1) {
  nav.desktop-nav {
    display: none;
  }
  nav.mobile-nav {
    display: block;
  }
}

.mobile-nav-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.mobile-nav-toggle {
  width: 2.5em;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: var(--fs-L);
}
.mobile-nav-toggle-icon {
  display: flex;
  width: 2.5em;
  height: auto;
  transform: translateX(0.75em) rotate(90deg);
  transition: transform 250ms ease, color 0.3s ease;
  filter: var(--blur);
}
.mobile-nav-toggle-icon .slider-arrow {
  width: 100%;
  height: auto;
  color: currentColor;
}
.mobile-nav.is-open .mobile-nav-toggle-icon {
  transform: translateX(0.75em) rotate(-90deg);
}
.mobile-nav.is-open .mobile-nav-toggle {
  align-items: baseline;
}
.mobile-nav.is-navigating {
  pointer-events: none;
}
.mobile-nav.is-navigating .mobile-nav-menu {
  animation: none;
  opacity: 1;
}
.mobile-nav-menu {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: calc(var(--gap) * 3);
  background: var(--bg);
}
.mobile-nav-menu[hidden] {
  display: none;
}
.mobile-nav-menu.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.mobile-nav-menu.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.mobile-nav-menu .mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(var(--gap) * 2);
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-nav-accordion {
  width: 100%;
  text-align: left;
}
.mobile-nav-item {
  width: 100%;
  text-align: left;
}
.mobile-nav-link.nav-link, .mobile-nav-accordion-toggle.nav-link {
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease, opacity 300ms ease;
}
.mobile-nav-accordion-panel > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  min-height: 0;
  margin: 0;
  padding: 0 0 0 0.5em;
  overflow: hidden;
  list-style: none;
}
.mobile-nav-accordion.is-open .mobile-nav-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.75em;
}
.mobile-nav-sub-link {
  display: block;
  color: var(--fg);
  font-family: var(--ff-sans);
  font-size: var(--fs-L);
  font-weight: 500;
  letter-spacing: var(--ls-1-5);
  text-decoration: none;
  text-transform: uppercase;
  filter: var(--blur);
}
.mobile-nav-sub-link.active::before {
  content: "- ";
}

.page-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
  filter: var(--blur);
}
.page-footer a {
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: var(--ls-1-5);
  font-size: var(--fs-L);
  color: var(--fg);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.page-footer a:hover, .page-footer a:focus-visible {
  color: var(--fg-highlight);
}
@media (max-aspect-ratio: 1/1) {
  .page-footer {
    display: none;
  }
}

.nav-link {
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: var(--ls-1-5);
  font-size: var(--fs-L);
  color: var(--fg);
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  filter: var(--blur);
}
.nav-about {
  view-transition-name: nav-about;
}
.nav-photography {
  view-transition-name: nav-photography;
}
.nav-video {
  view-transition-name: nav-video;
}
.nav-home {
  view-transition-name: nav-home;
}

.about .img-wrapper {
  grid-column: 2/5;
}
@media (max-aspect-ratio: 5/8) {
  .about .img-wrapper {
    grid-column: 2/-1;
    aspect-ratio: 3/4;
  }
}
.about-text {
  grid-column: 6/8;
  align-self: center;
}
@media (max-aspect-ratio: 5/8) {
  .about-text {
    grid-column: 2/-1;
  }
}

.home-about {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.home-about-copy {
  grid-column: 1/5;
  width: 75%;
  align-self: center;
  justify-self: center;
  text-transform: uppercase;
}
.home-about-copy * + * {
  margin-block-start: 1em;
}
.home-about .img-wrapper {
  grid-column: 5/-1;
  max-height: 100%;
  border-radius: 4px;
}
.home-about img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
@media (max-aspect-ratio: 1/1) {
  .home-about {
    grid-template-columns: 1fr;
    gap: calc(var(--gap) * 3);
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .home-about .img-wrapper, .home-about-copy {
    grid-column: 1/-1;
  }
  .home-about .img-wrapper {
    order: 1;
    max-height: none;
    width: 100%;
    margin-block-start: 20vh;
  }
  .home-about-copy {
    order: 2;
    width: 100%;
    justify-self: stretch;
  }
  .home-about img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

@media (max-aspect-ratio: 1/1) {
  body.home {
    overflow-y: auto;
  }
  body.home main {
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
  }
  body.home main > :not(nav):not(.page-footer):not(.page-utility) {
    grid-row: 2;
    height: auto;
    overflow: visible;
  }
}

.photography-card {
  color: var(--fg);
  text-decoration: none;
  align-content: center;
  height: -moz-max-content;
  height: max-content;
}
.photography-card .img-wrapper {
  aspect-ratio: 4/3;
}
.photography-card img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.photography-card-info {
  margin-top: 1em;
  justify-self: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
.photography-card-info h2, .photography-card-info p {
  margin: 0;
}
.photography-detail-content {
  grid-column: 3/11;
}
.photography-detail-content .img-wrapper {
  margin-top: var(--gap);
  max-height: 80vh;
}
.photography-detail-content .img-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.photography-back {
  color: var(--fg);
  display: inline-block;
  margin-bottom: var(--gap);
}
.photography-print-note {
  font-size: var(--fs-S);
}

.collections-slider {
  grid-column: 1/-1;
  height: 100%;
  touch-action: pan-y;
}
.collections-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  height: 100%;
  align-items: center;
}
.collections-page.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.collections-page.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.collections-page .photography-card.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.collections-page .photography-card.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.collections-page .photography-card .img-wrapper {
  height: auto;
  aspect-ratio: 5/4;
  display: grid;
  align-items: center;
}
.collections-page .photography-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
}
.collections-page .photography-card[hidden] {
  display: none;
}
.collections-page[hidden] {
  display: none;
}
@media (max-aspect-ratio: 1/1) {
  .collections-page {
    grid-template-columns: 1fr;
  }
}
.collections-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
}
.collections-footer .collection-control-next {
  grid-column: 2;
}

.collection {
  grid-column: 1/-1;
  height: 100%;
}
.collection-gallery {
  touch-action: pan-y;
}
.collection-gallery:focus {
  outline: 2px solid var(--fg);
  outline-offset: 4px;
}
.collection-gallery, .collection-slides, .collection-slide {
  height: 100%;
}
.collection-slide[hidden] {
  display: none;
}
@media (max-aspect-ratio: 1/1) {
  .collection-slide {
    display: flex;
    align-items: center;
  }
}
.collection-slide .img-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media (max-aspect-ratio: 1/1) {
  .collection-slide .img-wrapper {
    height: auto;
    width: 100%;
  }
}
.collection-slide img {
  height: 100%;
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-aspect-ratio: 1/1) {
  .collection-slide img {
    width: 100%;
    height: auto;
  }
}
.collection-slide.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.collection-slide.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.collection-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--gap);
}
.collection-footer h1 {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  font-size: var(--fs-L);
  text-align: center;
  grid-column: 2;
}
.collection-footer h1:only-child {
  grid-column: 1/-1;
}
.collection-footer .collection-control-previous {
  grid-column: 1;
}
.collection-footer .collection-control-next {
  grid-column: 3;
}
.collection-control {
  display: flex;
  align-items: center;
  gap: var(--gap);
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: var(--fs-L);
  letter-spacing: var(--ls-1-5);
  filter: var(--blur);
}
@media (max-aspect-ratio: 1/1) {
  .collection-control {
    gap: calc(var(--gap) * 3);
  }
}
.collection-control:hover, .collection-control:focus-visible {
  color: var(--fg-highlight);
}
.collection-control:disabled {
  cursor: default;
  color: var(--fg);
}
.collection-control[hidden] {
  display: none;
}
.collection-control-previous {
  justify-self: start;
}
.collection-control-next {
  justify-self: end;
}
.collection-control-icon {
  display: flex;
  width: 2.5em;
}
.collection-control-icon .slider-arrow {
  width: 100%;
  height: auto;
  color: currentColor;
}

@keyframes collection-slide-out {
  to {
    opacity: 0;
  }
}
@keyframes collection-slide-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.video-slider {
  grid-column: 1/-1;
  height: 100%;
  touch-action: pan-y;
}
.video-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  height: 100%;
  align-items: center;
}
.video-page.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.video-page.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.video-page[hidden] {
  display: none;
}
.video-page .video-card.is-leaving {
  animation: collection-slide-out 250ms ease-in forwards;
}
.video-page .video-card.is-entering {
  animation: collection-slide-in 600ms ease-out forwards;
}
.video-page .video-card[hidden] {
  display: none;
}
@media (max-aspect-ratio: 1/1) {
  .video-page {
    grid-template-columns: 1fr;
  }
}
.video-card {
  align-content: center;
  color: var(--fg);
  height: -moz-max-content;
  height: max-content;
  text-decoration: none;
}
.video-card .img-wrapper {
  height: auto;
  aspect-ratio: 5/4;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.video-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
}
.video-file-player {
  position: relative;
}
.video-info {
  margin-top: var(--gap);
  justify-self: center;
  color: var(--fg);
  width: 100%;
  display: flex;
  justify-content: center;
}
.video-info h2,
.video-info p {
  margin: 0;
}
.video-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
}
.video-footer .collection-control-next {
  grid-column: 2;
}
.video-single-footer {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: var(--fs-L);
  letter-spacing: var(--ls-1-5);
  text-transform: uppercase;
}
.video-single-footer span:last-child {
  grid-column: 3;
  justify-self: end;
  text-align: right;
}
.video-single-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
}
.video-single-grid .img-wrapper {
  grid-column: 1/-1;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}
.video-single-grid .img-wrapper video,
.video-single-grid .img-wrapper iframe,
.video-single-grid .img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  max-height: 70vh;
}
.video-single-grid .img-wrapper .video-file-player {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
}
.video-single-grid .img-wrapper .video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.video-single-grid .img-wrapper .video-file-player.is-playing .video-poster {
  opacity: 0;
}
.video-single-grid .img-wrapper .yt-iframe {
  width: 100%;
  height: 100%;
}
.video-single-grid .img-wrapper .youtube-player {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.video-single-grid .img-wrapper .youtube-player .play-button {
  --play-size: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: var(--play-size);
  height: var(--play-size);
  border: none;
  border-radius: 50%;
  background: var(--fg);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41 62"><path fill="black" d="M20.7 62L41 0H0L20.7 62Z"/></svg>') center/50% no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41 62"><path fill="black" d="M20.7 62L41 0H0L20.7 62Z"/></svg>') center/50% no-repeat;
}
.video-single-grid .img-wrapper .youtube-player .play-button:hover {
  --play-size: 90px;
}

.contact-content {
  grid-column: 3/11;
  display: grid;
  gap: var(--gap);
  align-items: center;
}
@media (max-aspect-ratio: 1/1) {
  .contact-content {
    grid-column: 1/-1;
    height: auto;
    overflow: visible;
  }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.contact-details a {
  color: var(--fg);
  font-family: var(--ff-sans);
  font-size: var(--fs-S);
  font-weight: 500;
  letter-spacing: var(--ls-1-5);
  text-decoration: none;
  text-transform: uppercase;
  filter: var(--blur);
}
.contact-form {
  display: grid;
  gap: 1em;
}
.contact-form label {
  display: grid;
  gap: 1em;
  color: var(--fg);
  font-family: var(--ff-sans);
  font-size: var(--fs-S);
  font-weight: 500;
  letter-spacing: var(--ls-1-5);
  text-transform: uppercase;
  filter: var(--blur);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  border-radius: 0;
  font: inherit;
  letter-spacing: inherit;
  outline: 0;
  resize: vertical;
  padding-block-end: 1em;
}
.contact-form textarea {
  border-bottom: 1px solid currentColor;
}
.contact-form button {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: var(--fs-L);
  font-weight: 600;
  letter-spacing: var(--ls-1-5);
  text-transform: uppercase;
  filter: var(--blur);
}
.contact-submit-icon {
  display: flex;
  width: 2.5em;
}
.contact-submit-icon .slider-arrow {
  width: 100%;
  height: auto;
  color: currentColor;
}
.contact-field-hidden {
  display: none;
}

@media (max-aspect-ratio: 1/1) {
  body.contact {
    overflow-y: auto;
  }
  body.contact main {
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
  }
  body.contact main > :not(nav):not(.page-footer):not(.page-utility) {
    height: auto;
    overflow: visible;
  }
}/*# sourceMappingURL=styles.css.map */