/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1, h2, h3, h4,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

html {
  scrollbar-gutter: auto;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}

[hidden] {
  display: none;
}

/* Theme */
/* Root */
:root {
  font-size: 16px;
  line-height: 1.3;
  /* Palette */
  --cream: #f5f0e8;
  --cream-dark: #ede8df;
  --warm-white: #faf8f5;
  --black: #1a1a18;
  --charcoal: #2c2c2a;
  --graphite: #666660;
  --stone: #b0ada6;
  --border: #dbd8d0;
  --white: #ffffff;
  --forest: #3b4a3a;
  --background: #f6f3ea;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Base typography */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
}

p, a {
  font-size: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Body */
body {
  width: 100%;
  height: 100%;
  color: var(--black);
  font-family: "Geist", "Helvetica Neue", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--background);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
}
.overlay.is-active {
  display: block;
}

/* Desktop */
/* Shared placeholders */
.sneakpeak__item a,
.sneakpeak__item span {
  font-family: "Geist", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}

.hero__content--title {
  font-family: "Bodoni Moda", "Georgia", serif;
}

/* Container */
.container {
  width: 100%;
  height: auto;
}

/* Logo */
.logo {
  width: 100%;
  position: absolute;
  top: 30px;
  z-index: 666;
}
.logo img {
  width: auto;
  height: 30px;
  margin: 0 auto;
}

/* Hero */
.hero {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.hero__media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  will-change: transform;
}
.hero__media--video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__media--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.52) 100%);
}
.hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__content--tagline {
  display: block;
  font-size: 1rem;
  color: var(--white);
}
.hero__content--title {
  font-size: 6rem;
  font-style: italic;
  color: var(--white);
}

/* Sneakpeak */
.sneakpeak {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--border);
}
.sneakpeak__item {
  flex: 1;
  padding: 15px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.sneakpeak__item:last-child {
  border-right: none;
}
.sneakpeak__item a,
.sneakpeak__item span {
  font-size: 0.875rem;
  color: var(--white);
}

/* Animation Helpers */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}

.js-clip {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Mobile */
/* Breakpoint: 1024 */
@media (max-width: 1024px) {
  /* Logo */
  .logo img {
    height: 15px;
  }
  /* Hero */
  .hero {
    height: 100svh;
  }
  .hero__content {
    padding: 0 15px;
  }
  .hero__content--title {
    font-size: 2rem;
  }
  /* Sneakpeak */
  .sneakpeak {
    flex-direction: column;
  }
  .sneakpeak__item:nth-child(1) {
    border-right: none;
  }
  .sneakpeak__item:nth-child(2), .sneakpeak__item:nth-child(3) {
    border-right: none;
    border-top: 1px solid var(--border);
  }
}/*# sourceMappingURL=styles.css.map */