@font-face {
  font-family: "Tint Serif";
  src: url("../fonts/tint-serif-500.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Tint Sans";
  src: url("../fonts/tint-sans-400.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tint Sans";
  src: url("../fonts/tint-sans-600.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #09080b;
  --ink-soft: #100d12;
  --ink-lift: #171118;
  --paper: #f2ebe0;
  --paper-dim: #c8bfb4;
  --line: rgba(242, 235, 224, 0.18);
  --line-strong: rgba(242, 235, 224, 0.36);
  --coral: #c66c58;
  --copper: #a25f3f;
  --wine: #682f43;
  --teal: #294f52;
  --gold: #c7a46a;
  --serif: "Tint Serif", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "Tint Sans", Inter, "Helvetica Neue", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --header-height: 6rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--wine) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  height: 100dvh;
  overflow: hidden;
}

body.menu-open,
body.focus-open {
  overflow: hidden;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--wine);
}

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

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

.eyebrow {
  color: var(--paper-dim);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cursor,
.ambient-light {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  opacity: 0;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor__dot {
  width: 5px;
  height: 5px;
  background: var(--paper);
}

.cursor__ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 235, 224, 0.45);
  transition: width 300ms var(--ease-out), height 300ms var(--ease-out), background-color 300ms ease, border-color 300ms ease;
}

.cursor.is-active .cursor__ring {
  width: 58px;
  height: 58px;
  border-color: rgba(242, 235, 224, 0.16);
  background: rgba(198, 108, 88, 0.12);
}

.ambient-light {
  z-index: 1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 58, 69, 0.1), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

/* Entrance */
.entrance {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070608;
  transition: visibility 0s linear 1.45s;
}

/* The author-level display rule above would otherwise override the browser's
   default [hidden] rule and leave a transparent, full-screen layer in place. */
.entrance[hidden] {
  display: none !important;
}

.entrance::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.entrance__door {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 50.1%;
  background:
    radial-gradient(circle at 50% 38%, rgba(112, 45, 60, 0.38), transparent 31%),
    linear-gradient(120deg, #160f17, #0c090d 62%, #120c12);
  transition: transform 1.55s var(--ease-in-out);
}

.entrance__door--left {
  left: 0;
  box-shadow: inset -1px 0 rgba(228, 196, 159, 0.2);
}

.entrance__door--right {
  right: 0;
  box-shadow: inset 1px 0 rgba(228, 196, 159, 0.2);
}

.entrance__line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent 7%, var(--gold) 40%, var(--coral) 65%, transparent 94%);
  box-shadow: 0 0 35px rgba(198, 108, 88, 0.45);
  transform: scaleY(0);
  transform-origin: center;
  animation: line-enter 1.4s 0.25s var(--ease-out) forwards;
  transition: opacity 500ms ease;
}

@keyframes line-enter {
  to { transform: scaleY(1); }
}

.entrance__content {
  position: relative;
  z-index: 4;
  width: min(88vw, 52rem);
  text-align: center;
  transition: opacity 520ms ease, transform 800ms var(--ease-out);
}

.entrance__logo {
  width: clamp(12rem, 24vw, 19.5rem);
  margin: 0 auto 3.2rem;
}

.entrance h1 {
  max-width: 13ch;
  margin: 0.75rem auto 2.5rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.portal-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 0 0.7rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 250ms ease, color 250ms ease;
}

.portal-button svg,
.text-link svg,
.submit-button svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.portal-button:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.entrance__footer {
  position: absolute;
  z-index: 4;
  right: var(--page-gutter);
  bottom: 1.75rem;
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-dim);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 450ms ease;
}

.entrance.is-entered .entrance__door--left { transform: translateX(-102%); }
.entrance.is-entered .entrance__door--right { transform: translateX(102%); }
.entrance.is-entered .entrance__line { opacity: 0; }
.entrance.is-entered .entrance__content { opacity: 0; transform: scale(0.96); }
.entrance.is-entered .entrance__footer { opacity: 0; }

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition: height 400ms var(--ease-out), background-color 400ms ease, border-color 400ms ease, transform 500ms var(--ease-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(9, 8, 11, 0.82);
  backdrop-filter: blur(18px);
  transition: opacity 400ms ease;
}

.site-header.is-scrolled {
  height: 4.6rem;
  border-color: var(--line);
}

.site-header.is-scrolled::before { opacity: 1; }

.brand {
  width: clamp(8rem, 13vw, 11.4rem);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.desktop-nav a:hover { color: var(--paper); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
}

.language-switch {
  display: inline-flex;
  gap: 0.32rem;
  color: rgba(242, 235, 224, 0.48);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.language-switch__active { color: var(--paper); }

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.9rem 0.55rem;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.32rem 0;
  background: var(--paper);
  transition: transform 350ms var(--ease-out);
}

.menu-open .menu-toggle > span:nth-last-child(2) { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle > span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 2rem) var(--page-gutter) 2rem;
  visibility: hidden;
  opacity: 0;
  background: var(--ink);
  transition: visibility 0s linear 450ms, opacity 450ms ease;
}

.mobile-menu::before {
  content: "TINT";
  position: absolute;
  right: -0.2em;
  bottom: -0.24em;
  color: rgba(242, 235, 224, 0.025);
  font-family: var(--serif);
  font-size: 42vw;
  line-height: 1;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.25rem 0;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
}

.menu-open .mobile-menu nav a { opacity: 1; transform: none; }
.menu-open .mobile-menu nav a:nth-child(2) { transition-delay: 50ms; }
.menu-open .mobile-menu nav a:nth-child(3) { transition-delay: 100ms; }
.menu-open .mobile-menu nav a:nth-child(4) { transition-delay: 150ms; }

.mobile-menu nav span {
  color: var(--coral);
  font-size: 0.63rem;
}

.mobile-menu nav b {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 14vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.mobile-menu__contact {
  position: absolute;
  z-index: 1;
  right: var(--page-gutter);
  bottom: 2rem;
  left: var(--page-gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.75rem;
}

.language-switch--mobile { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) var(--page-gutter) 5rem;
  background:
    radial-gradient(circle at 73% 42%, rgba(111, 38, 52, 0.26), transparent 25%),
    radial-gradient(circle at 8% 20%, rgba(41, 79, 82, 0.1), transparent 30%),
    var(--ink);
}

.hero::before {
  content: "TINT";
  position: absolute;
  top: 47%;
  left: 45%;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(12rem, 31vw, 34rem);
  letter-spacing: -0.08em;
  line-height: 0.65;
  -webkit-text-stroke: 1px rgba(242, 235, 224, 0.035);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__index {
  position: absolute;
  top: calc(var(--header-height) + 1.25rem);
  left: var(--page-gutter);
  color: var(--paper-dim);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  padding-top: 3rem;
}

.hero h2 {
  max-width: 8.5ch;
  margin-top: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 9vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.76;
}

.hero h2 span,
.hero h2 em { display: block; }
.hero h2 em { color: var(--coral); font-weight: 500; }

.hero__intro {
  max-width: 35ch;
  margin-top: 2.5rem;
  margin-left: clamp(0rem, 9vw, 9rem);
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.35;
}

.hero-art {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(31vw, 28rem);
  min-width: 20rem;
  padding: 0;
  color: var(--paper);
  perspective: 1200px;
}

.hero-art__halo {
  position: absolute;
  z-index: -1;
  inset: 8% -17%;
  border-radius: 50%;
  background: rgba(159, 54, 55, 0.24);
  filter: blur(60px);
  transform: translate(calc(var(--rotate-y) * 1), calc(var(--rotate-x) * 1));
}

.hero-art__frame {
  display: block;
  padding: clamp(0.45rem, 0.75vw, 0.75rem);
  background: #1a1518;
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(229, 205, 175, 0.12);
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.hero-art__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-art__caption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  color: var(--paper-dim);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--paper-dim);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue__line {
  position: relative;
  width: 4.5rem;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateX(-100%);
  animation: scroll-line 2.3s ease-in-out infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

.hero__note {
  position: absolute;
  z-index: 2;
  right: var(--page-gutter);
  bottom: 2rem;
  color: var(--paper-dim);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Threshold */
.threshold {
  position: relative;
  min-height: 84vh;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  overflow: hidden;
  padding: 8rem var(--page-gutter);
  border-top: 1px solid var(--line);
  background: #0d0a0e;
}

.threshold::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34.7%;
  width: 1px;
  background: var(--line);
}

.threshold__number {
  color: rgba(242, 235, 224, 0.035);
  font-family: var(--serif);
  font-size: min(46vw, 39rem);
  line-height: 0.6;
  text-align: center;
}

.threshold__copy {
  position: relative;
  z-index: 2;
  max-width: 53rem;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.threshold blockquote {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.threshold__copy > p:last-child {
  max-width: 34rem;
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: 0.93rem;
}

.threshold__orb {
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(188, 94, 68, 0.4), rgba(71, 27, 43, 0.2) 45%, transparent 70%);
  filter: blur(4px);
}

/* Shared headings */
.section-heading {
  max-width: 68rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.section-heading h2 {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.section-heading > p:last-child {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--paper-dim);
  font-size: 0.84rem;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 4rem;
}

.section-heading--split > p:last-child {
  margin: 0 0 0.5rem;
}

/* Viewing room */
.viewing-room {
  position: relative;
  padding: clamp(7rem, 11vw, 11rem) var(--page-gutter);
  background: var(--ink);
}

.room {
  position: relative;
  min-height: min(75rem, 86svh);
  display: grid;
  grid-template-columns: 0.7fr 2.3fr 0.9fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line);
  background: #0d0b0f;
}

.room::before,
.room::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(242, 235, 224, 0.08);
}

.room::before { left: 22%; }
.room::after { right: 25%; }

.room__atmosphere {
  position: absolute;
  inset: 0;
  opacity: 0.54;
  background:
    radial-gradient(circle at 50% 50%, var(--room-glow, rgba(136, 54, 57, 0.28)), transparent 33%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.018), transparent 42%);
  transition: background 900ms ease;
}

.room__counter {
  position: relative;
  z-index: 2;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper-dim);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.room__counter i {
  width: 2.5rem;
  height: 1px;
  background: var(--line-strong);
}

.room__artwork-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 0;
  height: min(68vh, 48rem);
}

.room__artwork {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.58), 0 0 0 0.5rem #181419;
  transition: opacity 350ms ease, transform 700ms var(--ease-out), box-shadow 400ms ease;
}

.room__artwork.is-changing {
  opacity: 0;
  transform: scale(0.965) translateY(0.7rem);
}

.room__artwork:hover {
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.72), 0 0 0 0.5rem #20191e;
}

.room__artwork img {
  width: auto;
  max-width: min(42vw, 36rem);
  max-height: min(67vh, 47rem);
  object-fit: contain;
}

.room__focus-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  opacity: 0;
  background: rgba(9, 8, 11, 0.76);
  color: var(--paper);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transform: scale(0.7);
  transition: opacity 300ms ease, transform 400ms var(--ease-out);
}

.room__artwork:hover .room__focus-hint { opacity: 1; transform: scale(1); }

.room__info {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-bottom: 4rem;
}

.room__info > p:first-child,
.room__info > p:last-child {
  color: var(--paper-dim);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room__info h3 {
  margin: 1.1rem 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.room__controls {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.round-button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper);
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.round-button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.round-button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.room__rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.room__rail button {
  position: relative;
  height: 3.25rem;
  padding: 0;
  color: rgba(242, 235, 224, 0.35);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  transition: color 300ms ease;
}

.room__rail button::before,
.room__rail button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
}

.room__rail button::before { background: var(--line); }
.room__rail button::after {
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}

.room__rail button[aria-selected="true"] { color: var(--paper); }
.room__rail button[aria-selected="true"]::after { transform: scaleX(1); }

/* Interlude */
.interlude {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  align-items: center;
  gap: 5rem;
  padding: 8rem var(--page-gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--wine);
}

.interlude__mark svg {
  width: min(19rem, 70%);
  margin: auto;
  fill: none;
  stroke: rgba(242, 235, 224, 0.46);
  stroke-width: 0.5;
}

.interlude > p {
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

/* Works */
.works {
  padding: clamp(7rem, 12vw, 12rem) var(--page-gutter);
  background: #0c090d;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 6vw, 7rem) clamp(1rem, 3vw, 3rem);
}

.work-card {
  position: relative;
  grid-column: span 4;
  align-self: start;
  color: var(--paper);
  text-align: left;
}

.work-card:nth-child(2),
.work-card:nth-child(5) {
  grid-column: span 5;
  margin-top: 7rem;
}

.work-card:nth-child(3),
.work-card:nth-child(6) {
  grid-column: span 3;
  margin-top: 2rem;
}

.work-card__image {
  position: relative;
  overflow: hidden;
  background: var(--ink-lift);
}

.work-card__image::after {
  content: "View";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(242, 235, 224, 0.35);
  border-radius: 50%;
  opacity: 0;
  background: rgba(9, 8, 11, 0.65);
  color: var(--paper);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 300ms ease, transform 450ms var(--ease-out);
}

html[lang="tr"] .work-card__image::after { content: "Bak"; }

.work-card:hover .work-card__image::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work-card img {
  width: 100%;
  transition: transform 1.1s var(--ease-out), filter 600ms ease;
}

.work-card:hover img { transform: scale(1.035); filter: saturate(1.08); }

.work-card__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  padding-top: 1rem;
}

.work-card__number {
  grid-row: span 2;
  padding-top: 0.3rem;
  color: var(--coral);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.work-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-card__caption p {
  color: var(--paper-dim);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Artist */
.artist {
  position: relative;
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  overflow: hidden;
  padding: clamp(7rem, 12vw, 12rem) max(var(--page-gutter), 8vw);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.artist__portrait {
  position: relative;
  width: min(100%, 35rem);
  aspect-ratio: 4 / 5;
  justify-self: end;
  overflow: hidden;
  background: #1b1518;
  box-shadow: 2rem 2rem 0 rgba(104, 47, 67, 0.14);
}

.artist__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 130 130' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.artist__canvas {
  position: absolute;
  inset: 0;
  filter: blur(1px);
}

.artist__canvas span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(1.6rem);
}

.artist__canvas span:nth-child(1) {
  top: 10%; left: 15%; width: 68%; height: 46%; background: #762f41; transform: rotate(-18deg);
}
.artist__canvas span:nth-child(2) {
  right: -10%; bottom: 8%; width: 72%; height: 50%; background: #1f5456; transform: rotate(20deg);
}
.artist__canvas span:nth-child(3) {
  bottom: 13%; left: 14%; width: 42%; height: 42%; background: #bd654a; transform: rotate(34deg);
}

.artist__portrait > p {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.2rem;
  color: rgba(242, 235, 224, 0.66);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.artist__copy { max-width: 38rem; }

.artist__copy .eyebrow { color: #6a6260; }

.artist__copy h2 {
  margin: 1.1rem 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.artist__lead {
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.artist__copy > p:not(.artist__lead):not(.eyebrow) {
  max-width: 45rem;
  margin-top: 1rem;
  color: #4d4747;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(9, 8, 11, 0.4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.artist__vertical {
  position: absolute;
  right: 1.4rem;
  color: rgba(9, 8, 11, 0.38);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

/* Notes */
.notes {
  padding: clamp(7rem, 11vw, 11rem) var(--page-gutter);
  background: #0e0b0f;
}

.notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-card {
  min-height: 26rem;
  padding: 2rem clamp(1.5rem, 3vw, 3.5rem);
  border-right: 1px solid var(--line);
  transition: background-color 400ms ease;
}

.note-card:last-child { border-right: 0; }
.note-card:hover { background: var(--wine); }

.note-card > span {
  color: var(--coral);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.note-card h3 {
  margin-top: 8rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.note-card p {
  max-width: 25rem;
  margin-top: 1.3rem;
  color: var(--paper-dim);
  font-size: 0.82rem;
}

/* Contact */
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(8rem, 13vw, 13rem) var(--page-gutter) 6rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 65%, rgba(104, 47, 67, 0.44), transparent 28%),
    var(--ink);
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
  background: var(--line);
}

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

.contact__header h2 {
  max-width: 7ch;
  margin: 1rem 0 2rem;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.contact__header h2 span,
.contact__header h2 em { display: block; }
.contact__header h2 em { color: var(--coral); font-weight: 500; }

.contact__header > p:last-child {
  max-width: 31rem;
  color: var(--paper-dim);
  font-size: 0.86rem;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 1.5rem;
}

.form-field {
  position: relative;
  display: grid;
  gap: 0.45rem;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  color: var(--paper-dim);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
  transition: border-color 250ms ease;
}

.form-field input,
.form-field select { height: 3rem; }

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  padding-right: 2rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--paper) 50%), linear-gradient(135deg, var(--paper) 50%, transparent 50%);
  background-position: calc(100% - 11px) 50%, calc(100% - 6px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field select option { background: var(--ink); color: var(--paper); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--coral); }

.submit-button {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0 0.7rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 250ms ease, border-color 250ms ease;
}

.submit-button:hover { color: var(--coral); border-color: var(--coral); }

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  color: var(--coral);
  font-size: 0.75rem;
}

.contact__direct {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact__direct div { display: grid; gap: 0.55rem; }
.contact__direct span {
  color: var(--paper-dim);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact__direct a {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  line-height: 1.1;
  transition: color 250ms ease;
}
.contact__direct a:hover { color: var(--coral); }

/* Footer */
.site-footer {
  padding: 6rem var(--page-gutter) 2rem;
  border-top: 1px solid var(--line);
  background: #070608;
  text-align: center;
}

.site-footer__logo {
  display: block;
  width: min(70vw, 33rem);
  margin: auto;
}

.site-footer > p {
  margin-top: 1.8rem;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: rgba(242, 235, 224, 0.48);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom a:hover { color: var(--paper); }

/* Focus view */
.focus-view {
  position: fixed;
  z-index: 6000;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  background: transparent;
  color: var(--paper);
  transition: opacity 420ms ease, display 420ms allow-discrete, overlay 420ms allow-discrete;
}

.focus-view[open] { opacity: 1; }

@starting-style {
  .focus-view[open] { opacity: 0; }
}

.focus-view::backdrop { background: rgba(5, 4, 6, 0.92); backdrop-filter: blur(14px); }

.focus-view__backdrop { position: absolute; inset: 0; }

.focus-view__close {
  position: absolute;
  z-index: 3;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem;
  color: var(--paper-dim);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-view__close svg {
  width: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.focus-view__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 5rem 1fr 5rem;
  align-items: center;
  gap: 2rem;
  padding: 5rem var(--page-gutter) 2rem;
  pointer-events: none;
}

.focus-view__stage > * { pointer-events: auto; }

.focus-view figure {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
}

.focus-view figure > img {
  width: auto;
  max-width: 100%;
  height: calc(100dvh - 11rem);
  margin: auto;
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
}

.focus-view figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2rem;
  width: min(100%, 58rem);
  margin: 1rem auto 0;
}

.focus-view figcaption > span {
  color: var(--coral);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.focus-view figcaption div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.focus-view figcaption h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.focus-view figcaption p {
  color: var(--paper-dim);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.noscript-message {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

/* Turkish language needs slightly tighter display type */
html[lang="tr"] .hero h2,
html[lang="tr"] .contact__header h2 { font-size: clamp(4.2rem, 7.4vw, 8.3rem); }

/* Tablet */
@media (max-width: 1024px) {
  :root { --header-height: 5rem; }

  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.75fr);
    gap: 2rem;
  }

  .hero h2 { font-size: clamp(4.5rem, 9.5vw, 7.8rem); }
  .hero-art { width: min(36vw, 24rem); min-width: 17rem; }
  .hero__intro { margin-left: 0; }

  .room {
    grid-template-columns: 0.4fr 2fr 0.8fr;
    padding: 2.2rem;
  }
  .room__artwork img { max-width: 45vw; }
  .room__info { padding-bottom: 2rem; }

  .work-card:nth-child(n) { grid-column: span 6; margin-top: 0; }
  .work-card:nth-child(even) { margin-top: 6rem; }

  .artist { padding-right: var(--page-gutter); padding-left: var(--page-gutter); }
  .contact { grid-template-columns: 1fr; }
  .contact::before { display: none; }
  .contact__header h2 { max-width: 8ch; }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --page-gutter: 1.2rem;
    --header-height: 4.7rem;
  }

  .cursor,
  .ambient-light { display: none; }

  .eyebrow { font-size: 0.6rem; }
  .entrance__logo { margin-bottom: 2.2rem; }
  .entrance h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .entrance__footer { bottom: max(1.2rem, env(safe-area-inset-bottom)); }
  .entrance__footer > span { max-width: 14rem; }

  .brand { width: 8.7rem; }
  .header-actions > .language-switch { display: none; }
  .language-switch--mobile { display: inline-flex; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.3rem;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 7rem;
  }

  .hero::before { top: 42%; left: 70%; font-size: 65vw; }
  .hero__copy { padding-top: 0; }
  .hero h2 { font-size: clamp(4.3rem, 21vw, 7rem); line-height: 0.79; }
  html[lang="tr"] .hero h2 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .hero__intro { margin-top: 1.7rem; font-size: 1.25rem; }
  .hero-art { width: min(82vw, 25rem); min-width: 0; justify-self: end; }
  .hero-art__caption { font-size: 0.53rem; }
  .hero__note { display: none; }
  .scroll-cue { bottom: 2rem; }

  .threshold {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .threshold::after { display: none; }
  .threshold__number {
    position: absolute;
    top: 4rem;
    right: -0.05em;
    font-size: 70vw;
  }
  .threshold__copy { padding-left: 0; }
  .threshold blockquote { font-size: clamp(2.7rem, 12.5vw, 4.5rem); }

  .section-heading { margin-bottom: 3.5rem; }
  .section-heading h2 { font-size: clamp(3.5rem, 17vw, 5.8rem); }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.2rem; }

  .viewing-room { padding-top: 7rem; padding-bottom: 7rem; }
  .room {
    min-height: 80svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(20rem, 1fr) auto auto;
    gap: 1.6rem;
    padding: 1.25rem;
  }
  .room::before,
  .room::after { display: none; }
  .room__counter { grid-row: 1; }
  .room__artwork-wrap { grid-row: 2; height: min(55svh, 32rem); }
  .room__artwork img { max-width: 76vw; max-height: min(54svh, 31rem); }
  .room__focus-hint { display: none; }
  .room__info { grid-row: 3; padding-bottom: 0; }
  .room__info h3 { margin: 0.55rem 0; font-size: 2.7rem; }
  .room__controls { grid-row: 4; padding-top: 1rem; }
  .round-button { width: 2.8rem; height: 2.8rem; }
  .room__rail { gap: 0.2rem; }
  .room__rail button { height: 2.8rem; font-size: 0; }
  .room__rail button::before,
  .room__rail button::after { bottom: 1.35rem; }

  .interlude {
    min-height: 75svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3rem;
  }
  .interlude__mark svg { width: 7rem; margin: 0; }
  .interlude > p { font-size: clamp(3rem, 13vw, 5rem); }

  .works { padding-top: 7rem; padding-bottom: 7rem; }
  .works-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .work-card:nth-child(n) { grid-column: 1; width: 100%; margin: 0; }
  .work-card:nth-child(even) { width: 88%; justify-self: end; }
  .work-card:nth-child(3n) { width: 78%; }

  .artist {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .artist__portrait { justify-self: start; width: 90%; }
  .artist__copy h2 { font-size: 6rem; }
  .artist__vertical { display: none; }

  .notes { padding-top: 7rem; padding-bottom: 7rem; }
  .notes__grid { grid-template-columns: 1fr; }
  .note-card { min-height: auto; padding: 1.7rem 0 2.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .note-card:last-child { border-bottom: 0; }
  .note-card h3 { margin-top: 4rem; }

  .contact { gap: 4rem; padding-top: 7rem; }
  .contact__header h2 { font-size: clamp(4rem, 19vw, 6.5rem); }
  html[lang="tr"] .contact__header h2 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .contact-form { grid-template-columns: 1fr; }
  .form-field { grid-column: 1; }
  .contact__direct { grid-template-columns: 1fr; margin-top: 2rem; }
  .contact__direct a { font-size: 1.75rem; }

  .site-footer { padding-top: 5rem; }
  .site-footer__bottom { justify-content: center; }

  .focus-view__close { top: max(0.7rem, env(safe-area-inset-top)); right: 0.7rem; }
  .focus-view__stage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    padding: 4.5rem 1rem max(1rem, env(safe-area-inset-bottom));
  }
  .focus-view figure { grid-row: 1; }
  .focus-view figure > img { height: calc(100dvh - 11rem); }
  .focus-view figcaption { gap: 1rem; }
  .focus-view figcaption div { display: block; }
  .focus-view figcaption h2 { font-size: 1.5rem; }
  .focus-view__nav {
    position: absolute;
    z-index: 3;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
  .focus-view__nav--prev { left: 1rem; }
  .focus-view__nav--next { right: 1rem; }
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button { cursor: none; }

  .cursor,
  .ambient-light { opacity: 1; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor,
  .ambient-light { display: none; }
}
