/* Lake Holly — landing page. */

:root {
  --navy:   #062B45;
  --cream:  #F6E8D2;
  --peach:  #F4BE87;
  --orange: #EE925B;
  --coral:  #EB5F4B;
  --teal:   #48A6C2;
  --ink:    #062B45;

  --brand: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --sans: "Avenir Next", Avenir, Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* A very quiet waterline across the base of the page. */
body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 38vh;
  background:
    linear-gradient(to bottom, transparent, rgba(72, 166, 194, .09)),
    repeating-linear-gradient(to bottom,
      transparent 0 46px,
      rgba(72, 166, 194, .12) 46px 48px);
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.lockup { display: flex; flex-direction: column; align-items: center; }

.mark { width: clamp(104px, 17vw, 150px); height: auto; }

.home .mark {
  width: min(420px, 72vw);
}

.lockup-art {
  display: block;
  width: min(640px, 86vw);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(6, 43, 69, .18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wordmark {
  margin: 0;
  font-family: var(--brand);
  font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 4.25rem);
  letter-spacing: .08em;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.tagline {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.cta:hover { background: var(--teal); color: var(--navy); }
.cta:active { transform: translateY(1px); }

.cta:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.cta-arrow { width: 1em; height: 1em; transition: transform .18s ease; }
.cta:hover .cta-arrow { transform: translateX(3px); }

.foot {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  text-align: center;
  font-size: .8125rem;
  color: color-mix(in srgb, var(--ink) 45%, transparent);
}

.foot p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
