.home-landing .home-hero h1 { max-width: 12ch; }
.home-hero .vtt-hero-art img { aspect-ratio: 16 / 10; object-position: center; }
.home-hero figure,
.home-showcase figure { margin: 0; }
.home-landing .vtt-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: .65rem 1rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  background: rgba(var(--theme-base-rgb), .82);
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.home-landing .vtt-actions button:hover { border-color: var(--gold-bright); transform: translateY(-1px); }
.home-landing .vtt-actions [data-donation-button] {
  padding-inline: 1.2rem;
  border-color: var(--gold) !important;
  background: linear-gradient(145deg, rgba(var(--theme-accent-rgb),.34), rgba(var(--theme-base-rgb),.92)) !important;
  color: var(--gold-bright) !important;
  box-shadow: inset 0 1px rgba(255,255,255,.1), 0 0 16px rgba(var(--theme-accent-rgb),.28), 0 7px 18px rgba(0,0,0,.28) !important;
}
.home-landing .vtt-actions [data-donation-button]:hover,
.home-landing .vtt-actions [data-donation-button]:focus-visible {
  border-color: var(--gold-bright) !important;
  background: linear-gradient(145deg, rgba(var(--theme-accent-rgb),.48), rgba(var(--theme-base-rgb),.96)) !important;
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 0 23px rgba(var(--theme-accent-rgb),.42), 0 9px 22px rgba(0,0,0,.34) !important;
}
.home-copy-section .home-showcase-copy { max-width: 52rem; }
.home-showcase-copy h2 {
  margin-bottom: .8rem;
  color: var(--gold-bright);
  font: 700 clamp(1.65rem, 4vw, 2.8rem)/1.08 var(--font-display);
}
.home-showcase-copy > p { color: var(--silver-dim); font-size: clamp(.92rem, 1.5vw, 1.05rem); line-height: 1.7; }
.home-preview-section .home-preview-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, auto));
  align-items: stretch;
  gap: 1rem;
}
.home-preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid var(--gold-deep) !important;
  border-radius: var(--radius) !important;
  background: var(--maroon-deep) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.34) !important;
  cursor: zoom-in;
}
.home-preview img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .2s ease, filter .2s ease; }
.home-preview span {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem .7rem .55rem;
  background: linear-gradient(transparent, rgba(var(--theme-abyss-rgb),.96));
  color: var(--gold-bright);
  font: 700 .82rem/1 var(--font-display);
  letter-spacing: .06em;
  text-align: left;
}
.home-preview:hover img,
.home-preview:focus-visible img { transform: scale(1.025); filter: brightness(1.08); }
.home-preview-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(5px);
}
.home-preview-modal[hidden] { display: none; }
.home-preview-dialog {
  --modal-close-size: 36px;
  --modal-close-inset: .75rem;
  position: relative;
  width: min(72rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 3.4rem 1rem 1rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background: var(--maroon-deep);
  box-shadow: 0 24px 80px rgba(0,0,0,.72);
}
.home-preview-dialog > .modal-close { position: absolute !important; top: var(--modal-close-inset) !important; right: var(--modal-close-inset) !important; }
.home-preview-dialog figure { display: grid; gap: .7rem; margin: 0; }
.home-preview-dialog img { display: block; width: 100%; max-height: calc(100vh - 8rem); object-fit: contain; }
.home-preview-dialog figcaption { color: var(--gold-bright); font: 700 1rem/1.2 var(--font-display); text-align: center; }
.home-landing .vtt-feature-grid h3 a { text-decoration: none; }
@media (max-width: 850px) {
  .home-preview-section .home-preview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: repeat(3,minmax(0,auto)); }
}
@media (max-width: 560px) {
  .home-landing .vtt-actions button { width: 100%; }
  .home-preview-grid { gap: .55rem; }
}
@media (prefers-reduced-motion: reduce) {
  .home-preview img { transition: none; }
}
