@font-face {
  font-family: "Brother Signature";
  src: url("assets/fonts/brother-signature.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --ink: #07090a;
  --ink-soft: #0d1112;
  --paper: #e9e6df;
  --muted: #969c9a;
  --line: rgba(233, 230, 223, 0.18);
  --accent: #aabfb6;
  --serif: "Bodoni 72", "Didot", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: clamp(22px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #050708;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.lightbox-open,
body.collections-visible {
  overflow: hidden;
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img,
video {
  display: block;
  width: 100%;
}

img {
  -webkit-touch-callout: none;
  user-select: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition:
    opacity 0.8s ease 0.2s,
    visibility 0.8s ease 0.2s;
}

.loader-logo {
  display: grid;
  width: max-content;
  max-width: 78vw;
  justify-items: center;
  gap: 4px;
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  font-size: 12px;
  letter-spacing: 0.34em;
}

.loader-mark span {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--page);
  border-bottom: 1px solid transparent;
  font-size: 10px;
  letter-spacing: 0.16em;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.4s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: var(--line);
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  width: max-content;
  min-width: 0;
  justify-items: center;
  gap: 3px;
}

.wordmark-title {
  display: flex;
  align-items: baseline;
  width: max-content;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(17px);
}

.wordmark-dark::after {
  content: " ";
  white-space: pre;
}

.wordmark-dark,
.wordmark-stars {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3.4px;
}

.wordmark-line {
  display: block;
  width: calc(100% - 2px);
  height: 1px;
  justify-self: center;
  background: linear-gradient(90deg, transparent, rgba(233, 230, 223, 0.62), transparent);
}

.loader-logo .wordmark-title {
  gap: 0;
}

.loader-logo .wordmark-dark,
.loader-logo .wordmark-stars {
  font-size: clamp(12px, 1.65vw, 19px);
  letter-spacing: clamp(4px, 0.8vw, 9px);
}

.site-header nav {
  display: flex;
  gap: clamp(12px, 1.45vw, 28px);
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-header nav button {
  position: relative;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.site-header nav a::after,
.site-header nav button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-toggle {
  display: none;
}

.edition {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  color: var(--muted);
  font-size: 7px;
}

.signature-image {
  display: block;
  width: 72px;
  height: auto;
  opacity: 0.92;
}

.edition .signature-image {
  width: 76px;
}

.signature-wordmark {
  display: inline-block;
  color: rgba(240, 238, 233, 0.92);
  font-family: "Brother Signature", "Snell Roundhand", cursive;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.72;
  white-space: nowrap;
}

.edition .signature-wordmark {
  transform: translateY(1px);
}

.brand .wordmark-title {
  transform: translateY(21px);
}

.brand .wordmark-dark,
.brand .wordmark-stars {
  font-size: 10px;
}

.collections-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  padding: clamp(26px, 4vw, 58px);
  overflow-y: auto;
  background: rgba(8, 11, 12, 0.985);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-3%);
  transition:
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    visibility 0.65s;
}

.collections-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.72);
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s;
}

.drawer-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 8px;
}

.drawer-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.collections-close {
  padding: 8px 0;
  border: 0;
  background: transparent;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.drawer-intro {
  max-width: 520px;
  margin: 30px 0 25px;
  color: #9da4a1;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
}

.collection-filters {
  display: flex;
  gap: 28px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.collection-filters button {
  position: relative;
  padding: 0 0 13px;
  border: 0;
  background: transparent;
  color: #707875;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-filters button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.collection-filters button.is-active {
  color: #e3e3dd;
}

.collection-filters button.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.collection-filters button span {
  margin-left: 7px;
  color: #555d5a;
  letter-spacing: 0;
}

.drawer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 68px) clamp(18px, 2.4vw, 42px);
}

.drawer-card {
  min-width: 0;
}

.drawer-card .image-open {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
  background: #080a0b;
}

.drawer-card .image-open img {
  object-fit: contain;
  filter: brightness(0.92);
  transform: scale(1);
  transition:
    transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 700ms ease,
    opacity 700ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .drawer-card:hover .image-open img,
  .drawer-card:focus-within .image-open img {
    filter: brightness(1.04);
    transform: scale(1.025);
  }
}

.drawer-card > span {
  display: block;
  color: #727a77;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.drawer-card > strong {
  display: block;
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.media-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 7, 8, 0.7);
  color: #fff;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.set-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(5, 7, 8, 0.72);
  color: #fff;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #06090b;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-slide {
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 2s ease,
    visibility 2s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.04);
  transition: transform 10s linear;
}

.hero-slide.is-active img {
  transform: scale(1.11);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 6, 7, 0.3) 0%, transparent 32%, rgba(3, 5, 6, 0.16) 56%, rgba(3, 5, 6, 0.84) 100%),
    linear-gradient(90deg, rgba(3, 5, 6, 0.48), transparent 55%);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: var(--page);
  width: min(900px, 86vw);
  transform: translateY(-46%);
}

.hero-identity h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.1vw, 98px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.hero-identity h1 span {
  color: rgba(233, 230, 223, 0.92);
}

.hero-byline {
  display: flex;
  align-items: center;
  margin: 17px 0 0;
  gap: 7px;
  color: rgba(233, 230, 223, 0.58);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  transform: translateY(9px);
}

.hero-byline .signature-image {
  width: 126px;
}

.hero-byline .signature-wordmark {
  font-size: 36px;
}

.hero-deck {
  margin: 18px 0 0;
  color: rgba(233, 230, 223, 0.66);
  font-size: 9px;
  letter-spacing: 0.22em;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 26px;
  color: rgba(233, 230, 223, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-note {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(233, 230, 223, 0.88);
  font-family: var(--serif);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.75;
  text-wrap: balance;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hero-note.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hero-meta {
  position: absolute;
  right: var(--page);
  bottom: 40px;
  display: flex;
  gap: clamp(28px, 5vw, 80px);
}

.hero-meta div {
  min-width: 126px;
}

.meta-label {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.hero-controls {
  position: absolute;
  top: 50%;
  right: var(--page);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: translateY(-50%);
}

.slide-dot {
  width: 32px;
  height: 14px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slide-dot span {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
}

.slide-dot span::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: white;
  transform: scaleX(0);
  transform-origin: left;
}

.slide-dot.is-active span::after {
  animation: heroProgress 7s linear forwards;
}

@keyframes heroProgress {
  to {
    transform: scaleX(1);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 43px;
  left: var(--page);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.scroll-cue span {
  width: 32px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue span::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: white;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(250%);
  }
}

.section-pad {
  padding: clamp(110px, 15vw, 220px) var(--page);
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 4fr;
  min-height: 90svh;
  border-bottom: 1px solid var(--line);
}

.section-index {
  padding-top: 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.manifesto-copy {
  max-width: 1160px;
}

.manifesto h2,
.chapter h2,
.about h2,
.video-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.manifesto h2 {
  font-size: clamp(48px, 7vw, 108px);
}

.manifesto h2 em {
  color: var(--accent);
  font-weight: 400;
}

.manifesto-note {
  display: grid;
  grid-template-columns: minmax(280px, 540px) 1fr;
  gap: 10vw;
  margin-top: clamp(60px, 9vw, 130px);
}

.manifesto-note > p:first-child {
  margin: 0;
  color: #c9ccca;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.85;
}

.coordinates {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  line-height: 2;
}

.manifesto-korean {
  max-width: 760px;
  margin-top: clamp(58px, 8vw, 110px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #aeb4b1;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.95;
  word-break: keep-all;
}

.manifesto-korean p {
  margin: 0;
}

.manifesto-korean p + p {
  margin-top: 16px;
}

.origin-story {
  display: grid;
  grid-template-columns: 1fr 4fr;
  min-height: 88svh;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 35%, rgba(80, 98, 101, 0.12), transparent 30%),
    #07090a;
}

.origin-story-copy {
  max-width: 900px;
}

.origin-story h2 {
  margin: 0 0 clamp(54px, 7vw, 92px);
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.origin-story-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 24px;
  color: #c5c9c7;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.85;
}

.origin-story-copy .origin-story-after {
  margin-top: clamp(50px, 7vw, 90px);
  color: #858d89;
  font-size: clamp(14px, 1.1vw, 18px);
}

.australia-story {
  display: grid;
  grid-template-columns: 1fr 4fr;
  min-height: 92svh;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(126, 103, 72, 0.05), transparent 45%),
    #080a0a;
}

.australia-story-copy {
  max-width: 1120px;
}

.australia-story h2 {
  margin: 0 0 clamp(58px, 8vw, 110px);
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.australia-story-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(48px, 8vw, 130px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.australia-story-english {
  color: #c9ccca;
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.85;
}

.australia-story-korean {
  color: #aeb4b1;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.95;
  word-break: keep-all;
}

.australia-story-english p,
.australia-story-korean p {
  margin: 0;
}

.australia-story-english p + p,
.australia-story-korean p + p {
  margin-top: 22px;
}

.australia-story-footnote {
  margin: clamp(60px, 8vw, 100px) 0 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.chapter {
  border-bottom: 1px solid var(--line);
}

.chapter-header {
  display: grid;
  grid-template-columns: 0.55fr 1.5fr 1fr;
  align-items: end;
  gap: clamp(26px, 5vw, 90px);
  margin-bottom: clamp(100px, 14vw, 210px);
}

.chapter-number {
  align-self: start;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
}

.chapter h2 {
  font-size: clamp(72px, 9vw, 144px);
}

.chapter-intro {
  max-width: 400px;
  margin: 0 0 8px;
  color: #bec2c0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2.3vw, 42px);
  row-gap: clamp(100px, 14vw, 220px);
}

.photo-card {
  margin: 0;
}

.image-open {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #15191a;
  cursor: zoom-in;
}

.image-open img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.6s ease,
    opacity 800ms ease;
}

.image-open:hover img,
.image-open:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.drawer-card img.media-fade,
.photo-card img.media-fade,
.about img.media-fade {
  opacity: 0;
}

.drawer-card img.media-fade.is-loaded,
.photo-card img.media-fade.is-loaded,
.about img.media-fade.is-loaded {
  opacity: 1;
}

.about img {
  transition: opacity 800ms ease;
}

.photo-card figcaption {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  margin-top: 18px;
}

.photo-card figcaption span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.photo-card figcaption p {
  margin: 0;
  color: #d1d1cc;
  font-family: var(--serif);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.65;
}

.photo-wide {
  grid-column: 1 / span 8;
}

.photo-wide .image-open {
  aspect-ratio: 16 / 9;
}

.photo-portrait {
  grid-column: 9 / span 4;
}

.photo-portrait .image-open {
  aspect-ratio: 3 / 4.25;
}

.photo-landscape {
  grid-column: 2 / span 7;
}

.photo-landscape .image-open {
  aspect-ratio: 3 / 2;
}

.photo-vertical-full {
  grid-column: 2 / span 5;
}

.photo-vertical-full .image-open {
  aspect-ratio: 2 / 3;
}

.photo-small {
  grid-column: 9 / span 3;
  align-self: center;
}

.photo-small .image-open {
  aspect-ratio: 1 / 1;
}

.photo-tall {
  grid-column: 1 / span 4;
}

.photo-tall .image-open {
  aspect-ratio: 3 / 4;
}

.photo-color {
  grid-column: 6 / span 7;
  align-self: center;
}

.photo-color .image-open {
  aspect-ratio: 16 / 8.5;
}

.photo-pano {
  grid-column: 1 / span 9;
}

.photo-pano .image-open {
  aspect-ratio: 17 / 8;
}

.photo-square {
  grid-column: 2 / span 4;
}

.photo-square .image-open {
  aspect-ratio: 1 / 1;
}

.gallery-pacific .photo-portrait {
  grid-column: 7 / span 5;
}

.gallery-pacific .photo-wide {
  grid-column: 1 / span 9;
}

.gallery-kauai .photo-wide {
  grid-column: 2 / span 9;
}

.gallery-kauai .photo-portrait {
  grid-column: 1 / span 4;
}

.gallery-kauai .photo-landscape {
  grid-column: 6 / span 7;
  align-self: center;
}

.gallery-kauai .photo-tall {
  grid-column: 5 / span 5;
}

.shift-down {
  transform: translateY(clamp(40px, 7vw, 110px));
}

.video-interlude {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0a0d0e;
}

.video-interlude video,
.video-shade {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.video-shade {
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.66), transparent 70%),
    linear-gradient(180deg, rgba(4, 6, 7, 0.2), rgba(4, 6, 7, 0.55));
}

.video-copy {
  position: absolute;
  bottom: 12vh;
  left: var(--page);
}

.video-copy h2 {
  font-size: clamp(76px, 11vw, 180px);
}

.video-copy p {
  margin: 32px 0 0;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.video-toggle {
  position: absolute;
  right: var(--page);
  bottom: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(6, 9, 10, 0.25);
  font-size: 8px;
  letter-spacing: 0.2em;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.quote-break {
  display: grid;
  min-height: 82svh;
  padding: 100px var(--page);
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(89, 116, 112, 0.13), transparent 36%),
    #080a0b;
}

.quote-break p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-align: center;
}

.quote-break em {
  color: var(--accent);
  font-weight: 400;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
  background: #e5e2da;
  color: #121616;
}

.about-portrait img {
  height: min(72vw, 820px);
  object-fit: cover;
  filter: saturate(0.72);
}

.about-portrait span {
  display: block;
  margin-top: 12px;
  color: #626765;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.about-copy .eyebrow {
  color: #616765;
}

.about h2 {
  font-size: clamp(64px, 8vw, 126px);
}

.about-lede {
  margin: 44px 0 25px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
}

.about-copy > p:not(.eyebrow, .about-lede) {
  max-width: 590px;
  color: #505655;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
}

.about-korean {
  max-width: 590px;
  margin-top: 36px;
  padding-top: 27px;
  border-top: 1px solid rgba(18, 22, 22, 0.2);
  color: #535957;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  word-break: keep-all;
}

.about-korean p {
  margin: 0;
}

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

.about-signoff {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 22, 22, 0.2);
  color: #626765;
  font-size: 7px;
  letter-spacing: 0.16em;
}

.about-signoff strong {
  color: #151919;
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-signoff span:last-child {
  text-align: right;
}

.about-detail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin: clamp(70px, 10vw, 160px) 0 0;
}

.about-camera-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 150px) clamp(24px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(80px, 11vw, 170px);
}

.about-camera-card {
  margin: 0;
}

.about-camera-card img {
  width: 100%;
  object-fit: cover;
}

.about-camera-card--looking {
  grid-column: 1 / span 7;
  grid-row: 1;
}

.about-camera-card--looking img,
.about-camera-card--portrait img {
  aspect-ratio: 1;
}

.about-camera-card--overlook {
  grid-column: 9 / span 4;
  grid-row: 1;
  margin-top: clamp(50px, 8vw, 120px);
}

.about-camera-card--overlook img {
  aspect-ratio: 3 / 4;
}

.about-camera-card--portrait {
  grid-column: 2 / span 4;
  grid-row: 2;
}

.about-camera-card--island {
  grid-column: 6 / span 7;
  grid-row: 2;
  margin-top: clamp(55px, 7vw, 105px);
}

.about-camera-card--island img,
.about-camera-card--archive img,
.about-camera-card--night img {
  aspect-ratio: 3 / 2;
}

.about-camera-card--archive {
  grid-column: 1 / span 3;
  grid-row: 3;
  margin-top: clamp(45px, 6vw, 90px);
}

.about-camera-card--night {
  grid-column: 5 / span 8;
  grid-row: 3;
}

.about-camera-card figcaption {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  margin-top: 16px;
}

.about-camera-card figcaption span {
  color: #707674;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.about-camera-card figcaption p {
  margin: 0;
  color: #454b49;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.about-detail img {
  justify-self: center;
  width: min(100%, 860px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.about-detail figcaption {
  padding-bottom: 12px;
  color: #525856;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.6;
}

.inquiries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 12vw, 190px);
  border-bottom: 1px solid var(--line);
  background: #07090a;
}

.inquiry-block {
  scroll-margin-top: 110px;
}

.inquiry-block h2 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.inquiry-block > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 36px;
  color: #aeb4b1;
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
}

.inquiry-block a {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 24px;
  max-width: 560px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #858d89;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.75);
}

.contact-form button {
  justify-self: start;
  padding: 8px 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.korean-summary {
  border-bottom: 1px solid var(--line);
  background: #07090a;
  color: #b8bdbb;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.korean-summary summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--page);
  color: #858d89;
  font-size: 9px;
  letter-spacing: 0.16em;
  list-style: none;
  cursor: pointer;
}

.korean-summary summary::-webkit-details-marker {
  display: none;
}

.korean-summary summary span:last-child {
  color: #d4d7d5;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.korean-summary[open] summary span:last-child {
  transform: rotate(45deg);
}

.korean-summary > div {
  max-width: 720px;
  padding: 8px var(--page) 42px;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 300;
  line-height: 1.95;
  word-break: keep-all;
}

.korean-summary p {
  margin: 0;
}

.korean-summary p + p {
  margin-top: 14px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 34px var(--page);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.footer-brand {
  display: grid;
  width: max-content;
  justify-items: center;
  gap: 4px;
}

.footer-brand .wordmark-title {
  gap: 0;
}

.footer-brand .wordmark-dark,
.footer-brand .wordmark-stars {
  font-size: 10px;
  letter-spacing: 4.2px;
}

footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

footer .signature-image {
  width: 82px;
}

footer .signature-wordmark {
  font-size: 24px;
}

footer a:last-child {
  justify-self: end;
}

.music-control {
  position: fixed;
  right: max(18px, calc(var(--page) * 0.48));
  bottom: max(84px, env(safe-area-inset-bottom));
  z-index: 45;
}

.music-toggle {
  display: grid;
  grid-template-columns: 18px auto auto;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(7, 9, 10, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  letter-spacing: 0.17em;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.music-toggle:hover,
.music-toggle:focus-visible,
.music-toggle.is-playing {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(7, 9, 10, 0.88);
  color: #fff;
}

.music-toggle:hover {
  transform: translateY(-2px);
}

.music-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  gap: 2px;
}

.music-bars i {
  width: 1px;
  height: 4px;
  background: currentColor;
  transform-origin: center;
}

.music-toggle.is-playing .music-bars i {
  animation: night-music-bars 1.1s ease-in-out infinite alternate;
}

.music-toggle.is-playing .music-bars i:nth-child(2) {
  animation-delay: -0.55s;
}

.music-toggle.is-playing .music-bars i:nth-child(3) {
  animation-delay: -0.25s;
}

.music-state {
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

@keyframes night-music-bars {
  0% {
    transform: scaleY(0.7);
  }

  100% {
    transform: scaleY(2.7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.9s ease,
    transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.shift-down {
  transform: translateY(calc(clamp(40px, 7vw, 110px) + 44px));
}

.reveal.shift-down.is-visible {
  transform: translateY(clamp(40px, 7vw, 110px));
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(5, 7, 8, 0.97);
  color: white;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-stage {
  --lightbox-stage-top: clamp(54px, 6vw, 90px);

  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  place-items: center;
}

.lightbox-stage > img,
.lightbox-stage > video {
  position: absolute;
  top: var(--lightbox-stage-top);
  left: var(--page);
  width: calc(100% - var(--page) - var(--page));
  max-width: 100%;
  height: calc(100% - var(--lightbox-stage-top) - 20px);
  max-height: 100%;
  object-fit: contain;
  transition:
    height 0.25s ease,
    opacity 0.2s ease;
}

.lightbox-stage [hidden] {
  display: none;
}

.lightbox.has-series .lightbox-stage > img,
.lightbox.has-series .lightbox-stage > video {
  height: calc(100% - var(--lightbox-stage-top) - 112px);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(5, 7, 8, 0.72);
  color: white;
  font-size: 18px;
  place-items: center;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-prev {
  left: max(18px, calc(var(--page) * 0.38));
}

.lightbox-next {
  right: max(18px, calc(var(--page) * 0.38));
}

.lightbox-series {
  position: absolute;
  right: var(--page);
  bottom: 70px;
  left: var(--page);
  display: flex;
  justify-content: space-between;
  color: #858d89;
  font-size: 7px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lightbox-thumbs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  display: flex;
  max-width: calc(100% - var(--page) - var(--page));
  gap: 7px;
  overflow-x: auto;
  transform: translateX(-50%);
  scrollbar-width: none;
}

.lightbox-thumbs:empty {
  display: none;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #111;
  opacity: 0.48;
  cursor: pointer;
}

.lightbox-thumb img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.lightbox-thumb.is-video::after {
  position: absolute;
  inset: 0;
  display: grid;
  color: white;
  content: "▶";
  font-size: 10px;
  place-items: center;
  text-shadow: 0 1px 6px #000;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: var(--page);
  z-index: 2;
  padding: 8px;
  border: 0;
  background: transparent;
  font-size: 9px;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.lightbox-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 7vw, 100px);
  padding: 16px var(--page);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightbox-caption > div {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
}

.lightbox-kicker {
  color: #fff;
}

.lightbox-date {
  color: #858d89;
}

.lightbox-note {
  max-width: 680px;
  margin: 0;
  color: #d8d8d2;
  font-family: var(--serif);
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0;
  line-height: 1.55;
  text-align: right;
  text-transform: none;
}

@media (min-width: 2200px) {
  :root {
    --page: clamp(96px, 4vw, 154px);
  }

  body {
    font-size: 18px;
  }

  .site-header {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 12px;
  }

  .site-header.is-scrolled {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    width: 236px;
    height: 70px;
  }

  .site-header nav {
    gap: 64px;
  }

  .collections-drawer {
    width: 100%;
    padding: 64px var(--page) 100px;
  }

  .drawer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .drawer-intro {
    max-width: 660px;
    font-size: 20px;
  }

  .drawer-card > span,
  .meta-label,
  .scroll-cue,
  .section-index,
  .coordinates,
  .photo-card figcaption span,
  .about-portrait span {
    font-size: 10px;
  }

  .drawer-card > strong {
    font-size: 24px;
  }

  .hero-slide img {
    transform: scale(1.01);
  }

  .hero-slide.is-active img {
    transform: scale(1.025);
  }

  .hero-copy {
    width: min(1180px, 72vw);
  }

  .hero-note {
    max-width: 760px;
    font-size: 20px;
  }

  .hero-meta strong {
    font-size: 18px;
  }

  .slide-dot {
    width: 44px;
  }

  .section-pad {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .manifesto-copy {
    max-width: 1500px;
  }

  .manifesto h2 {
    font-size: 142px;
  }

  .manifesto-note > p:first-child,
  .chapter-intro {
    font-size: 24px;
  }

  .chapter h2 {
    font-size: 180px;
  }

  .photo-card figcaption p {
    font-size: 20px;
  }

  .video-copy h2 {
    font-size: 210px;
  }

  .quote-break p {
    font-size: 120px;
  }

  .about h2 {
    font-size: 154px;
  }

  .about-lede {
    font-size: 40px;
  }

  .about-copy > p:not(.eyebrow, .about-lede),
  .about-camera-card figcaption p {
    font-size: 20px;
  }

  .lightbox-caption,
  .lightbox-close {
    font-size: 11px;
  }

  .lightbox-note {
    max-width: 900px;
    font-size: 19px;
  }
}

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

  .edition {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px var(--page) 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 10, 0.96);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }

  .site-header.nav-open nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header nav a,
  .site-header nav button {
    padding: 13px 0;
    text-align: left;
  }

  .site-header nav a::after,
  .site-header nav button::after {
    display: none;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }

  .origin-story {
    grid-template-columns: 1fr;
  }

  .australia-story {
    display: block;
    min-height: 0;
  }

  .australia-story .section-index {
    margin-bottom: 48px;
  }

  .australia-story h2 {
    margin-bottom: 58px;
    font-size: clamp(58px, 19vw, 88px);
  }

  .australia-story-body {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .section-index {
    margin-bottom: 50px;
  }

  .manifesto-note {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chapter-header {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .chapter-intro {
    grid-column: 2;
  }

  .photo-card figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .inquiries {
    grid-template-columns: 1fr;
  }

  .about-portrait img {
    height: 110vw;
    max-height: 840px;
  }

  .about-camera-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-camera-card {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }

  .drawer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --page: 20px;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .brand {
    width: max-content;
    height: auto;
    gap: 2px;
  }

  .brand .wordmark-title {
    gap: 0;
    transform: none;
  }

  .brand .wordmark-line {
    width: 100%;
    margin-top: 1px;
  }

  .brand .wordmark-dark,
  .brand .wordmark-stars {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .collections-drawer {
    width: 100%;
    padding: 28px 20px 50px;
  }

  .collection-filters {
    gap: 18px;
    overflow-x: auto;
  }

  .collection-filters button {
    flex: 0 0 auto;
    font-size: 7px;
  }

  .drawer-grid {
    gap: 28px 12px;
  }

  .drawer-card > strong {
    font-size: 15px;
  }

  .hero-copy {
    top: 42%;
    width: calc(100% - 40px);
  }

  .hero-identity h1 {
    font-size: clamp(40px, 12.4vw, 60px);
  }

  .hero-deck {
    max-width: 270px;
    margin-top: 17px;
    font-size: 7px;
  }

  .hero-note {
    max-width: 300px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-meta {
    right: auto;
    bottom: 72px;
    left: var(--page);
    gap: 25px;
  }

  .hero-meta div {
    min-width: auto;
  }

  .hero-controls {
    top: auto;
    right: var(--page);
    bottom: 86px;
  }

  .scroll-cue {
    bottom: 28px;
  }

  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .manifesto {
    min-height: 0;
  }

  .chapter-header {
    grid-template-columns: 1fr;
  }

  .chapter-number {
    font-size: 34px;
  }

  .chapter-intro {
    grid-column: auto;
    margin-top: 20px;
  }

  .chapter h2 {
    font-size: clamp(68px, 25vw, 108px);
  }

  .gallery {
    display: block;
  }

  .photo-card,
  .reveal.shift-down,
  .reveal.shift-down.is-visible {
    margin-bottom: 88px;
    transform: none;
  }

  .photo-card .image-open {
    aspect-ratio: 4 / 5;
  }

  .photo-wide .image-open,
  .photo-landscape .image-open,
  .photo-color .image-open,
  .photo-pano .image-open {
    aspect-ratio: 4 / 3;
  }

  .photo-small .image-open,
  .photo-square .image-open {
    aspect-ratio: 1;
  }

  .photo-vertical-full .image-open {
    aspect-ratio: 2 / 3;
  }

  .video-interlude {
    min-height: 78svh;
  }

  .video-copy {
    bottom: 90px;
  }

  .video-copy h2 {
    font-size: 23vw;
  }

  .quote-break {
    min-height: 68svh;
  }

  .about-detail {
    grid-template-columns: 1fr;
  }

  .about-camera-card figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about-detail img {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .about-signoff {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-signoff span:last-child {
    text-align: left;
  }

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

  .footer-brand {
    width: max-content;
    height: auto;
  }

  footer p {
    display: none;
  }

  .music-control {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .music-toggle {
    grid-template-columns: 16px auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .music-label {
    display: none;
  }

  .music-state {
    padding-left: 8px;
  }

  .lightbox-caption {
    display: block;
    min-height: 145px;
  }

  .lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-series {
    right: 20px;
    left: 20px;
    bottom: 67px;
  }

  .lightbox-thumbs {
    max-width: calc(100% - 40px);
  }

  .lightbox-thumb {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .lightbox-caption > div {
    justify-content: space-between;
    gap: 10px;
  }

  .lightbox-note {
    margin-top: 12px;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide img {
    transform: none;
  }

  .drawer-card .image-open img,
  .drawer-card:hover .image-open img,
  .drawer-card:focus-within .image-open img,
  .photo-card .image-open img,
  .image-open:hover img,
  .image-open:focus-visible img,
  .about img {
    filter: none;
    transform: none;
    transition: none;
  }

  .drawer-card img.media-fade,
  .photo-card img.media-fade,
  .about img.media-fade {
    opacity: 1;
  }
}
