:root {
  --black: #050505;
  --white: #ffffff;
  --cream: #f7efe2;
  --gold: #c6a86b;
  --shadow: 0 18px 48px rgba(5, 5, 5, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.coming-page {
  min-height: 100svh;
}

.cover-stage {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: #f0dfc9;
}

.cover-image {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.quick-links {
  width: min(1180px, calc(100% - 32px));
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cover-stage.links-below {
  overflow: visible;
}

.cover-stage.links-below .cover-image {
  height: auto;
  min-height: 0;
}

.cover-stage.links-below .quick-links {
  width: min(1180px, calc(100% - 32px));
  position: static;
  transform: none;
  margin: 0 auto 18px;
}

.quick-link {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(5, 5, 5, 0.9);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.18;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-link:hover,
.quick-link:focus-visible,
.quick-link.is-tapped {
  transform: translateY(-2px);
  background: #201d18;
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.2);
}

.quick-link:focus-visible {
  outline: 3px solid rgba(198, 168, 107, 0.55);
  outline-offset: 3px;
}

.quick-link span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  line-height: 1;
}

.social-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.quick-link--light {
  background: var(--white);
  color: var(--black);
  border-color: rgba(198, 168, 107, 0.75);
}

.quick-link--light:hover,
.quick-link--light:focus-visible,
.quick-link--light.is-tapped {
  background: #fff9ec;
}

@media (max-width: 980px) {
  .quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cover-stage {
    min-height: 100svh;
    overflow: visible;
  }

  .cover-image {
    display: block;
    height: auto;
    min-height: 0;
  }

  .quick-links {
    width: 100%;
    position: static;
    transform: none;
    grid-template-columns: 1fr;
    padding: 18px;
    border: 0;
    border-top: 1px solid rgba(198, 168, 107, 0.32);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #f6ead8);
    box-shadow: none;
    backdrop-filter: none;
  }

  .quick-link {
    min-height: 58px;
    font-size: 0.95rem;
  }
}
