:root {
  --green: #0ba313;
  --gold: #d7bf22;
  --yellow: #fff45b;
  --silver: #e9e9e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: white;
  background-color: #ff4ecd;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .98) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 180, .8) 0 1px, transparent 2px),
    linear-gradient(135deg,
      #ff004c 0%,
      #ff8a00 16%,
      #ffe600 32%,
      #15d94f 48%,
      #00b7ff 64%,
      #6832ff 80%,
      #ff4ecd 100%);
  background-size: 148px 148px, 74px 74px, 100% 100%;
  background-position: 0 0, 36px 48px, center;
  font-family: Georgia, 'Times New Roman', serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255,245,104,.9) 0 3px, transparent 5px);
  background-size: 220px 220px, 360px 360px;
  filter: drop-shadow(0 0 8px #fff96d) drop-shadow(0 0 14px #fff96d);
  opacity: .8;
}

.page {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 4px 0 rgba(0,0,0,.05);
}

.subtitle {
  margin: 26px 0 12px;
  color: var(--yellow);
  font-family: 'Comic Neue', 'Comic Sans MS', cursive;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 2px 0 rgba(0,0,0,.15);
}

.featured {
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.gold-frame,
.silver-frame {
  background: var(--gold);
  padding: 16px;
  border: 4px solid #efe9a6;
  box-shadow:
    inset 0 0 0 8px rgba(91, 80, 0, .18),
    0 4px 9px rgba(0, 0, 0, .42);
}

.main-frame {
  width: min(520px, 88vw);
  aspect-ratio: 1 / 1.32;
}

.gold-frame img,
.silver-frame img,
.silver-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid rgba(0, 0, 0, .24);
}

.main-frame img {
  object-position: center top;
}

.gallery {
  width: min(900px, 94vw);
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.silver-frame {
  margin: 0;
  height: clamp(250px, 36vw, 390px);
  padding: 8px;
  background: linear-gradient(135deg, #fafafa, #bfbfbf 48%, #fff 52%, #a6a6a6);
  border-color: #f7f7f7;
  box-shadow:
    inset 0 0 0 4px rgba(40, 40, 40, .16),
    0 4px 8px rgba(0, 0, 0, .5);
}

.video-card video {
  background: #111;
}

@media (max-width: 760px) {
  .page {
    padding-top: 30px;
  }

  .gallery {
    grid-template-columns: 1fr;
    width: min(360px, 88vw);
    margin-top: 36px;
  }

  .silver-frame {
    height: 430px;
  }
}
