:root {
  --background: #fdf8f8;
  --surface: #ffffff;
  --ink: #1c1b1b;
  --ink-muted: #46464a;
  --gold: #d4af37;
  --gold-muted: #765a1f;
  --rule: #e2e2de;
  --display: "Iowan Old Style", Baskerville, "Baskerville Old Face",
    "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: 90rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 20rem;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--gold-muted);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.8125rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 10rem), var(--shell));
  margin-inline: auto;
}

main {
  display: flex;
}

.coming-soon {
  display: flex;
  align-items: center;
  width: 100%;
  padding-block: clamp(5rem, 9vh, 8rem);
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.coming-soon__content {
  grid-column: span 5;
  animation: reveal 800ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.brand-mark {
  width: min(21.25rem, 100%);
  height: auto;
  margin-bottom: 3.75rem;
}

.coming-soon h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.heading-rule {
  width: 4rem;
  height: 1px;
  margin-top: 1.75rem;
  background: var(--gold);
  transform-origin: left;
  animation: draw-line 900ms 350ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.coming-soon__message {
  max-width: 30rem;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.125rem;
  line-height: 1.62;
  letter-spacing: 0.005em;
}

.details {
  max-width: 30rem;
  margin-top: 4rem;
  font-style: normal;
}

.detail + .detail {
  margin-top: 2.75rem;
}

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

.detail__heading p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--gold-muted);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail__heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--rule);
}

.detail__value {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.detail__value a {
  text-decoration-color: transparent;
  text-underline-offset: 0.28em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.detail__value a:hover,
.detail__value a:focus-visible {
  color: var(--gold-muted);
  text-decoration-color: currentColor;
}

.exterior-study {
  grid-column: span 7;
  margin: 0;
}

.exterior-study__frame {
  padding: 2.5rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--rule);
  animation: reveal 800ms 100ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.exterior-study__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rule);
}

.exterior-study picture,
.exterior-study img {
  width: 100%;
  height: 100%;
}

.exterior-study img {
  object-fit: cover;
  object-position: 50% 50%;
}

.exterior-study__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgb(28 27 27 / 3%);
}

.exterior-study figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: rgb(253 248 248 / 92%);
  border: 1px solid var(--rule);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.exterior-study__rule {
  width: 33.333%;
  height: 1px;
  margin: 2rem 0 0 auto;
  background: var(--gold);
  transform-origin: right;
  animation: draw-line 1s 500ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.site-footer {
  border-top: 1px solid var(--rule);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.75rem;
  color: var(--ink-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-muted);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-line {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 63.999rem) {
  .shell {
    width: min(calc(100% - 5rem), var(--shell));
  }

  .coming-soon {
    padding-block: 4.5rem 6rem;
  }

  .coming-soon__grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    max-width: 48rem;
  }

  .coming-soon__content,
  .exterior-study {
    grid-column: 1;
  }

  .exterior-study {
    grid-row: 1;
  }

  .coming-soon__content {
    grid-row: 2;
  }

  .brand-mark {
    width: min(18.75rem, 75%);
    margin-bottom: 3rem;
  }

  .exterior-study__frame {
    padding: 1.75rem;
  }

  .coming-soon__message,
  .details {
    max-width: 36rem;
  }
}

@media (max-width: 43.75rem) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .coming-soon {
    padding-block: 2.25rem 4rem;
  }

  .coming-soon__grid {
    gap: 2.75rem;
  }

  .exterior-study__frame {
    padding: 0.875rem;
  }

  .exterior-study figcaption {
    right: 0.625rem;
    bottom: 0.625rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .exterior-study__rule {
    margin-top: 1.25rem;
  }

  .brand-mark {
    width: min(16rem, 78%);
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .heading-rule {
    margin-top: 1.5rem;
  }

  .coming-soon__message {
    margin-top: 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .details {
    margin-top: 2.75rem;
  }

  .detail + .detail {
    margin-top: 2rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-block: 2rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
