:root {
  color-scheme: light;
  --ink: #171511;
  --muted: #716b61;
  --gold: #c79716;
  --gold-deep: #aa7d0e;
  --paper: #f4f1e9;
  --paper-light: #faf8f2;
  --line: rgba(23, 21, 17, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 42%),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(23, 21, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 17, 0.018) 1px, transparent 1px);
  background-size: 100% 7rem, 7rem 100%;
  content: "";
  pointer-events: none;
}

.page {
  width: min(100%, 96rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

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

.logo-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 0.602 / 1;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  top: -27.8%;
  left: 50%;
  width: 273.2%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  mix-blend-mode: normal;
}

.brand-symbol {
  width: 1.7rem;
}

.brand-divider {
  width: 1px;
  height: 2.15rem;
  background: var(--line);
}

.brand-name {
  margin-top: -0.08em;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.header-note {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.header-note span + span {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
  color: var(--gold-deep);
}

.hero {
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
}

.hero-copy {
  align-self: center;
  padding: clamp(4.5rem, 10vh, 8rem) clamp(3rem, 7vw, 7rem) clamp(4.5rem, 10vh, 8rem) 0;
}

.eyebrow {
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-rule {
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 8.5ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.75rem, 8vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

h1 em {
  display: block;
  color: var(--gold-deep);
  font-weight: 400;
}

.intro {
  max-width: 34rem;
  margin: clamp(2.5rem, 5vh, 3.75rem) 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.62;
}

.launch-status {
  width: min(21rem, 100%);
  margin-top: clamp(2.75rem, 6vh, 4rem);
  padding-top: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-top: 1px solid var(--ink);
}

.status-index {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.status-copy {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.status-copy strong,
.status-copy small {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-copy small {
  color: var(--muted);
  font-weight: 500;
}

.identity-panel {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(199, 151, 22, 0.14), transparent 43%),
    rgba(250, 248, 242, 0.32);
}

.identity-panel::before,
.identity-panel::after {
  position: absolute;
  content: "";
  background: var(--line);
}

.identity-panel::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.identity-panel::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.panel-label {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-label-top {
  top: 1.5rem;
  right: 1.5rem;
}

.panel-label-bottom {
  right: 1.5rem;
  bottom: 1.5rem;
}

.emblem-stage {
  position: relative;
  z-index: 1;
  width: min(76%, 22rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 21, 17, 0.18);
  border-radius: 50%;
}

.emblem-ring::before,
.emblem-ring::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.emblem-ring::before {
  inset: 8%;
  border: 1px solid rgba(199, 151, 22, 0.2);
}

.emblem-ring::after {
  inset: 18%;
  border: 1px solid rgba(23, 21, 17, 0.08);
}

.hero-emblem {
  width: 38%;
  z-index: 2;
  transform: translateY(-6%);
}

.site-footer {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 6.5rem;
  }

  .header-note span:first-child {
    display: none;
  }

  .header-note span + span {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  }

  .hero-copy {
    padding-right: 2.5rem;
  }

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

@media (max-width: 720px) {
  .page {
    min-height: 100svh;
  }

  .site-header {
    min-height: 5.75rem;
  }

  .brand-symbol {
    width: 1.45rem;
  }

  .brand-divider {
    height: 1.8rem;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-copy {
    padding: 4.75rem 0 5.25rem;
  }

  .identity-panel {
    min-height: 28rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .emblem-stage {
    width: min(74vw, 20rem);
  }

  .site-footer {
    min-height: 7rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0.65rem;
  }
}

@media (max-width: 440px) {
  .page {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .header-note {
    display: none;
  }

  .hero-copy {
    padding: 4rem 0 4.5rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(3.9rem, 19vw, 5.25rem);
  }

  .intro {
    font-size: 1.08rem;
  }

  .status-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .identity-panel {
    min-height: 23rem;
  }

  .panel-label-bottom {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: reveal 700ms both cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-copy h1 {
    animation-delay: 80ms;
  }

  .hero-copy .intro {
    animation-delay: 150ms;
  }

  .hero-copy .launch-status {
    animation-delay: 220ms;
  }

  .emblem-stage {
    animation: emblem-in 900ms 160ms both cubic-bezier(0.22, 1, 0.36, 1);
  }

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

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

  @keyframes emblem-in {
    from {
      opacity: 0;
      transform: scale(0.96);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
