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

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
}

html {
  background: var(--mist);
}

body {
  min-height: 100dvh;
  background: var(--mist);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
  caret-color: var(--red);
}

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--black);
  color: var(--off);
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.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;
}

.wrap {
  width: min(100% - 2 * var(--section-padding-x), var(--container));
  margin-inline: auto;
}

.u {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

h1 .u,
h2 .u {
  text-decoration: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--touch-min);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.logo__mark {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--red);
  flex: none;
  overflow: visible;
  transition: transform 0.24s var(--ease), color 0.24s var(--ease);
}

.logo:hover .logo__mark,
.logo:focus-visible .logo__mark {
  color: #f12a32;
  transform: rotate(-6deg) scale(1.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  background: var(--black);
  color: var(--off);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius);
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  background: var(--red);
  color: var(--white);
}

.dot {
  position: absolute;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
}

.print {
  background: var(--white);
  padding: var(--print-pad);
  box-shadow: var(--print-shadow);
  margin: 0;
}

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

.arrow {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.arrow--fill {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  background: var(--black);
  color: var(--off);
  border-bottom: 1px solid rgb(240 237 237 / 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  width: min(100% - 2 * var(--section-padding-x), var(--container));
  margin-inline: auto;
}

.nav-desktop,
.nav-cta {
  display: none;
}

.nav-desktop a,
.nav-cta {
  align-items: center;
  min-height: var(--touch-min);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-desktop a {
  display: inline-flex;
}

.nav-cta {
  letter-spacing: 0.14em;
}

.menu-toggle {
  display: grid;
  place-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--off);
  position: relative;
  z-index: 45;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

#site-nav {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--off);
  padding: calc(var(--header-height) + 1.5rem) var(--section-padding-x) 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

#site-nav.is-open,
body.is-nav-open #site-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#site-nav a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#site-nav .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  background: var(--mist);
  color: var(--black);
}

.hero__stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  background: #000;
  color: var(--off);
  padding: 0;
}

.hero__portrait {
  grid-row: 1 / -1;
  grid-column: 1;
  justify-self: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero__meta {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  z-index: 3;
  max-width: 22ch;
  margin: 0.7rem var(--section-padding-x) 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  font-size: var(--display-hero);
  line-height: 0.82;
  padding: 0 0.35rem;
  margin-top: 0;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 1em;
  text-align: center;
  margin-top: 0;
  color: var(--black);
  letter-spacing: -0.015em;
  -webkit-text-stroke: 0.018em var(--mist);
  paint-order: stroke fill;
  text-shadow: 0 2px 0 var(--mist), 0 0 0.12em rgb(240 237 237 / 0.85);
}

.dot--hero {
  width: 0.72em;
  height: 0.72em;
  right: 6%;
  top: 48%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero__bar {
  display: grid;
  flex: 0 0 auto;
  gap: 0.55rem;
  padding-block: 0.45rem 0.85rem;
}

.hero__bar p {
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.about {
  display: grid;
  gap: 1.25rem;
  padding-block: var(--section-gap);
}

.about__copy h2 {
  font-size: var(--display-section);
  margin-bottom: 1.15rem;
  max-width: 8ch;
}

.about__copy > p {
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.about__list {
  list-style: none;
  padding: 0;
}

.about__list li {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.55rem 0;
  border-top: 1px solid var(--black);
  font-weight: 600;
}

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 42vh;
}

.about__photos .print img {
  aspect-ratio: 1;
  max-height: 28vh;
  object-fit: cover;
}

.about__photos .print--a {
  grid-column: 1 / 3;
  grid-row: 1;
  width: 62%;
  transform: rotate(-4deg);
}

.about__photos .print--b {
  grid-column: 1 / 3;
  grid-row: 1;
  width: 54%;
  justify-self: end;
  align-self: end;
  transform: rotate(7deg);
  margin-top: 8%;
}

.works {
  background: var(--stone);
  padding-block: var(--section-gap);
}

.works__head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.works__head h2 {
  font-size: var(--display-section);
  max-width: 12ch;
  margin-bottom: 0.75rem;
}

.works__head p {
  max-width: 48ch;
}

.masonry {
  display: grid;
  gap: 0.7rem;
}

.masonry .print img {
  aspect-ratio: 16 / 11;
  max-height: 26vh;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.masonry .print--lead img {
  aspect-ratio: 16 / 9;
  max-height: 30vh;
}

.print--red {
  background: var(--red);
  padding: 14px;
}

.works__note {
  margin-top: 1.5rem;
  max-width: 52ch;
}

.services {
  display: grid;
  gap: 2rem;
  padding-block: var(--section-gap);
}

.services__intro h2 {
  font-size: var(--display-section);
  max-width: 10ch;
  margin-bottom: 1rem;
}

.services__intro p {
  max-width: 36ch;
}

.svc {
  list-style: none;
  padding: 0;
}

.svc li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: var(--touch-min);
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 3.2vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  cursor: default;
}

.svc li.is-active {
  background: var(--black);
  color: var(--off);
}

.svc li.is-active .arrow {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.split {
  display: grid;
}

.split__col {
  padding: clamp(1.15rem, 2.8vw, 2.15rem) var(--section-padding-x);
  background: var(--mist);
}

.split__col--dark {
  background: var(--black);
  color: var(--off);
}

.split h2 {
  font-size: var(--display-section);
  margin-bottom: 1.2rem;
}

.split p {
  max-width: 36ch;
  padding: 0.85rem 0;
  border-top: 1px solid currentColor;
}

.statement {
  padding-block: var(--section-gap);
  text-align: center;
}

.statement h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.statement p {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  max-width: 46ch;
  margin: 0 auto;
}

.exhibit {
  padding-bottom: var(--section-gap);
}

.exhibit__head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.exhibit__head h2 {
  font-size: var(--display-section);
  max-width: 12ch;
}

.exhibit__lead {
  max-width: 62ch;
  margin-bottom: 1rem;
}

.exhibit__photo {
  overflow: hidden;
}

.exhibit__photo img {
  width: 100%;
  height: auto;
  max-height: 32vh;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.built {
  display: grid;
  gap: var(--line);
  background: var(--black);
  color: var(--off);
}

.built article {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.2rem, 2.4vw, 1.85rem) var(--section-padding-x);
}

.built h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 10ch;
  margin-bottom: 1rem;
}

.built p + p {
  margin-top: 0.85rem;
}

.faq {
  display: grid;
  gap: 1.75rem;
  padding-block: var(--section-gap);
}

.faq__intro h2 {
  font-size: var(--display-faq);
  margin-bottom: 1rem;
}

.faq__intro p {
  max-width: 24ch;
}

.faq__intro a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

.faq-item h3 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.faq-item button {
  width: 100%;
  min-height: var(--touch-min);
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
}

.faq-item__body {
  display: none;
  padding: 0 0 1.15rem;
}

.faq-item.is-open .faq-item__body {
  display: block;
}

.faq-item__body p {
  max-width: 58ch;
}

.reserve {
  background: var(--mist);
}

.reserve__word {
  position: relative;
  isolation: isolate;
  padding: 1.5rem var(--section-padding-x) 0.4rem;
  font-size: var(--display-hero);
  line-height: 0.86;
}

.reserve h2 {
  position: relative;
  z-index: 2;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}

.dot--reserve {
  width: 0.72em;
  height: 0.72em;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.reserve__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding-block: 1rem 2rem;
  background: var(--mist);
  text-align: center;
}

.reserve__body > p:first-of-type {
  max-width: 42ch;
}

.form-row {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 36rem);
}

.form-row input {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: 0;
  border-radius: 0;
  padding: 0 1.1rem;
  min-height: 58px;
}

.form-row input::placeholder {
  color: var(--grey);
}

.form-error {
  color: var(--red);
  font-size: 0.9rem;
}

.reserve__success {
  display: none;
  font-weight: 600;
}

body.is-waitlisted .reserve form {
  display: none;
}

body.is-waitlisted .reserve__success {
  display: block;
}

.reserve__photo {
  background: var(--black);
}

.reserve__photo img {
  width: 100%;
  height: auto;
  max-height: 26vh;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  opacity: 0.9;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  width: min(100% - 2 * var(--section-padding-x), var(--container));
  margin-inline: auto;
  padding: 1.25rem 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 577px) {
  .hero__meta {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr auto;
    width: auto;
  }
}

@media (min-width: 768px) {
  .menu-toggle,
  #site-nav {
    display: none;
  }

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

  .masonry .print--lead {
    grid-column: 1 / 3;
  }

  .masonry .print--lead img {
    aspect-ratio: 16 / 9;
  }

  .nav-desktop {
    display: flex;
    gap: 1.4rem;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding-top: 0;
  }

  .hero__meta {
    font-size: 1rem;
    max-width: 22ch;
  }

  .hero__portrait {
    width: min(42vw, 34rem);
  }

  .hero__bar {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-block: 0.7rem 1.15rem;
    gap: 1.25rem;
  }

  .hero__bar p {
    font-size: 1.125rem;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .works__head {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: end;
  }

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

  .exhibit__head {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .exhibit__head h2 {
    text-align: right;
    justify-self: end;
  }

  .exhibit__lead {
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .services {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .masonry {
    grid-template-columns: 1.35fr 0.82fr 0.82fr;
    grid-template-rows: minmax(7.5rem, 17vh) minmax(7.5rem, 17vh);
    max-height: 42vh;
    align-items: stretch;
  }

  .masonry .print {
    display: flex;
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .masonry .print img,
  .masonry .print--lead img {
    flex: 1;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .masonry .print--lead {
    grid-column: 1;
    grid-row: 1 / 3;
  }

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

  .faq {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

@media (min-width: 1440px) {
  .split__col {
    padding-inline: max(var(--section-padding-x), calc((100% - var(--container)) / 2));
  }

  .built article {
    padding-inline: clamp(1.75rem, 2vw, 2.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  #site-nav {
    transition: none;
  }
}
