@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@1,500;1,700&family=EB+Garamond:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,200;6..72,700&display=swap");

:root {
  color-scheme: dark;
  --black: #000000;
  --near-black: #131313;
  --dark-gray: #383838;
  --mid-gray: #666666;
  --border: #666666;
  --white: #ffffff;
  --soft-white: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.7);
  --page-width: 120rem;
  --normal-text: 42rem;
  --narrow-text: 36rem;
  --heading-narrow: 22.75em;
  --header-height: 76px;
  --body-font: "EB Garamond", serif;
  --subheading-font: "Newsreader", serif;
  --heading-font: "Cormorant", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px clamp(18px, 4vw, 64px);
  background: var(--black);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: transform 150ms ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.logo-slot {
  width: 103px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 10px;
  line-height: 1.05;
  text-align: center;
}

.logo-slot.has-image {
  border-color: transparent;
}

.logo-slot.has-image span {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 8px;
}

.site-nav a {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.85;
}

.site-nav a:hover {
  opacity: 1;
}

.page-width {
  width: min(var(--page-width), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
}

.narrow {
  max-width: var(--normal-text);
}

.centered {
  text-align: center;
}

.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.section {
  padding: 48px 0;
  background: var(--black);
}

.section-tight {
  padding: 20px 0 30px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-family: var(--body-font);
  font-style: normal;
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.5rem;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--subheading-font);
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.1;
}

p {
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 24px;
  border: 0;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: #efefef;
  color: var(--black);
}

.button-secondary:hover {
  background: #dedede;
}

.button-light,
.form-button {
  background: var(--white);
  color: var(--black);
}

.button-light:hover,
.form-button:hover {
  background: #dedede;
}

.hero-split {
  min-height: 60svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--black);
}

.hero-copy-block {
  min-height: 60svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 70px);
}

.hero-media {
  min-height: 60svh;
}

.empty-media,
.empty-logo-large {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 28px),
    #151515;
}

.empty-media.has-image,
.empty-logo-large.has-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.empty-logo-large.has-image {
  background-size: contain;
}

.empty-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.lede {
  max-width: var(--normal-text);
  font-size: 1.125rem;
}

.feature-section .page-width {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-media {
  width: 60%;
  aspect-ratio: 16 / 9;
  margin-bottom: 15px;
}

.feature-center .feature-media {
  margin-left: auto;
  margin-right: auto;
}

.feature-left .feature-media,
.feature-left .feature-copy {
  align-self: flex-start;
}

.feature-right .feature-media,
.feature-right .feature-copy {
  align-self: flex-end;
}

.feature-copy {
  width: fit-content;
  max-width: var(--normal-text);
}

.feature-copy h2 {
  margin-bottom: 15px;
  font-size: 3rem;
}

.feature-copy p {
  max-width: var(--normal-text);
}

.divider {
  width: 100%;
  padding: 16px 0;
  background: var(--black);
}

.divider::before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid var(--border);
}

.divider-close {
  padding: 10px 0 15px;
}

.center-heading {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 0;
}

.steps-grid article {
  text-align: center;
}

.steps-grid h3 {
  font-family: var(--subheading-font);
  font-size: 1.5rem;
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.compare-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.comparison-half {
  min-height: 100%;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--white);
}

.comparison-handle::before {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.marquee {
  overflow: hidden;
  padding: 0;
  background: var(--black);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 1rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-section {
  min-height: 50svh;
}

.about-section .narrow {
  padding: 48px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: start;
}

.testimonial-intro,
.testimonial-column {
  padding: 24px;
}

.testimonial-intro h2 {
  font-size: 3rem;
  text-align: left;
}

blockquote {
  margin: 0 0 12px;
  padding: 24px;
  border-radius: 50px;
  background: var(--mid-gray);
  text-align: left;
}

blockquote p {
  margin-bottom: 10px;
}

cite {
  font-style: normal;
}

.testimonial-column > p {
  text-align: center;
}

.gallery-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 15px;
}

.gallery-top h2 {
  margin-bottom: 0;
}

.gallery-top p {
  margin-bottom: 0;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.gallery-card:nth-child(1) {
  grid-column: span 3;
  min-height: 350px;
}

.gallery-card:nth-child(2) {
  grid-column: span 3;
  min-height: 350px;
}

.gallery-card:nth-child(3),
.gallery-card:nth-child(4),
.gallery-card:nth-child(5) {
  grid-column: span 2;
}

.gallery-card .empty-media {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.gallery-title {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  display: inline-block;
  padding: 4px 8px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
}

.waitlist-section .narrow,
.faq-section .narrow {
  padding: 12px 0;
}

.waitlist-section h2 {
  font-family: var(--subheading-font);
  font-style: normal;
  font-size: 3rem;
  font-weight: 200;
}

.waitlist-form {
  width: min(600px, 100%);
  display: grid;
  gap: 14px;
  margin: 28px auto 20px;
  padding: 0;
  background: var(--black);
  color: var(--white);
  text-align: left;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form label span {
  font-size: 0.9rem;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--white);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.waitlist-form select option {
  color: var(--black);
}

.waitlist-form textarea {
  min-height: 82px;
  resize: vertical;
}

.form-full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
}

.after-submit-note {
  margin-bottom: 0;
}

.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

.faq-icon {
  display: inline-block;
  transition: transform 150ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 160ms ease;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.site-footer {
  background: var(--black);
}

.footer-hero {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
}

.footer-hero-media {
  position: absolute;
  inset: 0;
}

.footer-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.18));
}

.footer-hero-content {
  position: relative;
  z-index: 2;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
}

.footer-hero-content h2 {
  max-width: var(--heading-narrow);
  margin-bottom: 0;
  font-family: var(--subheading-font);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 200;
}

.footer-hero-content p {
  max-width: var(--heading-narrow);
  margin-bottom: 94px;
}

.logo-footer {
  padding: 48px 0 28px;
}

.empty-logo-large {
  width: min(520px, calc(100% - 40px));
  aspect-ratio: 2530 / 1478;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.empty-logo-large span {
  font-size: 3rem;
}

.footer-utility {
  width: min(var(--page-width), calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 20px 0 32px;
  font-size: 0.75rem;
}

.footer-utility p {
  margin: 0;
}

.policy-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 58px;
  }

  .logo-slot {
    width: 69px;
    height: 40px;
    font-size: 8px;
  }

  .site-nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    display: grid;
    transform: translateY(-120%);
    padding: 24px;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    min-height: 50svh;
    padding: 28px;
  }

  .hero-media {
    min-height: 50svh;
  }

  h1 {
    font-size: 6.2rem;
  }

  .feature-media {
    width: 80%;
  }

  .feature-left .feature-media,
  .feature-right .feature-media,
  .feature-left .feature-copy,
  .feature-right .feature-copy {
    align-self: center;
  }

  .feature-copy {
    width: 80%;
  }

  .steps-grid,
  .testimonials-grid,
  .compare-layout {
    grid-template-columns: 1fr;
  }

  .bento-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) {
    grid-column: auto;
    min-height: 240px;
  }

  .gallery-top,
  .footer-utility {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .page-width {
    width: calc(100% - 28px);
  }

  .section {
    padding: 36px 0;
  }

  .section-tight {
    padding: 18px 0 26px;
  }

  h2 {
    font-size: 3.1rem;
  }

  h1 {
    font-size: 4.2rem;
  }

  .feature-copy h2,
  .testimonial-intro h2,
  .waitlist-section h2 {
    font-size: 2.35rem;
  }

  .empty-logo-large span {
    font-size: 2rem;
  }

  .feature-media,
  .feature-copy {
    width: 100%;
  }

  .steps-grid {
    padding: 28px 0;
  }

  blockquote {
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
