:root {
  --paper: #f2eee6;
  --paper-deep: #e5dccd;
  --ink: #25241f;
  --muted: #625f56;
  --clay: #9c4d25;
  --indigo: #183451;
  --line: rgba(68, 55, 39, .22);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--paper); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.72), transparent 31rem),
    radial-gradient(circle at 84% 88%, rgba(156,77,37,.07), transparent 32rem),
    repeating-linear-gradient(91deg, rgba(84,69,48,.018) 0 1px, transparent 1px 6px),
    var(--paper);
}

.page-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: clamp(2.25rem, 6vw, 5.5rem) 1.5rem clamp(2.5rem, 7vw, 6rem);
}

.hero { width: min(1040px, 100%); text-align: center; }

.logo-frame {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.22);
  box-shadow: 0 18px 55px rgba(66,49,30,.07);
}

.logo-frame::before,
.logo-frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--clay);
  opacity: .7;
}

.logo-frame::before { inset: -5px auto auto -5px; border-left: 2px solid; border-top: 2px solid; }
.logo-frame::after { inset: auto -5px -5px auto; border-right: 2px solid; border-bottom: 2px solid; }

.logo { display: block; width: 100%; height: auto; }

.rule {
  width: min(520px, 72%);
  margin: clamp(2rem, 5vw, 3.75rem) auto 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 13px;
  align-items: center;
}

.rule span { height: 1px; background: var(--line); }
.rule i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--clay); }

.content { max-width: 780px; margin: 0 auto; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1 {
  max-width: 750px;
  margin: 0 auto;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.description {
  max-width: 680px;
  margin: 1.55rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.launch {
  margin: 2.35rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
}

.launch p {
  margin: 0;
  padding: .72rem 1.25rem;
  border: 1px solid rgba(24,52,81,.5);
  color: var(--indigo);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stitch { width: 38px; border-top: 2px dashed var(--clay); opacity: .78; }

footer {
  min-height: 64px;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #777166;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-mark { color: var(--clay); font-size: .5rem; }

@media (max-width: 620px) {
  .page-shell { min-height: auto; padding: 1.25rem 1rem 3.5rem; }
  .logo-frame { padding: 4px; }
  .rule { margin-top: 2.35rem; }
  .eyebrow { font-size: .7rem; line-height: 1.5; }
  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .description { line-height: 1.65; }
  .stitch { width: 22px; }
  footer { flex-wrap: wrap; gap: .65rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-frame { animation: reveal .8s ease-out both; }
  .content { animation: rise .75s .15s ease-out both; }
  @keyframes reveal { from { opacity: 0; transform: scale(.985); } }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } }
}
