:root {
  color-scheme: light;
  --paper: #f4efe5;
  --paper-light: #fbf8f1;
  --ink: #214f54;
  --ink-soft: #456c6d;
  --gold: #8c6427;
  --line: rgba(33, 79, 84, 0.18);
}

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

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.92) 0 18%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(145deg, var(--paper-light), var(--paper));
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.paper-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(37, 73, 72, 0.016) 5px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(140, 100, 39, 0.012) 8px);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  place-items: center;
  padding: clamp(3.5rem, 9vh, 7rem) clamp(1.25rem, 5vw, 5rem) 2.5rem;
}

.hero {
  display: flex;
  width: min(100%, 1050px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 clamp(1.5rem, 4vh, 2.75rem);
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
  animation: reveal 900ms 100ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.logo-wrap {
  position: relative;
  width: min(92vw, 920px);
  animation: reveal 1.1s 180ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.logo-wrap::after {
  position: absolute;
  right: 16%;
  bottom: 7%;
  left: 37%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(140, 100, 39, 0.35), transparent);
  filter: blur(0.2px);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: saturate(0.88) contrast(1.04);
}

h1 {
  margin: clamp(1.5rem, 4vh, 2.6rem) 0 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  animation: reveal 900ms 320ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.intro {
  max-width: 33rem;
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.6;
  animation: reveal 900ms 400ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ornament {
  display: grid;
  width: min(76vw, 260px);
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(2rem, 5vh, 3.25rem);
  color: var(--gold);
  animation: reveal 900ms 480ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.ornament span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.ornament svg {
  width: 32px;
  height: 32px;
  fill: var(--paper);
  stroke: currentColor;
  stroke-width: 1;
}

footer {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 1rem 1.5rem 1.5rem;
}

footer p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.contours {
  position: fixed;
  z-index: -1;
  width: min(40vw, 580px);
  overflow: visible;
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.contours--north {
  top: -8rem;
  left: -10rem;
  transform: rotate(-8deg);
}

.contours--south {
  right: -8rem;
  bottom: -9rem;
  transform: rotate(12deg);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .coming-soon {
    min-height: calc(100svh - 66px);
    padding-top: 3rem;
  }

  .eyebrow {
    max-width: 17rem;
    letter-spacing: 0.23em;
  }

  .logo-wrap {
    width: min(100%, 590px);
  }

  .contours {
    width: 82vw;
    opacity: 0.75;
  }

  .contours--north {
    top: -5rem;
    left: -13rem;
  }

  .contours--south {
    right: -12rem;
    bottom: -6rem;
  }

  footer {
    min-height: 66px;
    padding-block: 0.5rem 0.75rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .coming-soon {
    min-height: calc(100svh - 54px);
    padding-block: 1.5rem 1rem;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
  }

  .logo-wrap {
    width: min(64vw, 660px);
  }

  h1 {
    margin-top: 0.7rem;
  }

  .ornament {
    margin-top: 1rem;
  }

  footer {
    min-height: 54px;
    padding-block: 0.5rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .logo-wrap,
  h1,
  .intro,
  .ornament {
    animation: none;
  }
}

@media (forced-colors: active) {
  .paper-texture,
  .contours,
  .logo-wrap::after {
    display: none;
  }
}
