/*
  Bearbeitbare Gestaltung der Website.
  Menü-Unterstrich: Suche nach ".desktop-nav a::after".
*/

:root {
  --paper: #f1eadf;
  --paper-light: #f8f4ec;
  --ink: #181817;
  --muted: #6b685f;
  --line: rgba(24, 24, 23, 0.2);
  --orange: #ed5a2d;
  --pink: #ad3c85;
  --violet: #713168;
  --violet-deep: #4c224d;
  --acid: #c8d84e;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  max-width: 1500px;
  padding: 22px clamp(22px, 4vw, 64px);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20;
}

.wordmark {
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1;
  width: max-content;
}

.wordmark span {
  color: var(--pink);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 50px);
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  background: var(--violet);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(241, 234, 223, 0.76), rgba(241, 234, 223, 0.82)),
    url("/acrylic-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: min(860px, 100vh);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  margin: 0 auto;
  max-width: 1500px;
  min-height: min(860px, 100vh);
  padding: 126px clamp(22px, 5.5vw, 88px) 68px;
  position: relative;
  width: 100%;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  padding-bottom: 28px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.17em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 30px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(66px, 7.8vw, 125px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
  margin: 0;
  white-space: nowrap;
}

.hero h1 em,
.contact h2 em {
  color: var(--pink);
  font-weight: 400;
}

.hero-intro {
  color: #48453f;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  margin: 45px 0 36px;
  max-width: 530px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 30px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 34px;
  justify-content: center;
  letter-spacing: 0.11em;
  padding: 18px 24px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.button-dark:hover {
  background: var(--violet);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 0 8px;
}

.hero-art {
  align-items: center;
  align-self: center;
  display: flex;
  height: min(690px, 77vh);
  justify-content: center;
  min-height: 570px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.hero-canvas {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  box-shadow:
    0 34px 70px rgba(55, 35, 43, 0.19),
    0 8px 22px rgba(55, 35, 43, 0.11),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  margin: 0;
  padding: clamp(11px, 1.4vw, 18px);
  -webkit-backdrop-filter: blur(10px);
  width: min(58%, 320px);
}

.hero-canvas img {
  border-radius: 7px;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.section-shell {
  margin: 0 auto;
  max-width: 1500px;
  padding-left: clamp(22px, 5.5vw, 88px);
  padding-right: clamp(22px, 5.5vw, 88px);
}

.works,
.exhibitions {
  padding-bottom: 130px;
  padding-top: 150px;
}

.works {
  padding-top: clamp(62px, 7vw, 96px);
}

.works .section-heading {
  display: block;
  max-width: 920px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.about h2,
.studio-strip h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
}

.section-heading > p,
.studio-strip > div > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 440px;
}

.gallery-filters {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 13px;
}

.gallery-filters button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--ink);
  color: var(--paper-light);
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
  display: block;
}

.work-card {
  background: #d8d2c9;
  border: 0;
  break-inside: avoid;
  cursor: zoom-in;
  display: inline-block;
  margin: 0 0 18px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.work-card img {
  height: auto;
  object-fit: contain;
  transition: filter 300ms ease;
  width: 100%;
}

.work-card:hover img {
  filter: saturate(1.12);
}

.work-overlay {
  align-items: end;
  background: linear-gradient(transparent 50%, rgba(12, 12, 10, 0.86));
  bottom: 0;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  padding: 60px 18px 17px;
  position: absolute;
  right: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.work-card:hover .work-overlay,
.work-card:focus-visible .work-overlay {
  opacity: 1;
  transform: none;
}

.work-overlay strong,
.work-overlay small {
  display: block;
}

.work-overlay strong {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.work-overlay small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 3px;
  text-transform: uppercase;
}

.work-overlay b {
  font-size: 24px;
  font-weight: 400;
}

.lightbox {
  align-items: center;
  background: rgba(17, 16, 14, 0.95);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 70px 24px 24px;
  position: fixed;
  z-index: 100;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  max-width: min(1100px, 92vw);
}

.lightbox img {
  height: calc(100% - 60px);
  object-fit: contain;
  width: 100%;
}

.lightbox figcaption {
  align-items: center;
  color: white;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.lightbox figcaption strong {
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.lightbox figcaption span,
.lightbox-close {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 24px;
}

.quote-section {
  align-items: center;
  background: var(--violet-deep);
  background-image:
    linear-gradient(rgba(76, 34, 77, 0.74), rgba(76, 34, 77, 0.8)),
    url("/acrylic-texture.jpg");
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  overflow: hidden;
  padding: 90px 24px;
  position: relative;
  text-align: center;
}

.quote-mark {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 105px;
  height: 70px;
  line-height: 0.9;
}

.quote-section blockquote {
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 70px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 28px auto 35px;
  max-width: 1040px;
}

.quote-section blockquote em {
  color: var(--acid);
}

.quote-section > p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: 0.92fr 1.08fr;
  padding-bottom: 160px;
  padding-top: 160px;
}

.about-visual {
  min-height: 0;
  position: relative;
}

.about-image-wrap {
  background: transparent;
  clip-path: none;
  height: auto;
  overflow: visible;
  position: relative;
  transform: none;
  width: min(100%, 500px);
  z-index: 1;
}

.about-image-wrap img {
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.about-copy {
  max-width: 650px;
}

.about-copy .lead {
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.28;
  margin: 42px 0 24px;
}

.about-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 590px;
}

.about-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
}

.about-facts div {
  padding: 21px 20px 0 0;
}

.about-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-facts dd {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  margin: 0;
}

.studio-strip {
  background: var(--ink);
  background-image:
    linear-gradient(rgba(24, 24, 23, 0.84), rgba(24, 24, 23, 0.9)),
    url("/acrylic-texture.jpg");
  background-position: center;
  background-size: cover;
  color: var(--paper-light);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 630px;
}

.studio-strip > img {
  align-self: center;
  height: auto;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

.studio-strip > div {
  align-self: center;
  padding: 70px clamp(35px, 6vw, 95px);
}

.studio-strip h2 {
  margin-bottom: 34px;
}

.studio-strip > div > p {
  color: #bbb6ac;
  margin-bottom: 38px;
}

.button-light {
  background: var(--paper-light);
  color: var(--ink);
}

.button-light:hover {
  background: var(--violet);
  color: var(--paper-light);
}

.timeline {
  border-top: 1px solid var(--ink);
}

.timeline article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 130px 1fr 60px;
  padding: 34px 0 38px;
  transition: padding 180ms ease;
}

.timeline article:hover {
  padding-left: 16px;
  padding-right: 16px;
}

.timeline-year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 8px;
  text-transform: uppercase;
}

.timeline h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 690px;
}

.timeline-index {
  color: var(--pink);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  text-align: right;
}

.contact {
  padding-bottom: 90px;
}

.contact-card {
  background-color: var(--violet-deep);
  background-image:
    linear-gradient(rgba(76, 34, 77, 0.74), rgba(76, 34, 77, 0.82)),
    url("/acrylic-texture.jpg");
  background-position: center;
  background-size: cover;
  color: var(--paper-light);
  display: grid;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  padding: clamp(45px, 7vw, 100px);
  position: relative;
}

.contact h2 em {
  color: var(--paper-light);
}

.contact-copy {
  align-self: end;
  position: relative;
  z-index: 1;
}

.contact-copy > p {
  color: rgba(248, 244, 236, 0.82);
  margin-bottom: 35px;
}

.contact-mail {
  align-items: center;
  border-bottom: 2px solid var(--paper-light);
  display: flex;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-style: italic;
  justify-content: space-between;
  padding-bottom: 12px;
}

.contact-location {
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 17px 0 0 !important;
  text-transform: uppercase;
}

.memorial {
  align-items: center;
  background-color: #30202f;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(205, 89, 158, 0.3), transparent 30%),
    linear-gradient(105deg, rgba(38, 27, 39, 0.88), rgba(79, 35, 75, 0.82)),
    url("/acrylic-texture.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 55px rgba(49, 27, 46, 0.2);
  color: var(--paper-light);
  display: grid;
  gap: 45px;
  grid-template-columns: 0.45fr 1.55fr;
  margin: 0 clamp(22px, 5.5vw, 88px) 42px;
  min-height: 190px;
  overflow: visible;
  padding: 42px clamp(28px, 5vw, 76px);
  position: relative;
}

.memorial > * {
  position: relative;
  z-index: 1;
}

.memorial > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.memorial > span::before {
  background: #dc87bd;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 14px;
  width: 45px;
}

.memorial p {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: clamp(29px, 4vw, 54px);
  font-style: italic;
  gap: 0.2em;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}

.memorial strong {
  color: #f0b8da;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 2px 18px rgba(225, 116, 184, 0.22);
}

.memorial i {
  color: rgba(248, 244, 236, 0.78);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-left: 12px;
}

footer {
  align-items: center;
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr auto auto;
  margin: 0 auto;
  max-width: 1500px;
  padding: 30px clamp(22px, 5.5vw, 88px) 42px;
  width: 100%;
}

.footer-wordmark {
  font-size: 25px;
}

footer p,
footer > span,
footer nav a {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer nav a:hover {
  color: var(--ink);
}

footer .footer-credit {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(22px, 5.5vw, 88px);
}

.legal-back {
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.legal-content {
  background: rgba(248, 244, 236, 0.78);
  margin: clamp(32px, 6vw, 90px) auto;
  max-width: 960px;
  padding: clamp(28px, 6vw, 80px);
}

.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0 0 58px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 54px 0 20px;
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  margin: 34px 0 14px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #49463f;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-content ol,
.legal-content ul {
  padding-left: 22px;
}

.legal-content .legal-emphasis {
  border-left: 3px solid var(--violet);
  color: var(--ink);
  font-weight: 700;
  padding-left: 20px;
}

.legal-footer {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.legal-footer > a:last-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-footer > a:last-child:hover {
  color: var(--ink);
}

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(370px, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(64px, 8.6vw, 90px);
  }

  .gallery-grid {
    column-count: 3;
  }

  .about {
    gap: 65px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer nav,
  footer > span {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px 20px;
  }

  .desktop-nav {
    display: none;
  }

  .wordmark {
    font-size: 25px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding: 118px 20px 75px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(59px, 17vw, 78px);
    line-height: 0.85;
    white-space: normal;
  }

  .hero-intro {
    font-size: 16px;
    margin: 30px 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-art {
    height: 630px;
    margin-top: 65px;
    min-height: 630px;
  }

  .hero-canvas {
    width: min(72%, 300px);
  }

  .works,
  .exhibitions {
    padding-bottom: 90px;
    padding-top: 105px;
  }

  .works {
    padding-top: 66px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading > p {
    margin-top: 26px;
  }

  .section-heading h2,
  .about h2,
  .studio-strip h2,
  .contact h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .gallery-filters {
    margin-left: -4px;
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .gallery-filters button {
    white-space: nowrap;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 10px;
    display: block;
  }

  .work-card {
    margin-bottom: 10px;
  }

  .work-overlay {
    opacity: 1;
    padding: 50px 10px 10px;
    transform: none;
  }

  .work-overlay strong {
    font-size: 17px;
  }

  .work-overlay small,
  .work-overlay b {
    display: none;
  }

  .quote-section {
    min-height: 480px;
  }

  .about {
    display: block;
    padding-bottom: 110px;
    padding-top: 110px;
  }

  .about-visual {
    min-height: 0;
    padding-right: 0;
  }

  .about-image-wrap {
    height: auto;
  }

  .about-copy {
    margin-top: 70px;
  }

  .about-facts {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .about-facts div {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .studio-strip {
    display: block;
  }

  .studio-strip > img {
    height: auto;
  }

  .studio-strip > div {
    padding: 70px 22px 80px;
  }

  .timeline article {
    gap: 14px;
    grid-template-columns: 1fr auto;
    padding: 27px 0 31px;
  }

  .timeline article > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .timeline-index {
    font-size: 27px;
  }

  .contact {
    padding: 0 12px 65px;
  }

  .contact-card {
    display: block;
    padding: 50px 25px 60px;
  }

  .contact-copy {
    margin-top: 60px;
  }

  .contact-mail {
    align-items: start;
    font-size: 21px;
    gap: 10px;
  }

  .memorial {
    display: block;
    margin: 0 12px 34px;
    padding: 39px 25px 44px;
  }

  .memorial p {
    margin-top: 28px;
  }

  .memorial i {
    display: block;
    margin: 12px 0 0;
    width: 100%;
  }

  footer {
    display: flex;
    flex-direction: column;
    padding-bottom: 45px;
    text-align: center;
  }

  footer nav,
  footer > span {
    justify-self: auto;
  }

  .lightbox {
    padding-left: 14px;
    padding-right: 14px;
  }

  .lightbox figcaption span {
    display: none;
  }

  .legal-header {
    align-items: flex-start;
    gap: 22px;
  }

  .legal-back {
    line-height: 1.4;
    text-align: right;
  }

  .legal-content {
    margin: 18px 12px 50px;
  }

  .legal-footer {
    align-items: center;
    display: flex;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
