@font-face {
  font-family: "Lexend";
  src: url("/fonts/Lexend-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fcfffe;
  --text: #1a1919;
  --accent: #9d2121;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family:
    "Lexend",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.site-header {
  width: 100%;
  max-width: 100vw;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 9000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(10px, 1.4vw, 14px) clamp(12px, 1.6vw, 16px);
  background: rgba(252, 255, 254, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  min-width: 0;
  border-radius: 10px;
  padding-right: clamp(10px, 2vw, 2rem);
  position: relative;
  overflow: hidden;
  flex: 0 1 auto;
}

.site-header__left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

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

.site-header__logo img {
  display: block;
  width: clamp(52px, 7vw, 120px);
  height: clamp(52px, 7vw, 120px);
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.site-header__brand {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  font-size: clamp(1.8rem, 3.2vw, 5rem);
  line-height: 1;
}

.site-header__nav {
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.2vw, 28px);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  position: relative;
}

.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

.nav__link,
.nav__toggle {
  position: relative;
  z-index: 1;
  font: inherit;
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.2vw, 10px);
  cursor: pointer;
  white-space: nowrap;
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transform-origin: center;
  transition:
    transform 220ms ease,
    text-shadow 220ms ease,
    filter 220ms ease,
    color 220ms ease;
}

.nav__link:hover,
.nav__toggle:hover {
  transform: scale(1.06);
  text-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor;
}

.nav__item--dropdown {
  position: relative;
}

.subnav {
  position: absolute;
  top: calc(100% + 10px);
  min-width: 220px;
  max-width: min(86vw, 300px);
  list-style: none;
  margin-top: 0;
  padding: 10px;
  border-radius: 14px;
  background-image: url("/assets/images/studio-tupos-art.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
  pointer-events: none;
}

.subnav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.subnav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.nav__item--dropdown.is-open .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s;
  pointer-events: auto;
}

.subnav__item {
  position: relative;
  z-index: 1;
}

.subnav__link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
}

.subnav__link:hover {
  background: rgba(255, 255, 255, 0.38);
}

.site-nav--mobile {
  display: none;
}

.site-nav--desktop {
  display: block;
}

@media (max-width: 1024px) {
  .site-nav--desktop {
    display: none;
  }

  .site-nav--mobile {
    display: block;
  }

  .site-header {
    position: sticky;
    top: 1rem;
    z-index: 6000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before {
    border-radius: 0;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 50px;
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    z-index: 6001;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 6px 10px !important;
    background: rgba(252, 255, 254, 0.18);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 0;
    box-shadow: none;
  }

  .site-header__left {
    background-image: none;
    padding-right: 0;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .site-header__left::before {
    content: none;
  }

  .site-header__logo img {
    width: 46px;
    height: 46px;
  }

  .site-header__brand {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    line-height: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .nav-toggle__icon {
    width: 28px;
    height: 18px;
    position: relative;
    display: block;
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after,
  .nav-toggle__icon span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    border-radius: 999px;
  }

  .nav-toggle__icon::before {
    top: 0;
  }

  .nav-toggle__icon span {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle__icon::after {
    bottom: 0;
  }

  .nav-drawer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    pointer-events: none;
  }

  .nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 420px);
    max-width: 100%;
    background:
      linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
      url("/assets/images/studio-tupos-art.jpg") center / cover no-repeat;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  }

  .nav-drawer__header,
  .nav-drawer__links {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 10px;
  }

  .nav-drawer__close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
  }

  .nav-drawer__close::before,
  .nav-drawer__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 999px;
  }

  .nav-drawer__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-drawer__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-drawer__links {
    list-style: none;
    margin: 0;
    padding: 18px 18px calc(env(safe-area-inset-bottom, 0px) + 18px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav-drawer__links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    padding: 12px 0;
    display: block;
  }

  .drawer-acc__toggle {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 12px 0;
    font: inherit;
    color: #000;
    font-weight: 600;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .drawer-acc__toggle::after {
    content: "+";
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .drawer-acc.is-open .drawer-acc__toggle::after {
    content: "–";
  }

  .drawer-acc__panel {
    list-style: none;
    margin: 0;
    padding: 6px 0 6px 14px;
    display: grid;
    gap: 10px;
  }

  .drawer-acc__panel[hidden] {
    display: none;
  }

  .drawer-acc__panel a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    padding: 10px 0;
    display: block;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body.nav-open .nav-drawer {
    pointer-events: auto;
  }

  body.nav-open .nav-drawer__backdrop {
    opacity: 1;
  }

  body.nav-open .nav-drawer__panel {
    transform: translateX(0);
  }
}

.site-footer {
  min-height: 80dvh;
  background: var(--text);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  justify-self: stretch;
}

.site-footer__grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.site-footer__left {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  justify-self: stretch;
  display: block;
}

.site-footer__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 40px;
}

.site-footer__middle {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: 3rem;
  padding: clamp(18px, 4vw, 56px) 0;
}

.site-footer__middle a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer__shop {
  text-decoration: underline !important;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.site-footer__email {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer__shop {
  font-size: 3rem;
  font-weight: 300;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  text-emphasis: none;
  text-decoration: none;
}

.site-footer__navlink {
  font-size: 2rem;
  opacity: 0.92;
  text-decoration: none;
  display: inline-block;
  transform-origin: center;
  transition:
    transform 180ms ease,
    font-weight 180ms ease;
  will-change: transform;
}

.site-footer__navlink:hover,
.site-footer__navlink:focus-visible {
  transform: scale(1.06);
  font-weight: 700;
}

.site-footer__local {
  width: 100%;
  margin: 0;
  padding: 18px clamp(18px, 4vw, 56px) 0;
  display: flex;
  gap: 3.5rem;
  justify-content: flex-end;
  align-items: center;
}

.site-footer__local-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 2rem;
  opacity: 0.9;
  display: inline-block;
  transform-origin: left center;
  transition:
    transform 180ms ease,
    font-weight 180ms ease;
}

.site-footer__local-link:hover,
.site-footer__local-link:focus-visible {
  transform: scale(1.06);
  font-weight: 700;
}

.site-footer__bottom {
  width: 100%;
  margin: 0;
  padding: 18px 0 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  opacity: 0.78;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__left {
    width: min(560px, 100%);
    justify-self: start;
  }

  .site-footer__middle,
  .site-footer__right {
    align-content: start;
    padding-top: 10px;
  }

  .site-footer__bio {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__headshot {
    width: min(360px, 100%);
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

.site-footer__shop,
.site-footer__local-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.site-footer__shop::after,
.site-footer__local-link::after {
  content: "";
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transform: translateY(0.22em);
}

@media (max-width: 1024px) {
  .site-footer {
    grid-template-rows: 1fr auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    text-align: center;
    width: 100%;
  }

  .site-footer__middle {
    order: 1;
    width: 100%;
    padding: clamp(18px, 4vw, 40px) clamp(18px, 4vw, 56px) 0;
    gap: 18px;
    justify-items: center;
  }

  .site-footer__email {
    order: 1;
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.05;
    text-align: center;
  }

  .site-footer__shop {
    order: 2;
    font-size: clamp(20px, 5.6vw, 34px);
    text-align: center;
  }

  .site-footer__links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
  }

  .site-footer__navlink {
    font-size: clamp(18px, 4.8vw, 26px);
  }

  .site-footer__left {
    order: 4;
    width: min(420px, 92%);
    justify-self: center;
  }

  .site-footer__local {
    order: 5;
    width: 100%;
    padding: clamp(18px, 4vw, 34px) clamp(18px, 4vw, 56px) 0;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .site-footer__local-link {
    font-size: clamp(18px, 4.8vw, 26px);
    transform-origin: center;
  }

  .site-footer__bottom {
    order: 6;
    padding: 18px 0 22px;
    text-align: center;
  }
}

.media-split {
  width: 100%;
  padding: clamp(48px, 7vw, 90px) 0;
}

.media-split__grid {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: stretch;
}

.media-split__content {
  min-width: 0;
  text-align: right;
  display: grid;
  align-content: center;
}

.media-split__content h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.media-split__content p {
  margin: 0 0 12px;
  max-width: 58ch;
  margin-left: auto;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
}

.media-split__content p:last-child {
  margin-bottom: 0;
}

.media-split__card {
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: auto;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  align-self: center;
}

.media-split__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.media-split--left .media-split__grid {
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
}

.media-split--left .media-split__content {
  text-align: left;
}

.media-split--left .media-split__content p {
  margin-left: 0;
  margin-right: auto;
}

.media-split--left .media-split__card {
  justify-self: start;
}

.media-split__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
}

.media-split__cta::after {
  content: "";
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transform: translateY(0.22em);
}

@media (max-width: 1024px) {
  .media-split__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .media-split__card {
    order: 1;
    justify-self: center;
    width: 100%;
    max-width: min(560px, 100%);
    aspect-ratio: auto;
  }

  .media-split__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .media-split__content {
    order: 2;
    text-align: center;
    align-content: start;
  }

  .media-split__content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 65ch;
  }

  .media-split--left .media-split__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .media-split--left .media-split__card {
    order: 1;
    justify-self: center;
    width: 100%;
    max-width: min(560px, 100%);
    aspect-ratio: auto;
  }

  .media-split--left .media-split__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .media-split--left .media-split__content {
    order: 2;
    text-align: left;
    align-content: start;
  }

  .media-split--left .media-split__content p {
    margin-left: 0;
    margin-right: auto;
    max-width: 65ch;
  }
}

@media (max-width: 1024px), (orientation: portrait) {
  .media-split__content {
    text-align: left;
    justify-self: center;
    width: 100%;
    max-width: min(560px, 100%);
    margin: 0 auto;
  }

  .media-split__content p {
    margin-left: 0;
    margin-right: 0;
    max-width: 65ch;
  }

  .media-split__cta {
    align-self: start;
  }

  .media-split--left .media-split__content {
    text-align: left;
    justify-self: center;
    width: 100%;
    max-width: min(560px, 100%);
    margin: 0 auto;
  }

  .media-split--left .media-split__content p {
    margin-left: 0;
    margin-right: 0;
    max-width: 65ch;
  }

  .media-split--left .media-split__cta {
    align-self: start;
  }
}

.photo-grid {
  width: 100%;
  padding: clamp(56px, 7vw, 100px) 0;
  background-color: var(--text);
  z-index: 0;
}

.photo-grid__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.photo-grid__head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto clamp(18px, 3vw, 36px);
}

.photo-grid__head h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 2rem;
  color: var(--bg);
}

.photo-grid__head p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
  opacity: 0.92;
  color: var(--bg);
  text-align: justify;
  text-align-last: center;
}

.photo-grid__head p + p {
  margin-top: 12px;
}

.photo-grid__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  color: var(--bg);
}

.photo-grid__cta::after {
  content: "";
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transform: translateY(0.22em);
}

.photo-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}

.photo-grid__tile {
  margin: 0;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
}

.photo-grid__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 800px) {
  .photo-grid__inner {
    width: min(1100px, calc(100% - 32px));
  }

  .photo-grid__tile {
    width: min(260px, 100%);
  }
}
