* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: inherit;
    text-transform: inherit;
    color: inherit;
}
a, button {
	-webkit-tap-highlight-color: rgb(0 0 0/0);
}

h1, h2, h3, h4, h5, h6 {
    font: inherit;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body, input, textarea, select, button {
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
    outline: none;
    border: none;
    all: unset;
    width: auto;
}

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

ul {
    list-style: none;
}

.visuallyhidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}
@media (min-width: 735px) {
	.show-on-small {
		display: none;
	}
}

button {
    background: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
    overflow: visible;
    vertical-align: inherit;
}

@font-face {
    font-family: MAY32;
    src: url('/fonts/MAY32-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: MAY32 Heavy;
    src: url('/fonts/MAY32-Heavy.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

:root {
    font-family: MAY32 Heavy, -apple-system, BlinkMacSystemFont, Arial Black, sans-serif;
    --font-family-base-text: MAY32, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --typography-small: 15px;
    --typography-base: 18px;
    --typography-medium: 20px;
    --typography-large: 28px;
    --typography-x-large: clamp(50px, 20vw, 20vw);
    --padding-block: 20px;
    text-transform: uppercase;
    --section-width: min(97vw, 2560px);
    --timing-function: cubic-bezier(1, 0, 0, 1);
    font-size: var(--typography-base);
    line-height: 1;
    background: #fff;
    font-weight: 1000;
    font-stretch: 30%;
}

@media (max-width: 1068px) {
    :root {
    }
}

@media (max-width: 734px) {
    :root {
    }
}

.theme-dark {
    background: #000;
    color: #fff;
}

.typography-x-large {
    font-size: var(--typography-x-large);
}

.section-content {
    width: var(--section-width);
    margin-inline: auto;
}

.font-base {
    font-family: var(--font-family-base-text);
    font-weight: 450;
    font-stretch: 110%;
}

.nav-container {
    position: fixed;
    width: 100vw;
    z-index: 99;
    top: 0;
    padding-top: var(--padding-block);
    font-size: var(--typography-large);
}

@supports (mix-blend-mode: difference) {
    .nav-container {
        mix-blend-mode: difference;
    }

    :root:not(.theme-dark) .nav-container {
        color: #fff;
    }
}

.nav-header {
    width: var(--section-width);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
}

.menu-toggle {
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 2;
}

.menu-toggle[aria-expanded="true"] span {
    display: none;
}

.menu-toggle[aria-expanded="true"]::after {
    content: attr(data-text);
}

.nav-menu {
    width: var(--section-width);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    opacity: 1;
}

.nav-menu[hidden] {
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.nav-menu > * {
    margin-top: calc(var(--padding-block) * 0.5);
}
.nav-menu .nav-link.current {
	pointer-events: none;
}

.curtain {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

html[class*='preview'] .curtain {
    opacity: 1;
    transition: opacity .4s;
}

.preview {
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: translateY(100%);
    will-change: transform;
}

.preview.theme-dark {
    background: #000;
    color: #f5f5f7;
}

.preview-home #preview-home,
.preview-snaps #preview-snaps,
.preview-book #preview-book,
.preview-contact #preview-contact {
    transform: translateY(0%);
    transition: transform .9s cubic-bezier(.75, 0, .25, 1);
}

.preview * {
    font-size: var(--typography-x-large);
    padding-top: calc(var(--typography-large) + var(--padding-block));
    width: var(--section-width);
    margin-inline: auto;
}

.headline-container {
    padding-top: calc(var(--typography-large) + var(--padding-block));
}