
:root {
  --ink: #070b10;
  --navy: #081725;
  --navy-soft: #0d2636;
  --gold: #d6a332;
  --gold-light: #f4d783;
  --cream: #fff4d3;
  --red: #a51f17;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.launch-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 50% 38%, rgba(160, 101, 27, .34) 0, rgba(13, 38, 54, .35) 30%, transparent 62%),
    linear-gradient(160deg, #06090d 0%, #081725 46%, #0a202c 100%);
}

.launch-shell::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 38%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(214,163,50,.12), transparent 66%);
  pointer-events: none;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background-image:
    radial-gradient(circle, rgba(244,215,131,.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,.28) 0 1px, transparent 1.4px);
  background-size: 140px 140px, 210px 210px;
  background-position: 20px 34px, 88px 106px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.rope-frame {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(214,163,50,.32);
  border-radius: 24px;
  box-shadow: inset 0 0 0 4px rgba(214,163,50,.025);
  pointer-events: none;
}

.launch-card {
  align-self: center;
  width: min(92vw, 780px);
  margin: 0 auto;
  padding: 28px 20px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.crest-wrap {
  width: min(72vw, 390px, 53vh);
  aspect-ratio: 2 / 3;
  margin-bottom: clamp(10px, 1.6vh, 18px);
  overflow: hidden;
  border-radius: 36px;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.52));
}

.crest {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .21em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow span:last-child { transform: rotate(180deg); }

h1 {
  margin: 8px 0 8px;
  color: var(--cream);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 600;
  letter-spacing: .07em;
  line-height: .95;
  text-shadow: 0 3px 0 rgba(0,0,0,.42), 0 0 28px rgba(214,163,50,.12);
  text-transform: uppercase;
}

.tagline {
  margin: 0;
  color: var(--gold);
  font-size: clamp(.92rem, 2vw, 1.08rem);
  font-style: italic;
  letter-spacing: .03em;
}

.contact {
  margin: 18px 0 0;
  color: rgba(255,244,211,.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.72rem, 1.5vw, .84rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration-color: rgba(214,163,50,.5);
  text-underline-offset: 4px;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

.corner {
  position: absolute;
  top: 45%;
  z-index: -1;
  color: rgba(214,163,50,.1);
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 1;
}

.corner-one { left: -4vw; transform: rotate(18deg); }
.corner-two { right: -4vw; transform: rotate(-18deg); }

footer {
  position: relative;
  z-index: 2;
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,244,211,.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.diamond { color: var(--gold); font-size: .48rem; }

@media (max-width: 600px) {
  .rope-frame { inset: 10px; border-radius: 18px; }
  .launch-card { padding: 22px 14px 30px; }
  .crest-wrap { width: min(78vw, 350px, 49vh); border-radius: 26px; }
  .eyebrow { gap: 8px; font-size: .58rem; letter-spacing: .13em; }
  .eyebrow span { width: 20px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  footer { flex-wrap: wrap; gap: 7px 10px; padding-inline: 30px; }
}

@media (max-height: 720px) and (min-width: 601px) {
  .launch-card { padding: 20px 20px 28px; }
  .crest-wrap { width: min(44vh, 320px); }
  h1 { font-size: clamp(3rem, 8vh, 4.5rem); }
}

@media (prefers-reduced-motion: no-preference) {
  .crest { animation: reveal .9s ease-out both; }
  h1, .tagline, .contact { animation: rise .75s .14s ease-out both; }
  @keyframes reveal { from { opacity: 0; transform: translateY(-10px) scale(.975); } }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } }
}
