/* ============================================
   TWING CAFE — VIRTUAL CAFÉ PAGE STYLES
   ============================================ */

/* ── 3D RENDER SHOWCASE ── */
.render-showcase .section-header--center > * {
  min-width: 0;
  max-width: 100%;
}
.render-hint {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  margin-top: 14px;
}
.render-pages {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.render-page {
  position: relative;
  margin: 0;
  width: 100%;
}
.render-page + .render-page { margin-top: 6px; }
.render-page img {
  display: block;
  width: 100%;
  height: auto;
}
.render-page__caption {
  position: absolute;
  left: 40px;
  bottom: 36px;
}
.render-page__label {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}
.render-page__title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 30px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* ── BRANDING SHOWCASE ── */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.branding-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(24,62,44,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.branding-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.branding-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.branding-item h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 16px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.branding-item p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a8a80;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .branding-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .render-page__caption { left: 20px; bottom: 22px; }
  .render-page__title { font-size: 22px; margin-top: 10px; }
}
