:root {
  --paper: #f8eee9;
  --paper-deep: #efdcd7;
  --ink: #321a2a;
  --berry: #7d3656;
  --berry-dark: #5f2643;
  --rose: #d98ba2;
  --blush: #f0bcc7;
  --butter: #f6d879;
  --lavender: #b9afd7;
  --sky: #bcdce0;
  --sage: #9db89f;
  --cream: #fffaf4;
  --border: rgba(75, 34, 55, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", "Trebuchet MS", sans-serif;
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 7% 28%, rgba(217, 139, 162, 0.16), transparent 24%),
    radial-gradient(circle at 96% 8%, rgba(185, 175, 215, 0.18), transparent 28%),
    radial-gradient(circle at 74% 96%, rgba(246, 216, 121, 0.15), 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(95, 38, 67, 0.22);
  border-radius: 50% 50% 45% 55%;
  background: var(--cream);
  color: var(--berry);
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: 0 4px 16px rgba(95, 38, 67, 0.08);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--berry-dark);
  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(--rose);
  box-shadow: 0 0 0 4px rgba(217, 139, 162, 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(320px, 0.84fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--rose);
  font-size: 1rem;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 8vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.072em;
  line-height: 0.72;
}

h1 span {
  display: block;
}

h1 .script-line {
  position: relative;
  left: clamp(0.25rem, 2vw, 2.2rem);
  z-index: 1;
  color: var(--berry);
  font-size: 0.78em;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

h1 .script-line::after {
  position: absolute;
  right: 3%;
  bottom: -0.02em;
  left: 8%;
  z-index: -1;
  height: 0.15em;
  border-radius: 999px;
  background: var(--butter);
  content: "";
  transform: rotate(-1.2deg);
}

.lede {
  max-width: 34rem;
  margin: 2rem 0 1.6rem;
  color: #5a3b4c;
  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(--berry-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.coming-line {
  height: 1px;
  flex: 1;
  background: rgba(95, 38, 67, 0.27);
}

.opportunities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opportunities li {
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(95, 38, 67, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.55);
  color: var(--berry-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-stage {
  position: relative;
  width: min(100%, 27rem);
  justify-self: center;
  filter: drop-shadow(0 22px 24px rgba(76, 32, 52, 0.13));
  animation: arrive 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.arch {
  position: relative;
  aspect-ratio: 0.73;
  overflow: hidden;
  border: 0.7rem solid rgba(255, 250, 244, 0.78);
  border-radius: 50% 50% 2.25rem 2.25rem / 33% 33% 2.25rem 2.25rem;
  background: linear-gradient(180deg, #c6e4e8 0%, #e2e4d2 54%, #d8c9bf 100%);
  box-shadow:
    inset 0 0 0 1px rgba(95, 38, 67, 0.12),
    0 0 0 1px rgba(95, 38, 67, 0.08);
}

.arch::before {
  position: absolute;
  inset: 0.75rem;
  z-index: 6;
  border: 1px solid rgba(255, 250, 244, 0.58);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 11%;
  right: 12%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 1.1rem rgba(246, 216, 121, 0.22);
}

.cloud {
  position: absolute;
  z-index: 1;
  width: 5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.cloud::before {
  left: 0.9rem;
  width: 2.3rem;
  height: 2.3rem;
}

.cloud::after {
  right: 0.65rem;
  width: 1.8rem;
  height: 1.8rem;
}

.cloud-one {
  top: 23%;
  left: -0.7rem;
  transform: scale(0.9);
}

.cloud-two {
  top: 36%;
  right: -1.7rem;
  transform: scale(0.62);
}

.rainbow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 19rem;
  height: 14rem;
  border: 1.05rem solid;
  border-bottom: 0;
  border-radius: 12rem 12rem 0 0;
  transform: translateX(-50%);
}

.rainbow-one {
  border-color: var(--rose);
}

.rainbow-two {
  bottom: 20%;
  width: 16.9rem;
  height: 11.9rem;
  border-color: var(--butter);
}

.rainbow-three {
  bottom: 20%;
  width: 14.8rem;
  height: 9.8rem;
  border-color: var(--lavender);
}

.stage-message {
  position: absolute;
  top: 31%;
  left: 50%;
  z-index: 4;
  width: 80%;
  color: var(--berry-dark);
  text-align: center;
  text-shadow: 0 1px rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
}

.stage-star {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--berry);
  font-size: 1rem;
}

.stage-small {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-message strong {
  display: block;
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hill {
  position: absolute;
  right: -12%;
  bottom: -19%;
  left: -12%;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  height: 42%;
  background: var(--sage);
  transform: rotate(-4deg);
}

.hill-front {
  right: -22%;
  bottom: -26%;
  left: -18%;
  height: 44%;
  background: #75977b;
  transform: rotate(5deg);
}

.flower {
  position: absolute;
  z-index: 5;
  width: 4rem;
  height: 4rem;
}

.flower i,
.flower b {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.flower i {
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1.65rem;
  background: var(--cream);
  transform-origin: 50% 0;
}

.flower i:nth-child(1) { transform: rotate(0deg) translate(-50%, -100%); }
.flower i:nth-child(2) { transform: rotate(72deg) translate(-50%, -100%); }
.flower i:nth-child(3) { transform: rotate(144deg) translate(-50%, -100%); }
.flower i:nth-child(4) { transform: rotate(216deg) translate(-50%, -100%); }
.flower i:nth-child(5) { transform: rotate(288deg) translate(-50%, -100%); }

.flower b {
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--butter);
  transform: translate(-50%, -50%);
}

.flower-one {
  right: 8%;
  bottom: 5%;
  transform: rotate(12deg) scale(0.9);
}

.flower-two {
  bottom: 14%;
  left: 7%;
  transform: rotate(-8deg) scale(0.72);
}

.flower-three {
  right: 26%;
  bottom: -2%;
  transform: rotate(24deg) scale(0.54);
}

.flower-two i {
  background: #f1b9c7;
}

.flower-three i {
  background: #d5cbe9;
}

.stage-caption {
  margin: 0.8rem 0 0;
  color: rgba(95, 38, 67, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
}

.site-footer {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: rgba(50, 26, 42, 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;
  }

  .portrait-stage {
    width: min(88vw, 25rem);
  }

  h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .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);
  }

  h1 .script-line {
    left: 0.15rem;
  }

  .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;
  }
}
