.scene-gallery {
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
  background: #f6f8f1;
}
.scene-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.scene-gallery-track::-webkit-scrollbar { display: none; }
.scene-gallery .scene-entry {
  position: relative;
  flex: 0 0 calc(100% - 88px);
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: #07110c;
  color: #f5faef;
}
.scene-entry-media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
}
.scene-entry-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.scene-entry-copy {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 28px clamp(24px, 4vw, 64px) 36px;
  background: #f6f8f1;
  color: #18291d;
}
.scene-entry-label { margin: 0 0 20px; color: #54742f; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.scene-entry h2 { max-width: 10ch; margin: 0; font-size: clamp(36px, 4.3vw, 68px); line-height: 1.04; letter-spacing: -.035em; }
.scene-entry-body { max-width: 24ch; margin: 24px 0 0; color: #4a5d4d; font-size: clamp(15px, 1.35vw, 20px); line-height: 1.7; }
.scene-entry-action { display: inline-flex; align-items: center; justify-content: center; width: max-content; min-height: 44px; margin-top: 36px; padding: 0 22px; border: 1px solid rgba(49,83,47,.25); border-radius: 999px; color: #1b3a22; font-size: 13px; font-weight: 760; transition: background .2s ease, transform .2s ease; }
.scene-entry-action:hover { transform: translateY(-1px); background: rgba(255,255,255,.62); }
.scene-pagination { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 18px 0 0; }
.scene-dot { display: block; width: 7px; height: 7px; padding: 0; border-radius: 50%; background: #aab5a3; transition: transform .2s ease, background .2s ease; }
.scene-dot.is-active { transform: scale(1.45); background: #5b7f2a; }
.scene-dot:focus-visible { outline: 2px solid #5b7f2a; outline-offset: 5px; }
body:has(.hero[data-theme="dark"]) .scene-gallery { background: #050907; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry { background: #050907; color: #f5faef; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-copy { background: #050907; color: #f5faef; }
.scene-entry-crops { margin: 14px 0 0; max-width: 72ch; color: #4a5d4d; font-size: 13px; line-height: 1.7; overflow-wrap: anywhere; }
body:has(.hero[data-theme="dark"]) .scene-entry-crops { color: #bdcbbd; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-label { color: #b7ff45; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-body { color: #bdcbbd; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-action { border-color: rgba(183,255,69,.34); color: #d9f5c3; }
body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-action:hover { background: rgba(183,255,69,.08); }

@media (prefers-reduced-motion: reduce) {
  .scene-dot, .scene-entry-action { transition: none; }
}
@media (max-width: 720px) {
  .scene-gallery { padding-bottom: 20px; }
  .scene-gallery-track { gap: 12px; padding: 0 7vw; align-items: flex-start; overflow-y: hidden; }
  .scene-gallery .scene-entry { display: flex; flex-basis: 86vw; flex-direction: column; min-height: 0; }
  .scene-entry-media { position: relative; inset: auto; width: 100%; aspect-ratio: 16 / 9; flex-shrink: 0; }
  .scene-entry-copy { position: relative; inset: auto; width: 100%; min-height: 0; padding: 30px 24px 36px; background: #f6f8f1; }
  body:has(.hero[data-theme="dark"]) .scene-gallery .scene-entry-copy { background: #050907; }
  .scene-entry-label { margin-bottom: 14px; }
  .scene-entry h2 { font-size: clamp(36px, 12vw, 52px); }
  .scene-entry-body { margin-top: 18px; font-size: 15px; }
  .scene-entry-action { margin-top: 28px; }
}
