:root {
  --sky: #dcf0fc;
  --sky-deep: #b5ddfc;
  --navy: #0a1658;
  --gold: #d9a029;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  color: var(--navy);
  font-family: var(--sans);
  background: var(--sky);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 18%, #ffffff 0%, var(--sky) 42%, var(--sky-deep) 100%);
}

img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--sky);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.stage {
  height: 100svh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.4vh, 1.6rem);
  padding: clamp(0.8rem, 3vh, 2rem) 1.25rem;
}

.logo {
  margin: 0;
  width: min(72vw, 58svh, 26rem);
}

.logo img {
  width: 100%;
  border-radius: 50%;
}

.follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.handle {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 94%;
}

.handle:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sky);
  background: var(--navy);
  border-radius: 999px;
}

.btn:hover { background: var(--gold); color: var(--navy); }

@media (max-height: 700px) {
  .logo { width: min(64vw, 48svh, 22rem); }
  .handle { font-size: clamp(1.45rem, 5vw, 2.1rem); }
}

@media (max-width: 420px) {
  .logo { width: min(78vw, 46svh); }
}
