/* =========================
   MEMORY BEARS — GALLERY PAGE
   Gallery-only styles
   Shared header/footer stay in style.css
   ========================= */

/* Main gallery page wrapper */

.gallery-page {
  padding: 72px 0 100px;
  text-align: center;
}

.gallery-page .container {
  width: min(var(--max), calc(100% - 96px));
}

.gallery-page h2 {
  margin: 0 0 12px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text);
}

.gallery-page p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Bear style cards */

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(380px, 1fr));
  gap: 36px;
  max-width: 980px;
  margin: 50px auto 0;
}

.option-link {
  text-decoration: none;
  color: inherit;
}

.option-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.82);
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ece5d8;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.option-card:hover .card-image img {
  transform: scale(1.04);
}

.option-card h3 {
  margin: 26px 28px 14px;
  font-size: 28px;
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
}

.option-card p {
  margin: 0 28px 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 500;
}

.coming-soon {
  display: inline-block;
  margin: 0 18px 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .gallery-page {
    padding: 64px 0 80px;
  }

  .gallery-page .container {
    width: min(100%, calc(100% - 36px));
  }

  .options-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: 620px;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .gallery-page {
    padding: 48px 0 70px;
  }

  .gallery-page h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .gallery-page p {
    font-size: 1rem;
  }

  .options-grid {
    margin-top: 36px;
    gap: 22px;
  }

  .option-card h3 {
    margin: 22px 22px 12px;
    font-size: 24px;
  }

  .option-card p {
    margin: 0 22px 24px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.95rem;
  }
}
