:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #232629;
  background: #faf4eb;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --brick: #872530;
  --ink: #232629;
  --limestone: #faf4eb;
  --stone: #d8cfc3;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgb(255 253 249 / 94%) 0 18rem, transparent 39rem),
    linear-gradient(135deg, #fffdf9 0%, var(--limestone) 54%, #f4eadc 100%);
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  z-index: -1;
  width: min(28vw, 24rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(135 37 48 / 28%));
}

.page-shell::before {
  top: clamp(2rem, 7vh, 5rem);
  left: 0;
}

.page-shell::after {
  right: 0;
  bottom: clamp(2rem, 7vh, 5rem);
  transform: rotate(180deg);
}

.architectural-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.065;
  color: var(--brick);
  pointer-events: none;
}

.line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: trace 2.2s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.line-center {
  animation-delay: 140ms;
}

.line-right {
  animation-delay: 280ms;
}

.coming-soon {
  display: grid;
  width: min(100%, 46rem);
  justify-items: center;
  text-align: center;
  animation: arrive 900ms 120ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.brand-lockup {
  display: block;
  width: min(100%, 40rem);
  height: auto;
}

.divider {
  width: 2.25rem;
  height: 2px;
  margin: clamp(2rem, 5vh, 3.25rem) 0 clamp(1.25rem, 3vh, 2rem);
  background: var(--brick);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes trace {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 2rem 1.5rem;
  }

  .brand-lockup {
    width: min(100%, 21rem);
  }

  .architectural-lines {
    width: 160%;
    max-width: none;
    transform: translateX(-19%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon,
  .line {
    animation: none;
  }

  .line {
    stroke-dashoffset: 0;
  }
}
