:root {
  --forest: #033817;
  --heart-green: #0c6626;
  --gold: #fac00a;
  --blue: #0141a5;
  --cream: #fff6e8;
  --cream-deep: #f9ead1;
  --ink-soft: #36513f;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--forest);
  background:
    radial-gradient(circle at 10% 16%, rgb(250 192 10 / 16%), transparent 24rem),
    radial-gradient(circle at 90% 84%, rgb(12 102 38 / 10%), transparent 25rem),
    linear-gradient(145deg, #fffaf1 0%, var(--cream) 55%, var(--cream-deep) 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 1.25rem solid rgb(250 192 10 / 11%);
  border-radius: 50%;
}

body::before {
  top: -9rem;
  right: -7rem;
}

body::after {
  bottom: -10rem;
  left: -6rem;
  border-color: rgb(12 102 38 / 8%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.hero {
  width: min(100%, 67rem);
  padding: clamp(2.25rem, 7vw, 5.75rem) clamp(1.25rem, 6vw, 5rem);
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  color: var(--forest);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0.65rem 1.8rem rgb(250 192 10 / 18%);
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--blue);
  border-radius: 50%;
}

.route {
  margin: 1.4rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(100%, 49rem);
  height: auto;
  margin: 0 auto;
}

.message {
  width: min(100%, 48rem);
  margin: clamp(1rem, 2vw, 1.75rem) auto 0;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6.2vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 span {
  display: block;
  color: var(--heart-green);
}

.intro {
  max-width: 41rem;
  margin: clamp(1.5rem, 4vw, 2.2rem) auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.slogan {
  margin: clamp(1.2rem, 3vw, 1.8rem) 0 0;
  color: var(--forest);
  font-family: "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(1.45rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(17rem, 70%);
  margin: clamp(2rem, 5vw, 3.3rem) auto 0;
  color: var(--blue);
}

.ornament span {
  flex: 1;
  height: 2px;
  background: var(--gold);
}

.ornament i {
  color: var(--heart-green);
  font-size: 1rem;
  font-style: normal;
}

@media (max-width: 42rem) {
  .page-shell {
    padding: 0.75rem;
  }

  .hero {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .logo {
    width: 100%;
  }

  .intro {
    max-width: 31rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: arrive 650ms ease-out both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }

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