/* SET ESSENCE LLC — Commercial Interior Design */

:root {
  --bg: #0c0b0a;
  --bg-elevated: #141210;
  --surface: #1c1916;
  --text: #f5f0e8;
  --text-muted: #a89f92;
  --accent: #c9a962;
  --accent-dim: #8a7340;
  --line: rgba(201, 169, 98, 0.2);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(1200px, 92vw); margin-inline: auto; }

/* Grain & cursor */
.page-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 9997; transform: translate(-50%, -50%);
  transition: opacity 0.3s; opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  transition: transform 0.3s var(--ease-spring);
}
.logo-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--accent); font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.05em; color: var(--accent);
}
.logo-text { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--accent); transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem !important; border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  padding-bottom: 4rem; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-image: var(--bg); background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s linear;
}
.hero-slide.active {
  opacity: 1; transform: scale(1);
  animation: kenburns 12s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.4) 0%, rgba(12,11,10,0.75) 50%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 4rem); }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.5s; }
.hero-title .accent { color: var(--accent); font-style: italic; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero-sub { max-width: 520px; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 2rem; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: transform 0.3s var(--ease-spring), background 0.3s, color 0.3s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: #dfc07a; transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1px solid rgba(245,240,232,0.3); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--accent);
  display: block; line-height: 1;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.hero-scroll-hint {
  position: absolute; right: 2rem; bottom: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 60px; background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
/* Marquee */
.marquee-wrap {
  padding: 1.25rem 0; border-block: 1px solid var(--line);
  overflow: hidden; background: var(--bg-elevated);
}
.marquee {
  display: flex; gap: 2rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--text-muted);
  white-space: nowrap;
}
.marquee span:nth-child(odd) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }
.section-desc { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 3rem; }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}
.stack-img {
  position: absolute;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s var(--ease-out);
}
.stack-1 { width: 75%; height: 85%; top: 0; left: 0; z-index: 2; }
.stack-2 { width: 55%; height: 50%; bottom: 0; right: 0; z-index: 3; border: 3px solid var(--bg); }
.about-img-stack:hover .stack-1 { transform: translate(-8px, -8px); }
.about-img-stack:hover .stack-2 { transform: translate(8px, 8px); }
.float-badge {
  position: absolute; bottom: 20%; left: -1rem; z-index: 4;
  background: var(--accent); color: var(--bg); padding: 0.75rem 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.about-tags li {
  padding: 0.4rem 1rem; border: 1px solid var(--line); font-size: 0.75rem;
  letter-spacing: 0.05em; transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}
.about-tags li:hover {
  background: rgba(201,169,98,0.1); border-color: var(--accent); transform: scale(1.05);
}

/* Gallery */
.gallery { background: var(--bg-elevated); padding-bottom: 4rem; }
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; background: transparent; border: 1px solid var(--line);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}
.gallery-item.hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.06);
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(12, 11, 10, 0.92));
  pointer-events: none;
}
.gallery-caption h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
}
.gallery-caption p {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Showcase strip */
.showcase-strip {
  padding: 3rem 0; overflow: hidden; background: var(--bg);
}
.strip-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: stripScroll 40s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
@keyframes stripScroll {
  to { transform: translateX(-50%); }
}
.strip-card {
  flex-shrink: 0; width: 280px; position: relative; overflow: hidden; border-radius: 2px;
}
.strip-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.strip-card:hover img { transform: scale(1.1); }
.strip-card span {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(12,11,10,0.95));
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* Services accordion */
.services-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.service-panel {
  border: 1px solid var(--line); background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.service-panel.active { border-color: var(--accent); }
.service-header {
  width: 100%; display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 2rem; background: none; border: none; cursor: pointer; text-align: left;
}
.service-num { font-family: var(--font-display); color: var(--accent); font-size: 1.25rem; }
.service-header h3 { flex: 1; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.service-icon {
  width: 24px; height: 24px; position: relative;
}
.service-icon::before, .service-icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform 0.4s var(--ease-out);
}
.service-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.service-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.service-panel.active .service-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.service-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease-out);
}
.service-panel.active .service-body { max-height: 500px; }
.service-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
  padding: 0 2rem 2rem; align-items: start;
}
.service-inner img {
  border-radius: 2px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.service-inner p { color: var(--text-muted); margin-bottom: 1rem; }
.service-inner ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem; }
.service-inner li {
  font-size: 0.9rem; color: var(--text-muted); padding-left: 1rem;
  position: relative;
}
.service-inner li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}

/* Pricing */
.pricing { background: var(--bg-elevated); }
.pricing-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem !important; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.price-card {
  position: relative; padding: 2rem; background: var(--surface);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-8px); border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.price-card.featured { border-color: var(--accent); background: linear-gradient(135deg, var(--surface), rgba(201,169,98,0.08)); }
.price-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--bg); padding: 0.25rem 0.75rem;
}
.price-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.price-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.75rem; }
.price-range {
  font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem;
  font-family: var(--font-display);
}
.price-ideal, .price-card ul li { font-size: 0.85rem; color: var(--text-muted); }
.price-card ul li { margin-bottom: 0.35rem; padding-left: 1rem; position: relative; }
.price-card ul li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.shimmer::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,0.08), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Why */
.why { position: relative; overflow: hidden; }
.why-bg {
  position: absolute; inset: 0;
  background: url("../images/hero-luxury.jpg") center/cover;
  opacity: 0.12;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative;
}
.why-card {
  padding: 2rem; background: rgba(28,25,22,0.8); border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-6px) rotate(-0.5deg); border-color: var(--accent);
}
.why-card span {
  font-family: var(--font-display); font-size: 2rem; color: var(--accent); opacity: 0.5;
  display: block; margin-bottom: 0.75rem;
}
.why-card h3 { font-size: 1rem; font-weight: 400; line-height: 1.5; }

/* Area */
.area-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.area-list li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.35rem;
  transition: padding-left 0.3s, color 0.3s;
}
.area-list li:hover { padding-left: 1rem; color: var(--accent); }
.area-map {
  position: relative; aspect-ratio: 4/3; background: var(--surface);
  border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
}
.area-map::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 45%, rgba(201,169,98,0.15), transparent 60%);
}
.map-pulse {
  position: absolute; left: 52%; top: 42%; width: 120px; height: 120px;
  transform: translate(-50%, -50%); border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 3s ease-out infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
.map-dot {
  position: absolute; left: var(--x); top: var(--y);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transform: translate(-50%, -50%);
  animation: dotBlink 2s ease-in-out infinite;
}
.map-dot::before {
  content: ""; display: block; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; margin: 0 auto 0.25rem;
}
@keyframes dotBlink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Contact */
.contact-block {
  text-align: center;
  max-width: 900px;
}
.contact-lead {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-style: normal;
  text-align: left;
  margin-bottom: 2rem;
}
.contact-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.contact-card a {
  color: var(--text);
  transition: color 0.3s;
}
.contact-card a:hover {
  color: var(--accent);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.contact-actions.center {
  display: flex;
}

/* Disclaimer & footer */
.disclaimer {
  padding: 3rem 0; border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}
.disclaimer h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--text-muted); }
.disclaimer p, .disclaimer li { font-size: 0.85rem; color: var(--text-muted); }
.disclaimer ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 2rem; margin-top: 1rem; }
.disclaimer li::before { content: "× "; color: #c45c5c; }
.footer {
  padding: 2rem 0; border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer a:hover { color: var(--accent); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(12,11,10,0.95); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-height: 75vh; max-width: 90vw; object-fit: contain;
  transform: scale(0.9); transition: transform 0.5s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox-caption { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--accent); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  font-size: 2.5rem; color: var(--text); cursor: pointer; line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .area-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .disclaimer ul { grid-template-columns: 1fr; }
  .cursor-glow { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
