:root {
  --paper: #f4efe6;
  --ink: #1c2330;
  --forest: #1f3d33;
  --forest-deep: #15302a;
  --brass: #b8894a;
  --brass-text: #8a6531;
  --sand: #e6dccb;
  --cream: #fbf8f2;
  --border: rgba(28, 35, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px) 0 0 / 28px 28px,
    linear-gradient(135deg, var(--paper) 0%, #f1e9db 52%, #ece1cf 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 6% 26%, rgba(31, 61, 51, 0.08), transparent 26%),
    radial-gradient(circle at 96% 10%, rgba(184, 137, 74, 0.1), transparent 28%),
    radial-gradient(circle at 76% 96%, rgba(31, 61, 51, 0.06), transparent 26%);
  content: "";
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.page-shell {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem) 1.15rem;
  overflow: hidden;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-header {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(31, 61, 51, 0.22);
  border-radius: 0.5rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(21, 48, 42, 0.16);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--brass-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.18);
}

main {
  display: grid;
  align-items: center;
}

.hero {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 5.5rem) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.6fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.hero-copy {
  max-width: 39rem;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--forest-deep);
}

h1 span {
  display: block;
}

.lede {
  max-width: 34rem;
  margin: 1.6rem 0 1.6rem;
  color: #3a4356;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.coming-soon {
  display: flex;
  max-width: 27rem;
  align-items: center;
  gap: 0.8rem;
  margin: 1.9rem 0 1.3rem;
  color: var(--brass-text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.coming-line {
  height: 1px;
  flex: 1;
  background: rgba(28, 35, 48, 0.22);
}

.mark-panel {
  position: relative;
  display: grid;
  width: min(100%, 18rem);
  aspect-ratio: 0.82;
  justify-self: center;
  place-items: center;
  border: 1px solid rgba(31, 61, 51, 0.18);
  border-radius: 1.5rem;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  box-shadow: 0 24px 40px rgba(21, 48, 42, 0.18);
  animation: arrive 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mark-panel-glyph {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
}

.mark-panel-rule {
  position: absolute;
  bottom: 18%;
  width: 34%;
  height: 2px;
  background: var(--brass);
  border-radius: 999px;
}

.site-footer {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: rgba(28, 35, 48, 0.68);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(1rem) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 820px) {
  .page-shell {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 3.5rem 0;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .mark-panel {
    width: min(60vw, 16rem);
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .lede {
    max-width: 38rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 1.1rem 1rem 1rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .status {
    max-width: 9rem;
    justify-content: flex-end;
    text-align: right;
    line-height: 1.5;
  }

  .status span {
    flex: 0 0 auto;
    margin-top: 0.25rem;
  }

  .hero {
    gap: 3rem;
    padding: 3rem 0 3.25rem;
  }

  h1 {
    font-size: clamp(3.75rem, 19vw, 5.4rem);
  }

  .lede {
    margin-top: 1.75rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.45;
  }
}

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

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