:root {
  color-scheme: light;
  --bg-color: #fefdfc;
  --bg: var(--bg-color);
  --ink: #1d1d1f;
  --muted: rgba(29, 29, 31, 0.62);
  --text-primary: #1d1d1f;
  --text-secondary: rgba(29, 29, 31, 0.68);
  --text-muted: rgba(29, 29, 31, 0.62);
  --text-label: rgba(29, 29, 31, 0.66);
  --line-soft: rgba(0, 0, 0, 0.05);
  --line-faint: rgba(0, 0, 0, 0.03);
  --control-ink: rgba(0, 0, 0, 0.75);
  --space-xs: 10px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --micro-size: 11px;
  --micro-track: 0.16em;
  --micro-weight: 600;
  --hero-track: 0.06em;
  --hero-weight: 600;
}

html,
body {
  background-color: var(--bg-color);
}

html {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 260ms ease;
}

.loading-bar {
  width: 48px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.loading-bar-fill {
  position: absolute;
  inset: 0;
  background: #000;
  animation: loading-bar 1.8s infinite ease-in-out;
}

@keyframes loading-bar {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

body.preset-ready .loading {
  opacity: 0;
  pointer-events: none;
}

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  border-radius: 0;
  background: #fbfaf7;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.045);
  transition:
    background 140ms ease-out,
    box-shadow 140ms ease-out,
    transform 140ms ease-out,
    opacity 140ms ease-out;
  overflow: hidden;
}

.bar::before {
  content: none;
}

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

#sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: max-content minmax(24px, 1fr) max-content minmax(24px, 1fr) max-content;
  align-items: center;
  height: 56px;
  padding: 0 clamp(16px, 3vw, 40px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

#sticky-nav.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-title {
  grid-column: 1;
  justify-self: start;
  font-size: 16px;
  letter-spacing: var(--micro-track);
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 220ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-title.hidden {
  opacity: 0;
}

.nav-layout-controls {
  grid-column: 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}

.nav-layout-controls.is-visible {
  visibility: visible;
  pointer-events: auto;
}

.layout-control-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  font-size: var(--micro-size);
  letter-spacing: var(--micro-track);
  text-transform: none;
  font-weight: 500;
  user-select: none;
  white-space: nowrap;
}

.layout-control-link {
  justify-content: center;
  line-height: 1;
}

.layout-cycle-button {
  position: relative;
  width: 148px;
  min-height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.76);
  cursor: pointer;
  text-transform: none;
  opacity: 1;
  transition: color 160ms ease, opacity 220ms ease;
}

.layout-cycle-button:hover {
  color: #000;
  opacity: 1;
}

.layout-cycle-button.is-active {
  color: #000;
}

.layout-cycle-button:focus-visible {
  outline: none;
  color: #000;
}

.layout-cycle-copy {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: baseline;
  gap: 6px;
  width: 100%;
  font-size: var(--micro-size);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.layout-cycle-label {
  color: rgba(0, 0, 0, 0.5);
}

.layout-cycle-value {
  color: currentColor;
  text-align: left;
}

.layout-switch-grid {
  position: relative;
  width: 63px;
  height: 63px;
  flex: 0 0 auto;
}

.layout-switch-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: 1.55px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    left 320ms cubic-bezier(0.22, 1, 0.36, 1),
    top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  pointer-events: none;
}

@media (max-width: 767px) {
  .layout-switch-grid {
    width: 57px;
    height: 57px;
  }
}

.nav-links {
  grid-column: 5;
  justify-self: end;
  user-select: none;
  min-width: 0;
  max-width: min(62vw, 980px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  margin-bottom: -8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links-panel {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  min-width: max-content;
  font-size: var(--micro-size);
  letter-spacing: var(--micro-track);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu-button {
  display: none;
  grid-column: 5;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(0, 0, 0, 0.82);
  box-shadow: 0 12px 26px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-menu-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  color: #000;
}

.nav-menu-button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 3px;
}

.nav-menu-icon {
  position: relative;
  width: 16px;
  height: 12px;
  display: block;
}

.nav-menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.nav-menu-icon span:nth-child(1) {
  top: 0;
}

.nav-menu-icon span:nth-child(2) {
  top: 5.25px;
}

.nav-menu-icon span:nth-child(3) {
  top: 10.5px;
}

.nav-menu-button.is-open .nav-menu-icon span:nth-child(1) {
  top: 5.25px;
  transform: rotate(45deg);
}

.nav-menu-button.is-open .nav-menu-icon span:nth-child(2) {
  opacity: 0;
}

.nav-menu-button.is-open .nav-menu-icon span:nth-child(3) {
  top: 5.25px;
  transform: rotate(-45deg);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.nav-link:hover {
  color: rgba(0, 0, 0, 0.82);
}

.nav-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  gap: 0;
}

.nav-link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.nav-link-icon svg * {
  vector-effect: non-scaling-stroke;
}

.instagram-label {
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: rgba(246, 243, 238, 0.94);
  backdrop-filter: blur(12px) saturate(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.02);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 0s;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: default;
}

.mobile-menu-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
  padding: calc(env(safe-area-inset-top, 0px) + 92px) 24px 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.mobile-menu-overlay.is-open .mobile-menu-sheet {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-panel-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: min(420px, 100%);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.mobile-menu-panel-content .nav-link {
  width: 100%;
  min-height: 58px;
  justify-content: flex-start;
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(0, 0, 0, 0.84);
  font-size: clamp(20px, 4.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu-panel-content .nav-link + .nav-link {
  border-top: 1px solid var(--line-soft);
}

.mobile-menu-panel-content .nav-link::after {
  display: none;
}

.mobile-menu-panel-content .nav-link:hover {
  color: #000;
  transform: none;
}

.mobile-menu-panel-content .nav-link-active {
  color: #000;
  font-weight: 600;
}

.mobile-menu-panel-content .nav-link-icon {
  width: 100%;
  min-height: 58px;
  height: auto;
  gap: 0;
  justify-content: flex-start;
}

.mobile-menu-panel-content .nav-link-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.7;
}

body.is-desktop.desktop-nav-style-pill .nav-links {
  padding: 6px;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.is-desktop.desktop-nav-style-pill .nav-links-panel {
  gap: 8px;
}

body.is-desktop.desktop-nav-style-pill .nav-links .nav-link {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.7);
}

body.is-desktop.desktop-nav-style-pill .nav-links .nav-link::after {
  display: none;
}

body.is-desktop.desktop-nav-style-pill .nav-links .nav-link:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
}

body.is-desktop.desktop-nav-style-pill .nav-links .nav-link-active {
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
}

body.is-desktop.desktop-nav-style-pill .nav-link-icon {
  width: auto;
  height: 36px;
  padding: 0 14px;
  gap: 8px;
}

body.is-desktop.desktop-nav-style-pill .instagram-label {
  display: inline;
}

.nav-link-button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.nav-link-active {
  color: #000;
}

.nav-link-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link:focus-visible,
.layout-cycle-button:focus-visible,
.scroll-cue:focus-visible,
.back-to-top:focus-visible,
.gallery-fallback-retry:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 3px;
}

.tile:focus-visible {
  outline: none;
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 3px;
}

.content-wrapper {
  width: 100%;
}

.info-page #sticky-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.info-page .content-wrapper {
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.info-page-main {
  flex: 1 0 auto;
}

body.info-page.contact-page .content-wrapper {
  min-height: 100vh;
}

body.info-page .page-footer .back-to-top {
  display: none;
}

body.info-page.contact-page .contact-page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

body.info-page.contact-page .page-footer {
  margin-top: auto;
}

#hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  background: transparent;
}

#hero-header h1 {
  margin: 0;
  font-size: 48px;
  font-weight: var(--hero-weight);
  letter-spacing: var(--hero-track);
  text-transform: uppercase;
  color: #1d1d1f;
  transition: opacity 400ms linear;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.hero-title-wrapper {
  position: relative;
  z-index: 10;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 12;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.scroll-cue.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-cue-label {
  font-size: var(--micro-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-cue-arrow {
  font-size: 16px;
  line-height: 1;
  animation: scroll-cue-bob 1.6s ease-in-out infinite;
}

@keyframes scroll-cue-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

body.preset-loading .hero-title-wrapper,
body.preset-loading #gallery-scale-wrapper {
  opacity: 0;
}

body.preset-ready .hero-title-wrapper,
body.preset-ready #gallery-scale-wrapper {
  opacity: 1;
  transition: opacity 260ms ease;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
  background: transparent;
  pointer-events: none;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  background: transparent;
}

#hero-header.has-video {
  min-height: 100vh;
  padding: 0;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: transparent;
}

#hero-header.has-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.1);
}

#hero-header.has-video h1 {
  color: #fff;
  mix-blend-mode: overlay;
  opacity: 0.9;
}

body.preset-loading #hero-header.has-video {
  background: #000;
}

#gallery-scale-wrapper {
  position: relative;
  width: 100%;
  clip-path: inset(0 -200vmax -200vmax -200vmax);
  background: var(--bg);
  z-index: 5;
  padding-top: 128px;
  padding-bottom: 120px;
}

#gallery-scale-wrapper.has-fallback .page-wrap {
  display: none;
}

.gallery-fallback {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.gallery-fallback[hidden] {
  display: none !important;
}

.gallery-fallback-message {
  margin: 0 0 var(--space-sm) 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.gallery-fallback-retry {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: var(--micro-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-xs) var(--space-sm);
}

.info-section {
  position: relative;
  z-index: 5;
  background: var(--bg);
  padding: 60px 0 90px;
}

.info-page-main {
  position: relative;
  z-index: 5;
  background: var(--bg);
  padding: 60px 0 90px;
}

.text-content {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}

.text-content h2 {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 24px;
  color: #000;
}

.text-content p {
  margin: 0 0 24px;
  font-weight: 400;
  color: var(--muted);
}

.text-content a {
  color: #1d1d1f;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.text-content a:hover {
  text-decoration-color: #000;
  color: #000;
}

.placeholder-image {
  display: block;
  width: 100%;
  background-color: #e5e5ea;
  border-radius: 0;
}

.text-content.info {
  max-width: min(1220px, calc(100vw - 72px));
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 27vw) minmax(0, 1fr);
  column-gap: clamp(32px, 5.5vw, 112px);
  row-gap: 0;
  align-items: start;
}

.about-hero {
  display: contents;
}

.about-portrait {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: min(100%, 320px);
  justify-self: start;
}

.about-heading {
  margin: 0 0 22px;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
}

.about-intro {
  grid-column: 2;
  padding-top: 18px;
}

.about-bio {
  max-width: 69ch;
}

.about-intro .about-heading,
.about-section h2 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.72);
  line-height: 1.3;
}

.about-bio p,
.about-section p {
  margin: 0;
  color: rgba(29, 29, 31, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.82;
}

.about-bio p+p {
  margin-top: 18px;
}

.about-bio p.about-footnote {
  margin-top: 18px;
}

.about-meta {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(12px, 2vw, 26px);
}

.about-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  max-width: none;
}

.about-section p+p {
  margin-top: 8px;
}

.text-content.contact {
  max-width: min(980px, calc(100vw - 72px));
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: left;
}

.contact-page-main .about-heading {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.72);
  line-height: 1.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.contact-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  max-width: none;
  text-align: left;
}

.contact-block h2 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.72);
  line-height: 1.3;
}

.contact-block p {
  margin: 0;
  color: rgba(29, 29, 31, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.82;
}

.contact-block p+p {
  margin-top: 8px;
}

.info-top {
  margin: 0;
}

.info-portrait,
.info-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background-color: rgba(29, 29, 31, 0.06);
  background-image:
    var(--portrait-url),
    radial-gradient(120% 110% at 20% 10%, rgba(0, 0, 0, 0.06), transparent 55%),
    radial-gradient(120% 110% at 85% 92%, rgba(0, 0, 0, 0.045), transparent 60%);
  background-size: cover;
  background-position: center;
}

.info-portrait-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  border: 0;
  background-color: rgba(29, 29, 31, 0.08);
}

.info-intro {
  padding-bottom: 0;
}

.info-kicker {
  font-size: var(--micro-size);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-label);
  margin-bottom: 12px;
}

.info-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: var(--hero-weight);
  letter-spacing: var(--hero-track);
  text-transform: uppercase;
  color: #000;
}

.text-content .info-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.text-content .info-lede+.info-lede {
  margin-top: 16px;
}

.info-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--line-soft);
}

.info-label {
  font-size: var(--micro-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: var(--space-xs);
}

.info-block {
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line-faint);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-aside .info-block p {
  margin: 0;
}

.info-aside .info-block p+p {
  margin-top: 8px;
}

.info-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-aside li {
  margin: 0;
  color: rgba(29, 29, 31, 0.65);
}

.page-wrap {
  width: 100%;
  padding: 0 16px;
}

.canvas-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.canvas-slot {
  position: relative;
}

.canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  background: var(--bg);
  border: 0;
  box-shadow: none;
}

.tile-layer {
  align-content: start;
  --layout-columns: 28;
  --column-gap: 0px;
  --row-gap: 0px;
  --row-size: 30px;
  --tile-inner-scale: 1;
}

.tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tile-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center center;
  border: 0;
  box-shadow: none;
  transform: scale(var(--tile-inner-scale));
}

.tile-is-gallery-link .tile-inner {
  transform-origin: center bottom;
}

.tile-is-website-hidden .tile-inner {
  opacity: 0.62;
}

.tile-media {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tile-media.is-loaded {
  opacity: 1;
}

.tile:hover .tile-media,
.tile:focus-visible .tile-media,
.tile:focus-within .tile-media {
  transform: scale(1.035);
}

.tile-is-website-hidden .tile-media,
.tile-is-website-hidden .tile-slideshow-container {
  filter: grayscale(1);
}

.tile-photo {
  object-fit: contain;
  object-position: center center;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.tile-video {
  object-fit: contain;
  background: transparent;
}

.tile-is-gallery-link .tile-photo,
.tile-is-gallery-link .tile-video {
  object-fit: contain !important;
  object-position: center bottom;
}

.tile-type-landscape {}

.tile-type-portrait {}

.tile-is-hero {}

.tile-website-hide-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.tile-open-relatives-button {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 6;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.tile-request-replace-button {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 6;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.tile-website-hide-toggle svg,
.tile-open-relatives-button svg,
.tile-request-replace-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile:hover .tile-website-hide-toggle,
.tile:focus-within .tile-website-hide-toggle,
.tile:hover .tile-open-relatives-button,
.tile:focus-within .tile-open-relatives-button,
.tile:hover .tile-request-replace-button,
.tile:focus-within .tile-request-replace-button,
.tile-is-website-hidden .tile-open-relatives-button,
.tile-is-website-hidden .tile-website-hide-toggle,
.tile-is-website-hidden .tile-request-replace-button {
  opacity: 1;
  transform: translateY(0);
}

.tile-website-hide-toggle:hover,
.tile-website-hide-toggle:focus-visible,
.tile-open-relatives-button:hover,
.tile-open-relatives-button:focus-visible,
.tile-request-replace-button:hover,
.tile-request-replace-button:focus-visible {
  background: rgba(0, 0, 0, 0.78);
  outline: none;
}

.tile:hover .tile-request-replace-button,
.tile:focus-within .tile-request-replace-button,
.tile-is-website-hidden .tile-request-replace-button {
  transform: translate(-50%, 0);
}

body.is-desktop .tile-layer {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--layout-columns), minmax(0, 1fr));
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  grid-auto-rows: var(--row-size);
}

body.is-mobile .tile-layer {
  display: flex;
  flex-direction: column;
  gap: var(--mobile-gap, 16px);
  position: relative;
  inset: auto;
}

body.is-mobile .tile {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: auto;
}

body.is-mobile .tile-inner {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  transform: none !important;
  aspect-ratio: var(--tile-aspect-ratio, auto);
}

body.is-mobile .tile-photo,
body.is-mobile .tile img,
body.is-mobile .tile video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
}

body.is-mobile .tile-website-hide-toggle {
  opacity: 1;
  transform: none;
}

body.is-mobile .tile-open-relatives-button {
  opacity: 1;
  transform: none;
}

body.is-mobile #canvas {
  transform: none !important;
  width: 100% !important;
  height: auto !important;
  position: relative;
  top: auto;
  left: auto;
}

body.is-mobile .canvas-slot {
  width: 100% !important;
  height: auto !important;
}

body.is-gallery-layout-masonry .canvas-wrap,
body.is-gallery-layout-justified .canvas-wrap {
  overflow: visible;
}

body.is-gallery-layout-masonry #canvas,
body.is-gallery-layout-justified #canvas {
  position: relative !important;
  top: auto;
  left: auto;
  width: 100% !important;
  height: auto !important;
  transform: none !important;
}

body.is-gallery-layout-masonry .canvas-slot,
body.is-gallery-layout-justified .canvas-slot {
  width: 100% !important;
  height: auto !important;
}

body.is-gallery-layout-masonry .tile-layer,
body.is-gallery-layout-justified .tile-layer {
  position: relative;
  inset: auto;
  width: min(100%, var(--gallery-max-width, 1640px));
  margin: 0 auto;
}

body.is-gallery-layout-masonry .tile-layer.tile-layer-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(var(--gallery-masonry-columns, 3), minmax(0, 1fr));
  grid-auto-rows: var(--gallery-masonry-row-unit, 8px);
  grid-auto-flow: row;
  column-gap: var(--gallery-column-gap, 20px);
  row-gap: 0;
}

body.is-gallery-layout-masonry-smart .tile-layer.tile-layer-gallery-masonry-smart {
  display: flex;
  align-items: flex-start;
  gap: var(--gallery-column-gap, 20px);
}

.gallery-masonry-smart-columns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: var(--gallery-column-gap, 20px);
}

.gallery-masonry-smart-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.is-gallery-layout-justified .tile-layer.tile-layer-gallery-justified {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-row-gap, 20px);
}

.gallery-justified-row {
  display: flex;
  align-items: flex-start;
  gap: var(--gallery-column-gap, 20px);
}

body.is-gallery-layout-masonry .tile,
body.is-gallery-layout-justified .tile {
  position: relative;
  left: auto;
  top: auto;
}

body.is-gallery-layout-masonry .tile-inner {
  inset: 0 0 var(--gallery-row-gap, 20px) 0;
}

body.is-gallery-layout-masonry-smart .tile-inner {
  inset: 0;
}

body.is-gallery-layout-masonry .tile-inner,
body.is-gallery-layout-justified .tile-inner {
  transform: none !important;
}

body.is-mobile .scroll-cue {
  bottom: 18px;
}

.page-footer {
  position: relative;
  z-index: 10;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0 44px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  width: 100%;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 0;
  font-size: var(--micro-size);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 300ms;
  font-family: inherit;
  color: inherit;
  touch-action: manipulation;
}

.back-to-top:hover {
  opacity: 0.5;
}

#export-metadata {
  display: none;
}

.copyright {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  --lightbox-pad: clamp(12px, 3vw, 56px);
  padding: var(--lightbox-pad);
}

.lightbox.active {
  display: flex;
}

.lightbox-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 5;
}

.lightbox-loading.active {
  opacity: 1;
}

.lightbox-loading-bar {
  width: 48px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.lightbox-loading-bar-fill {
  position: absolute;
  inset: 0;
  background: #000;
  animation: loading-bar 1.8s infinite ease-in-out;
}

.lightbox-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lightbox-media-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  pointer-events: none;
}

.lightbox-media-item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-media-item.is-exiting {
  opacity: 0;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-media-item {
    transition: none;
  }
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  top: clamp(10px, 2vw, 24px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
  color: var(--control-ink);
  font-size: var(--micro-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: var(--space-xs);
  touch-action: manipulation;
}

.lightbox-close {
  left: clamp(10px, 2vw, 24px);
  right: auto;
  top: clamp(10px, 2vw, 24px);
  bottom: auto;
  transform: none;
  padding: var(--space-xs);
  color: var(--text-secondary);
}

.lightbox-prev {
  left: clamp(10px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: clamp(10px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  #hero-header h1 {
    font-size: 64px;
  }

  .page-wrap {
    padding: 0 24px;
  }
}

@media (max-width: 1080px) {
  .about {
    grid-template-columns: minmax(220px, 32vw) minmax(0, 1fr);
    column-gap: clamp(24px, 3.2vw, 44px);
    row-gap: 0;
  }
}

@media (max-width: 1220px) {
  .about-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bar {
    backdrop-filter: blur(8px) saturate(1.05);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
  }
}

/* Merged transition rules into the main .tile-gallery-title-overlay block below */

#back-to-projects {
  position: fixed;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .loading-bar-fill,
  .scroll-cue-arrow {
    animation: none;
  }

  .loading,
  .bar,
  .nav-link,
  .layout-cycle-button,
  .mobile-menu-overlay,
  .mobile-menu-sheet,
  .scroll-cue,
  .tile-media,
  .tile-slideshow-img,
  .lightbox-media-item {
    transition-duration: 0.01ms !important;
  }

  .tile:hover .tile-media,
  .tile:focus-visible .tile-media,
  .tile:focus-within .tile-media {
    transform: none;
  }
}

body.is-desktop.desktop-nav-compact #sticky-nav {
  grid-template-columns: max-content minmax(18px, 1fr) max-content;
}

body.is-desktop.desktop-nav-compact .nav-layout-controls {
  display: none;
}

body.is-desktop.desktop-nav-compact .nav-links {
  grid-column: 3;
  max-width: min(74vw, 1120px);
}

body.is-desktop.desktop-nav-compact .nav-title {
  font-size: 14px;
  letter-spacing: 0.14em;
}

#back-to-projects:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

#back-to-projects svg {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.tile-gallery-title-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--hero-weight);
  letter-spacing: var(--hero-track);
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  pointer-events: none;
  transition: opacity 0.22s ease, background-color 0.22s ease;
  transition-delay: 0s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 1;
}

.tile-gallery-title-overlay-align-top-left {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.tile-gallery-title-overlay-align-top-middle {
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.tile-gallery-title-overlay-align-top-right {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
}

.tile-gallery-title-overlay-align-middle-left {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.tile-gallery-title-overlay-align-middle {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tile-gallery-title-overlay-align-middle-right {
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.tile-gallery-title-overlay-align-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.tile-gallery-title-overlay-align-bottom-middle {
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.tile-gallery-title-overlay-align-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.tile-gallery-title-overlay-under-thumbnail {
  position: static;
  inset: auto;
  background: transparent !important;
  justify-content: center;
  align-items: center;
  display: block;
  flex: 0 0 auto;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.3;
  padding: 8px 2px 0 2px;
  color: rgba(29, 29, 31, 0.8);
  text-shadow: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile:hover .tile-gallery-title-overlay,
.tile:focus-visible .tile-gallery-title-overlay {
  background-color: rgba(0, 0, 0, 0.1) !important;
  opacity: 1;
  transition-delay: 0s;
}

.tile:hover .tile-gallery-title-overlay-under-thumbnail,
.tile:focus-visible .tile-gallery-title-overlay-under-thumbnail {
  background: transparent !important;
}

.tile-gallery-title-under-thumbnail {
  display: flex;
  flex-direction: column;
}

.tile-gallery-title-under-thumbnail .tile-inner {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.tile-slideshow-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tile-slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: var(--bg);
}

.tile-slideshow-img.active {
  opacity: 1;
}

@media (max-width: 767px) {
  #sticky-nav {
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 16px;
    height: 64px;
    border-radius: 0;
    padding: 0 calc(env(safe-area-inset-right, 0px) + 18px) 0 calc(env(safe-area-inset-left, 0px) + 18px);
  }

  .nav-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.82);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-title.hidden {
    opacity: 0;
  }

  .nav-menu-button {
    display: inline-flex;
    grid-column: 2;
  }

  .nav-links {
    display: none;
  }

  .lightbox-close {
    left: 14px;
    right: auto;
    top: max(12px, calc(env(safe-area-inset-top, 0px) + 8px));
    bottom: auto;
    transform: none;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 8px));
    transform: none;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  #hero-header {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  #hero-header h1 {
    font-size: 38px;
  }

  #back-to-projects {
    left: 14px;
    top: 14px;
  }

  #gallery-scale-wrapper {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .info-section {
    padding: 44px 0 64px;
  }

  .info-page .content-wrapper {
    padding-top: 74px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .info-page-main {
    flex: 1 0 auto;
    padding: 44px 0 64px;
  }

  .nav-layout-controls {
    display: none !important;
  }

  .mobile-menu-overlay {
    top: 0;
    padding: 0;
  }

  .mobile-menu-sheet {
    width: 100%;
    min-height: 100svh;
    padding: calc(env(safe-area-inset-top, 0px) + 86px) 18px 24px;
  }

  .mobile-menu-panel-content .nav-link {
    min-height: 56px;
    padding: 8px 0;
    font-size: clamp(18px, 6.4vw, 24px);
    letter-spacing: 0.08em;
  }

  .mobile-menu-panel-content .nav-link-icon {
    min-height: 56px;
  }

  .mobile-menu-panel-content .nav-link-icon svg {
    width: 36px;
    height: 36px;
  }


  body.info-page.contact-page .content-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  body.info-page.contact-page .contact-page-main {
    display: block;
    padding: 44px 0 64px;
  }

  .info-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .about {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .text-content.info {
    max-width: min(420px, 100%);
  }

  .about-portrait {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 340px);
  }

  .about-intro,
  .about-meta {
    grid-column: 1;
  }

  .about-intro {
    padding-top: 0;
    text-align: left;
  }

  .about-bio {
    max-width: none;
  }

  .about-meta {
    margin-top: 6px;
  }

  .about-intro .about-heading,
  .about-section h2 {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .about-bio p,
  .about-section p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.01em;
  }

  .about-bio p+p {
    margin-top: 16px;
  }

  .about-bio p.about-footnote {
    margin-top: 16px;
  }

  .about-meta {
    gap: 30px;
  }

  .about-section {
    padding-top: 20px;
    text-align: left;
  }

  .about-section p+p {
    margin-top: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .text-content.contact {
    max-width: min(420px, 100%);
    text-align: left;
  }

  .contact-block {
    text-align: left;
  }

  .contact-block + .contact-block {
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
  }

  .contact-block h2 {
    margin-bottom: 16px;
  }

  .contact-block p {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -0.01em;
  }

  .contact-block p + p {
    margin-top: 12px;
  }

  .contact-block a {
    display: inline-block;
    padding: 4px 0;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    word-break: break-word;
  }

  .info-portrait,
  .info-image {
    border-radius: 2px;
  }

  .page-footer {
    padding: 46px 0 36px;
  }

  .back-to-top {
    margin-bottom: 22px;
  }

  .copyright {
    font-size: 9px;
    letter-spacing: 0.22em;
  }
}
