:root {
  --navy: #173d5a;
  --teal: #2aa8b3;
  --coral: #ef7659;
  --paper: #eadcc7;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}

.landing-page {
  width: 100%;
  min-height: 100vh;
}

.artboard {
  position: relative;
  width: 100vw;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper);
}

.artboard__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}

.countdown {
  position: absolute;
  left: 30.73%;
  top: 59.57%;
  width: 36.07%;
  height: 10.35%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 1.05%;
  font-family: "Barlow Condensed", Arial, sans-serif;
  color: var(--navy);
}

.countdown__unit {
  position: relative;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
}

.countdown__unit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 19%;
  width: 1px;
  height: 62%;
  background: rgba(23, 61, 90, 0.22);
}

.countdown strong {
  display: block;
  font-size: clamp(26px, 4.14vw, 74px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0;
}

.countdown span {
  display: block;
  margin-top: 0.52em;
  font-size: clamp(9px, 0.92vw, 17px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.social-link {
  position: absolute;
  top: 94.14%;
  width: 2.62%;
  height: 3.91%;
  border-radius: 50%;
  pointer-events: auto;
  background: transparent;
  outline: 0 solid transparent;
  transition:
    background-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.social-link--instagram { left: 41.47%; }
.social-link--facebook  { left: 45.25%; }
.social-link--youtube   { left: 48.89%; }
.social-link--email     { left: 52.54%; }

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 2px rgba(239, 118, 89, 0.92),
    0 0 0 5px rgba(255, 255, 255, 0.52);
  transform: scale(1.04);
  outline: none;
}

@media (max-width: 760px) {
  .artboard {
    min-width: 960px;
    transform-origin: top left;
  }

  .landing-page {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-link { transition: none; }
}
