:root {
  --night: #3f2f75;
  --teal: #00c3b0;
  --emerald: #00a46f;
  --amethyst: #733fbb;
  --blue: #3f68f6;
  --paper: #fff0d3;
  color: var(--paper);
  background: var(--night);
  font-family: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(127deg, rgb(0 195 176 / 18%), transparent 46%),
    linear-gradient(315deg, rgb(115 63 187 / 44%), transparent 52%),
    var(--night);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem) 2rem;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-logo {
  color: var(--teal);
  font-family: "Berkshire Swash", cursive;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.header-link,
.site-footer a {
  text-underline-offset: 0.3em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.5fr);
  align-items: end;
  flex: 1;
  gap: clamp(2rem, 7vw, 8rem);
  padding-block: clamp(5rem, 15vh, 11rem) clamp(4rem, 10vh, 8rem);
}

.hero-copy {
  position: relative;
  max-width: 52rem;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: -3rem;
  left: -1.25rem;
  width: clamp(11rem, 22vw, 17rem);
  height: clamp(11rem, 22vw, 17rem);
  border: 2px solid rgb(0 195 176 / 60%);
  border-radius: 49% 51% 45% 55% / 55% 43% 57% 45%;
  content: "";
  transform: rotate(-15deg);
}

.eyebrow,
.season-note-label {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
.display-offer {
  margin: 0;
  font-family: "Berkshire Swash", cursive;
  font-weight: 400;
}

h1 {
  max-width: 7ch;
  font-size: clamp(4.75rem, 12vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.display-offer {
  margin-top: 0.55rem;
  color: var(--teal);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
}

.intro {
  max-width: 31rem;
  margin: 2.25rem 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  background: var(--teal);
  color: var(--night);
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: var(--paper);
}

.text-link {
  font-weight: 600;
  text-decoration-color: var(--teal);
  text-underline-offset: 0.35em;
}

.season-note {
  max-width: 20rem;
  padding: 1.5rem;
  border: 1px solid rgb(255 240 211 / 55%);
  background: rgb(255 240 211 / 8%);
  color: var(--paper);
  transform: rotate(3deg);
}

.season-note p:not(.season-note-label) {
  margin: 0;
  font-family: "Berkshire Swash", cursive;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.season-note span {
  display: block;
  margin-top: 1rem;
  color: var(--teal);
  font-size: 1.5rem;
}

.site-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 240 211 / 28%);
  color: rgb(255 240 211 / 82%);
  font-size: 0.7rem;
}

.privacy-page {
  gap: 2rem;
}

.privacy-copy {
  flex: 1;
  max-width: 46rem;
  padding-block: clamp(4rem, 12vh, 9rem);
}

.privacy-copy h1 {
  max-width: none;
  font-size: clamp(4rem, 10vw, 8rem);
}

.privacy-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.6;
}

.privacy-copy a {
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 44rem) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
  }

  .season-note {
    justify-self: end;
    width: min(100%, 19rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
