/* ============================================================
   THE GLOAMING — fine art photography, Savannah GA
   Design tokens
   ============================================================ */

:root {
  /* color */
  --ink:        #14150f;   /* primary background — warm olive-black */
  --ink-2:      #1b1c14;   /* alternate section background */
  --ink-3:      #202119;   /* card / panel background */
  --moss:       #3f4736;   /* deep muted moss — borders, dividers on dark */
  --brass:      #b4894f;   /* aged brass — primary accent */
  --brass-dim:  #8a6b3e;   /* brass, hover/active */
  --bone:       #ede6d6;   /* warm ivory — primary text on dark */
  --bone-dim:   #cfc7b3;   /* secondary ivory */
  --fog:        #97998a;   /* muted sage-gray — captions, meta */
  --rust:       #8a5138;   /* rare accent — weathered brick */
  --line:       #33352a;   /* hairline border */
  --line-soft:  #2a2b22;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", ui-serif, serif;
  --font-body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.1875rem;
  --text-xl:   clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --text-2xl:  clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem);
  --text-3xl:  clamp(2.5rem, 1.6rem + 3.6vw, 4.6rem);
  --text-hero: clamp(2.8rem, 1.4rem + 6.5vw, 7.4rem);

  /* layout */
  --gutter: clamp(1.25rem, 1rem + 2vw, 3.5rem);
  --max-w: 84rem;
  --dur-fast: 220ms;
  --dur-med: 560ms;
  --dur-slow: 1100ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   Reset
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--brass); color: var(--ink); }

:focus-visible {
  outline: 1.5px solid var(--brass);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Type
   ============================================================ */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 480;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--bone);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--fog);
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--bone-dim);
}

p.body-text { color: var(--bone-dim); max-width: 60ch; }

/* ============================================================
   Layout helpers
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 3rem + 6vw, 9rem);
}

.section-tight { padding-block: clamp(2.5rem, 2rem + 3vw, 5rem); }

.hr {
  border: 0;
  border-top: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Nav
   ============================================================ */

.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 0.8rem + 0.6vw, 1.6rem) var(--gutter);
  mix-blend-mode: difference;
}

.site-nav .wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--bone);
}

.site-nav .wordmark span { color: var(--brass); }

.nav-links {
  display: none;
  gap: clamp(1.2rem, 1rem + 1vw, 2.4rem);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 780px) {
  .nav-links { display: flex; }
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--bone);
  transition: right var(--dur-med) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
}
@media (min-width: 780px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-in-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
}
.mobile-menu .meta { margin-top: 2rem; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--brass);
  color: var(--bone);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--brass); color: var(--ink); }

.btn-solid {
  background: var(--brass);
  color: var(--ink);
}
.btn-solid:hover { background: var(--bone); border-color: var(--bone); }

.btn-ghost {
  border-color: var(--line);
  color: var(--fog);
}
.btn-ghost:hover { border-color: var(--bone); color: var(--bone); background: none; }

/* ============================================================
   Hero + "developing" reveal (signature motion)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-frame {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 20%, rgba(180,137,79,0.10), transparent 60%),
    linear-gradient(180deg, #1c1e15 0%, #14150f 55%, #0e0f0a 100%);
}

.hero-photo {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  height: 130%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: transform;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.hero-photo.is-loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo { top: 0; height: 100%; }
}

.hero-frame::before {
  /* film grain texture, drawn not photographed */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-frame::after {
  /* scrim so the headline stays legible over any photo, regardless
     of how bright or busy the bottom of that photo happens to be */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,15,10,0) 35%, rgba(14,15,10,0.55) 72%, rgba(14,15,10,0.88) 100%);
  pointer-events: none;
}

.hero-frame.developing {
  filter: blur(18px) contrast(0.7) brightness(0.55) saturate(0.5);
  transform: scale(1.04);
  transition: filter 2.4s var(--ease-out), transform 2.4s var(--ease-out);
}
.hero-frame.developed {
  filter: blur(0) contrast(1) brightness(1) saturate(1);
  transform: scale(1);
}

.hero-content {
  position: relative;
  padding: var(--gutter);
  padding-top: clamp(6rem, 5rem + 4vw, 8rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 5rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.1s var(--ease-out) 0.9s, transform 1.1s var(--ease-out) 0.9s;
}
.hero-content.is-visible { opacity: 1; transform: translateY(0); }

.hero-content h1 {
  font-size: var(--text-hero);
  max-width: 18ch;
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
  gap: 1rem;
  flex-wrap: wrap;
}

.frame-counter {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--fog);
  letter-spacing: 0.08em;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}
.scroll-cue .line {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--brass), transparent);
  animation: scrollcue 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Reveal-on-scroll utility
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   Plate — a photo placeholder that reads as a print, not a broken image
   ============================================================ */

.plate {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #4a4f3c 0%, #34372a 45%, #211f16 100%);
  aspect-ratio: var(--ar, 4/5);
  box-shadow: inset 0 0 0 1px rgba(237,230,214,0.06);
}
.plate::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(120% 90% at 12% 0%, rgba(180,137,79,0.38), transparent 55%),
    radial-gradient(110% 85% at 88% 100%, rgba(90,102,74,0.55), transparent 62%),
    radial-gradient(140% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.plate::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.6;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.plate img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.plate img.is-loaded { opacity: 1; }

.plate-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.plate-num {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--brass);
}

/* ============================================================
   Scroll hero — clip-path reveal that expands to fill the screen
   as the section scrolls past, with a slow background zoom-out.
   Vanilla port of a scroll-linked hero effect; no framer-motion.
   ============================================================ */

.scroll-hero {
  position: relative;
  width: 100%;
  height: calc(var(--scroll-height, 1500px) + 100vh);
}

.scroll-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* The clip-path lives on this inner wrapper, not on .scroll-hero-sticky
   itself, so the headline (a plain sibling below) can sit inside the
   same sticky frame without being clipped along with the photo. */
.scroll-hero-clip {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #4a4f3c 0%, #34372a 45%, #211f16 100%);
  will-change: clip-path;
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
}

.scroll-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 170%;
}
.scroll-hero-bg--mobile { display: block; }
.scroll-hero-bg--desktop { display: none; }
@media (min-width: 768px) {
  .scroll-hero-bg--mobile { display: none; }
  .scroll-hero-bg--desktop { display: block; }
}

.scroll-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.scroll-hero-caption {
  position: absolute;
  left: var(--gutter);
  bottom: var(--gutter);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Headline overlay is a plain sibling of .scroll-hero-clip inside the
   same .scroll-hero-sticky frame, so it shares that one sticky anchor
   instead of being an independent sticky element further down in
   normal flow (which would only start sticking a full viewport-height
   late, out of sync with the photo). Not clipped, so it reads clearly
   the whole time instead of being revealed along with the photo. */
.scroll-hero-headline {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: var(--gutter);
  pointer-events: none;
}
.scroll-hero-headline h2 {
  font-size: var(--text-3xl);
  line-height: 1.18;
  max-width: 36ch;
  color: var(--bone);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hero { height: 100vh; }
  .scroll-hero-sticky { position: relative; }
  .scroll-hero-clip { position: relative; clip-path: none !important; }
  .scroll-hero-headline { position: relative; padding-top: clamp(2rem, 4vw, 3.5rem); }
  .scroll-hero-bg { background-size: cover !important; }
}

/* ============================================================
   Portfolio grid
   ============================================================ */

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .contact-sheet { grid-template-columns: repeat(3, 1fr); }
}
.contact-sheet .plate { background-color: var(--ink); }
.contact-sheet figure {
  position: relative;
  background: var(--ink);
}
.contact-sheet a { display: block; }
.contact-sheet .plate {
  transition: transform var(--dur-med) var(--ease-out), filter var(--dur-med) var(--ease-out);
}
.contact-sheet a:hover .plate {
  transform: scale(1.015);
  filter: brightness(1.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-row button {
  color: var(--fog);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
}
.filter-row button.is-active,
.filter-row button:hover {
  color: var(--bone);
  border-color: var(--brass);
}

/* ============================================================
   Cards — collections / journal
   ============================================================ */

.card {
  border: 1px solid var(--line);
  background: var(--ink-3);
  padding: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.card-featured { border-color: var(--brass); }

.card .price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--bone);
  margin-top: auto;
}
.card .price small {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--fog);
  display: block;
  margin-top: 0.3rem;
}

.card ul.spec { display: flex; flex-direction: column; gap: 0.55rem; }
.card ul.spec li {
  font-size: var(--text-sm);
  color: var(--bone-dim);
  padding-left: 1.1rem;
  position: relative;
}
.card ul.spec li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px;
  background: var(--brass);
}

/* ============================================================
   Journal
   ============================================================ */

.journal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2rem;
  padding-block: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
  border-top: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 720px) {
  .journal-row { grid-template-columns: 8rem 1fr auto; }
}
.journal-row:last-child { border-bottom: 1px solid var(--line); }
.journal-row h3 { font-size: var(--text-lg); font-weight: 460; transition: color var(--dur-fast); }
.journal-row a:hover h3 { color: var(--brass); }

/* ============================================================
   Forms
   ============================================================ */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.1rem;
  color: var(--bone);
  transition: border-color var(--dur-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--brass); outline: none; }
.field textarea { resize: vertical; min-height: 7rem; }
.field select option { background: var(--ink-3); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  background: var(--ink-2);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer .wordmark {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: var(--bone-dim); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--brass); }
.footer-bottom {
  margin-top: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--fog);
  letter-spacing: 0.04em;
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */

.page-hero {
  padding-top: clamp(7rem, 6rem + 4vw, 10rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: var(--text-3xl); max-width: 20ch; margin-top: 0.75rem; }

/* misc */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.75rem}.mt-4{margin-top:2.5rem}.mt-6{margin-top:4rem}
.text-center{text-align:center}
.mx-auto{margin-inline:auto}

/* ============================================================
   Gallery scroll — 3D tilt-into-view column gallery. Vanilla
   port of a Framer Motion scroll-linked effect: rotateX + scale
   the whole grid in as you scroll, then let the three columns
   drift apart at slightly different rates. No motion/react, no
   dependency — same rAF scroll-progress pattern used elsewhere.
   ============================================================ */

.gallery-scroll {
  position: relative;
  height: 300vh;
}

.gallery-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: center 30%;
  background: var(--ink);
}

.gallery-scroll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  width: min(88vw, 1200px);
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(75deg) scale(1.2);
}

.gallery-scroll-col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  will-change: transform;
}
.gallery-scroll-col[data-gallery-col="2"] { margin-top: clamp(-6rem, -10vw, -3rem); }

.gallery-scroll-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

@media (max-width: 720px) {
  .gallery-scroll-grid { grid-template-columns: repeat(2, 1fr); width: 92vw; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-scroll { height: auto; }
  .gallery-scroll-sticky { position: relative; height: auto; perspective: none; padding: var(--gutter) 0; }
  .gallery-scroll-grid { transform: none; }
  .gallery-scroll-col { transform: none; }
  .gallery-scroll-col[data-gallery-col="2"] { margin-top: 0; }
}
