:root {
  --bg: #070809;
  --panel: #111315;
  --panel-soft: #191c1f;
  --text: #f7f3ec;
  --muted: rgba(247,243,236,.68);
  --quiet: rgba(247,243,236,.45);
  --line: rgba(247,243,236,.12);
  --blue: #b9dcff;
  --gold: #dcc778;
  --glass: rgba(24,27,30,.62);
  --shadow: 0 26px 86px rgba(0,0,0,.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -10%, rgba(185,220,255,.12), transparent 30%),
    radial-gradient(circle at 14% 24%, rgba(220,199,120,.1), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid rgba(185,220,255,.88);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: #e9f4ff;
  color: #101418;
  padding: 10px 14px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.app-frame {
  min-height: 100vh;
  padding-bottom: 94px;
}
.app-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  width: min(1120px, calc(100% - 20px));
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 28px;
  background: rgba(14,16,18,.72);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(24px) saturate(1.18);
  transition: transform .34s ease, opacity .34s ease;
}
.app-header.hidden { transform: translateY(-96px); opacity: .18; }
.brand-mark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}
.desktop-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.desktop-nav::-webkit-scrollbar,
.snap-row::-webkit-scrollbar { display: none; }
.desktop-nav a,
.lang-switch,
.chip-row span,
.chip-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,243,236,.08);
  border-radius: 999px;
  background: rgba(247,243,236,.045);
  color: rgba(247,243,236,.66);
  padding: 0 14px;
  white-space: nowrap;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.lang-switch:hover,
.chip-row span:first-child,
.chip-row a:first-child,
.chip-row a:hover {
  color: var(--text);
  background: rgba(247,243,236,.13);
  border-color: rgba(247,243,236,.16);
  transform: translateY(-1px);
}
.lang-switch {
  justify-self: end;
  color: var(--gold);
  cursor: pointer;
}

#app { outline: 0; }
.home-screen {
  width: min(1120px, calc(100% - 20px));
  margin: 28px auto 0;
}
.wide-feature,
.detail-hero {
  min-height: min(760px, calc(100svh - 124px));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247,243,236,.12);
  border-radius: var(--radius-xl);
  background: #0c0d0f;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.wide-feature::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,8,9,.92), rgba(7,8,9,.36) 62%, rgba(7,8,9,.74)),
    linear-gradient(to top, rgba(7,8,9,.9), transparent 42%);
  pointer-events: none;
}
.wide-visual,
.detail-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wide-visual img,
.wide-visual video,
.detail-visual img,
.detail-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(.98) contrast(1.05);
  transform: scale(1.02);
  animation: visualBreath 20s ease-in-out infinite alternate;
}
.wide-copy,
.detail-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 6vw, 72px);
}
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}
h1 { max-width: 880px; font-size: clamp(52px, 9vw, 118px); }
h2 { font-size: clamp(32px, 6vw, 76px); }
h3 { font-size: clamp(22px, 5vw, 34px); }
.wide-copy > p:not(.eyebrow),
.detail-copy > p:not(.eyebrow),
.story-card h2,
.results-panel h2,
.contact-panel h2,
.page-hero h1 {
  color: rgba(247,243,236,.82);
}
.wide-copy > p:not(.eyebrow),
.detail-copy > p:not(.eyebrow) {
  max-width: 650px;
  line-height: 1.7;
  font-size: 17px;
}
.feature-now {
  width: max-content;
  max-width: min(100%, 620px);
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(247,243,236,.13);
  border-radius: 999px;
  background: rgba(8,9,10,.34);
  backdrop-filter: blur(14px);
  color: rgba(247,243,236,.74);
  padding: 0 13px;
  font-size: 13px;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.primary-action,
.secondary-action,
.floating-action,
.service-tile a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 999px;
  padding: 0 17px;
  color: var(--text);
  background: rgba(247,243,236,.12);
  backdrop-filter: blur(14px);
  font-weight: 780;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.primary-action {
  background: #e9f4ff;
  color: #101418;
  border-color: #e9f4ff;
}
.secondary-action.saved,
.save-button.saved {
  background: rgba(220,199,120,.24);
  border-color: rgba(220,199,120,.4);
  color: var(--gold);
}
.primary-action:hover,
.secondary-action:hover,
.floating-action:hover,
.service-tile a:hover {
  transform: translateY(-2px);
  background: rgba(247,243,236,.18);
}
.primary-action:hover { background: #fff; }
.peek-card {
  width: min(760px, calc(100% - 26px));
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 24px;
  background: rgba(16,18,21,.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
  padding: 18px;
}
.peek-card span,
.shelf-head p,
.detail-card span,
.story-card .eyebrow,
.process-panel > .eyebrow,
.results-panel .eyebrow,
.contact-panel .eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.peek-card strong {
  color: rgba(247,243,236,.78);
  line-height: 1.5;
}

.stats-strip,
.detail-grid {
  width: min(1120px, calc(100% - 20px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 24px;
  background: rgba(247,243,236,.08);
}
.stats-strip div,
.detail-card {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 16px;
  background: rgba(17,19,21,.7);
}
.stats-strip span,
.detail-card span {
  color: var(--quiet);
  font-size: 12px;
}
.stats-strip strong,
.detail-card strong {
  color: var(--text);
  line-height: 1.28;
}

.shelf,
.service-grid,
.story-stack,
.process-panel,
.gallery-panel,
.results-panel,
.contact-panel,
.page-hero {
  width: min(1120px, calc(100% - 20px));
  margin: 34px auto 0;
}
.shelf-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.shelf-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shelf-actions button,
.shelf-head a,
.shelf-head span {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 999px;
  background: rgba(247,243,236,.055);
  color: var(--muted);
  font-size: 13px;
  padding: 0 12px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.shelf-actions button:hover,
.shelf-head a:hover {
  color: var(--text);
  background: rgba(247,243,236,.12);
  transform: translateY(-1px);
}
.snap-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 31%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 18px;
  scrollbar-width: none;
}
.project-tile {
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(22,24,27,.76);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.project-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(185,220,255,.28);
  box-shadow: var(--shadow);
}
.project-tile a {
  display: grid;
  min-height: 100%;
}
.tile-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0f1113;
}
.tile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,8,9,.62), transparent 54%);
  pointer-events: none;
}
.tile-visual img,
.tile-visual video,
.mini-gallery img,
.gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform .72s ease, filter .72s ease;
}
.project-tile:hover .tile-visual img,
.project-tile:hover .tile-visual video {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.08);
}
.tile-copy {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.tile-copy p {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tile-copy h3 {
  font-size: 24px;
}
.tile-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.tile-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tile-meta small,
.tag-row small,
.tag-row span {
  border: 1px solid rgba(247,243,236,.09);
  border-radius: 999px;
  background: rgba(247,243,236,.045);
  color: rgba(247,243,236,.62);
  padding: 7px 9px;
  font-size: 11px;
  line-height: 1;
}
.tag-row.labelled {
  margin-top: 8px;
  align-items: center;
}
.tag-row.labelled span {
  color: var(--gold);
}
.save-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,243,236,.16);
  border-radius: 999px;
  background: rgba(8,9,10,.42);
  backdrop-filter: blur(16px);
  cursor: pointer;
}
.preview-pill,
.external-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 999px;
  background: rgba(8,9,10,.5);
  backdrop-filter: blur(15px);
  color: var(--text);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
}
.external-pill {
  left: auto;
  right: 12px;
  color: var(--blue);
}

.service-row { grid-auto-columns: minmax(260px, 32%); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-tile {
  scroll-snap-align: start;
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(185,220,255,.14), transparent 34%),
    rgba(20,22,25,.78);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  padding: 20px;
}
.service-tile span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
}
.service-tile p {
  color: var(--muted);
  line-height: 1.6;
}

.behind-panel {
  width: min(1120px, calc(100% - 20px));
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 30px;
  background: rgba(18,20,23,.74);
  box-shadow: var(--shadow);
  padding: 18px;
}
.behind-panel > div:first-child {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: clamp(12px, 3vw, 28px);
}
.behind-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 120px;
  gap: 8px;
}
.mini-gallery img {
  min-height: 0;
  border-radius: 18px;
}
.mini-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.page-hero {
  min-height: 42svh;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 54px 0 4px;
}
.page-hero.compact h1 {
  max-width: 850px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.studio-page {
  grid-template-columns: 1fr .78fr;
  gap: 18px;
  align-items: end;
}
.studio-page img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(247,243,236,.1);
}

.detail-hero {
  width: min(1120px, calc(100% - 20px));
  margin: 26px auto 0;
}
.floating-action {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  background: rgba(185,220,255,.92);
  color: #0b0f12;
}
.story-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.story-card,
.process-card,
.results-panel,
.contact-panel {
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 28px;
  background: rgba(18,20,23,.74);
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
  padding: clamp(20px, 4vw, 34px);
}
.story-card {
  display: grid;
  gap: 16px;
}
.story-card h2 {
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.08;
}
.process-panel {
  display: grid;
  gap: 12px;
}
.process-card {
  display: grid;
  grid-template-columns: .15fr .28fr 1fr;
  gap: 16px;
  align-items: start;
}
.process-card span,
.process-card h3 {
  color: var(--gold);
  text-transform: capitalize;
}
.process-card p {
  color: var(--muted);
  line-height: 1.6;
}
.gallery-row { grid-auto-columns: minmax(240px, 30%); }
.gallery-row img {
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
}
.results-panel {
  display: grid;
  gap: 14px;
}
.results-panel h2 {
  font-size: clamp(30px, 5vw, 68px);
  line-height: 1.08;
}
.contact-panel {
  margin-bottom: 38px;
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(185,220,255,.12), transparent 30%),
    rgba(18,20,23,.78);
}

.visual-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(105deg, transparent 28%, rgba(247,243,236,.09), transparent 68%),
    rgba(13,15,17,.72);
  transform: translateX(-100%);
  animation: shimmer 1.6s ease-in-out infinite;
  transition: opacity .36s ease;
}
[data-visual].ready .visual-loader {
  opacity: 0;
  animation-play-state: paused;
}
.visual-error {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 4;
  display: none;
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 999px;
  background: rgba(8,9,10,.68);
  color: rgba(247,243,236,.78);
  padding: 8px 11px;
  font-size: 12px;
}
[data-visual].failed .visual-loader { display: none; }
[data-visual].failed .visual-error { display: inline-flex; }
.visual-fallback {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background:
    radial-gradient(circle at 72% 16%, rgba(185,220,255,.12), transparent 32%),
    #101214;
}
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.99);
  filter: blur(8px);
  transition:
    opacity .62s ease var(--delay, 0ms),
    transform .62s ease var(--delay, 0ms),
    filter .62s ease var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.bottom-tabs {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 60;
  width: min(440px, calc(100% - 20px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border: 1px solid rgba(247,243,236,.12);
  border-radius: 26px;
  background: rgba(13,15,17,.78);
  backdrop-filter: blur(26px) saturate(1.2);
  box-shadow: 0 18px 70px rgba(0,0,0,.3);
  padding: 7px;
}
.bottom-tabs a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: rgba(247,243,236,.66);
  font-size: 13px;
}
.bottom-tabs a.active {
  color: var(--text);
  background: rgba(247,243,236,.12);
}
.empty-state,
.not-found {
  width: min(1120px, calc(100% - 20px));
  margin: 34px auto;
  border: 1px solid rgba(247,243,236,.1);
  border-radius: var(--radius-xl);
  background: rgba(18,20,23,.74);
  padding: clamp(24px, 5vw, 54px);
}
.contact-lines {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.contact-lines a:hover {
  color: var(--text);
}
.site-footer {
  width: min(1120px, calc(100% - 20px));
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(247,243,236,.1);
  color: var(--quiet);
  padding: 22px 0 0;
}
.site-footer div {
  display: flex;
  gap: 14px;
}
.site-footer a:hover {
  color: var(--text);
}

html[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", "Tajawal", var(--sans);
  text-align: right;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "IBM Plex Sans Arabic", "Tajawal", var(--sans);
  line-height: 1.12;
}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .tile-copy p,
html[dir="rtl"] .peek-card span,
html[dir="rtl"] .shelf-head p {
  letter-spacing: 0;
  text-transform: none;
}
html[dir="rtl"] .save-button {
  right: auto;
  left: 12px;
}
html[dir="rtl"] .floating-action {
  right: auto;
  left: 18px;
}
html[dir="rtl"] .preview-pill {
  left: auto;
  right: 12px;
}
html[dir="rtl"] .external-pill {
  right: auto;
  left: 12px;
}

@keyframes visualBreath {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.062) translate3d(-1%, .8%, 0); }
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}

@media (min-width: 920px) {
  .app-frame { padding-bottom: 30px; }
  .app-header {
    grid-template-columns: 1fr auto 1fr;
    border-radius: 999px;
    padding: 9px 14px;
  }
  .desktop-nav {
    grid-column: auto;
    justify-content: center;
  }
  .bottom-tabs { display: none; }
  .snap-row { grid-auto-columns: minmax(280px, 28%); }
  .service-row { grid-auto-columns: minmax(300px, 32%); }
}

@media (max-width: 760px) {
  .wide-feature,
  .detail-hero {
    min-height: calc(100svh - 136px);
  }
  .wide-feature::after,
  .detail-hero::after {
    background:
      linear-gradient(to top, rgba(7,8,9,.96), rgba(7,8,9,.48) 58%, rgba(7,8,9,.18)),
      linear-gradient(90deg, rgba(7,8,9,.84), transparent 70%);
  }
  .wide-copy,
  .detail-copy {
    padding: 24px 24px 164px;
  }
  h1 { font-size: clamp(44px, 13.5vw, 64px); }
  h2 { font-size: clamp(32px, 10vw, 48px); }
  .hero-actions .primary-action,
  .hero-actions .secondary-action,
  .contact-actions .primary-action,
  .contact-actions .secondary-action {
    width: 100%;
  }
  .peek-card { margin-top: -28px; }
  .stats-strip,
  .detail-grid,
  .story-stack,
  .studio-page,
  .behind-panel,
  .service-grid,
  .process-card {
    grid-template-columns: 1fr;
  }
  .snap-row {
    grid-auto-columns: minmax(238px, 78%);
  }
  .shelf-actions button {
    display: none;
  }
  .gallery-row {
    grid-auto-columns: minmax(220px, 72%);
  }
  .behind-panel { padding: 12px; }
  .mini-gallery {
    grid-auto-rows: 100px;
  }
  .floating-action {
    left: 18px;
    right: 18px;
    width: auto;
  }
  .site-footer {
    margin-bottom: 108px;
  }
}

@media (max-width: 430px) {
  .app-header {
    border-radius: 24px;
  }
  .desktop-nav a,
  .lang-switch {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }
  .home-screen,
  .shelf,
  .service-grid,
  .story-stack,
  .process-panel,
  .gallery-panel,
  .results-panel,
  .contact-panel,
  .page-hero,
  .detail-hero,
  .stats-strip,
  .detail-grid,
  .behind-panel {
    width: calc(100% - 16px);
  }
  .snap-row {
    gap: 10px;
    padding-inline: 1px;
  }
}

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