:root {
  --paper: #f3f7f6;
  --paper-light: #fbfdfc;
  --ink: #202829;
  --muted: #687677;
  --accent: #202829;
  --line: rgba(32, 40, 41, 0.15);
  --page: min(1480px, calc(100vw - 80px));
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.site-footer a {
  color: inherit;
  transition: opacity 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.55;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.ui-arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: currentColor;
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.ui-arrow::before {
  position: absolute;
  inset: 0;
  background: currentColor;
  content: "";
  -webkit-mask: var(--arrow-mask) center / contain no-repeat;
  mask: var(--arrow-mask) center / contain no-repeat;
}

.ui-arrow::after {
  display: none;
  content: none;
}

.ui-arrow-ne {
  transform: rotate(-45deg);
}

.ui-arrow-down {
  transform: rotate(90deg);
}

a:hover .ui-arrow-right,
a:focus-visible .ui-arrow-right,
button:hover .ui-arrow-right,
button:focus-visible .ui-arrow-right {
  transform: translateX(2px);
}

a:hover .ui-arrow-ne,
a:focus-visible .ui-arrow-ne,
button:hover .ui-arrow-ne,
button:focus-visible .ui-arrow-ne {
  transform: rotate(-45deg) translateX(2px);
}

a:hover .ui-arrow-down,
a:focus-visible .ui-arrow-down,
button:hover .ui-arrow-down,
button:focus-visible .ui-arrow-down {
  transform: rotate(90deg) translateX(2px);
}

button {
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.intro {
  position: fixed;
  z-index: 2500;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--ink);
  background: var(--paper-light);
  transition: opacity 720ms var(--ease), visibility 0s linear 720ms;
}

.intro-mark {
  display: block;
  width: clamp(52px, 6vw, 76px);
  animation: intro-word 900ms var(--ease) both;
}

.intro-mark img {
  width: 100%;
  height: auto;
}

.intro i {
  width: 48px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  animation: intro-line 700ms var(--ease) 180ms forwards;
}

.intro small {
  opacity: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: intro-copy 600ms var(--ease) 320ms forwards;
}

body.is-loaded .intro {
  visibility: hidden;
  opacity: 0;
}

body.is-loading > :not(.intro):not(.skip-link) {
  opacity: 0;
}

body.is-loaded > :not(.intro):not(.skip-link) {
  opacity: 1;
  transition: opacity 780ms var(--ease) 100ms;
}

@keyframes intro-word {
  from {
    opacity: 0;
    letter-spacing: 0.05em;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    letter-spacing: -0.055em;
    transform: translateY(0);
  }
}

@keyframes intro-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes intro-copy {
  to {
    opacity: 0.62;
  }
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 46px;
  padding: 0 28px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 247, 246, 0.72);
  box-shadow: 0 12px 32px rgba(32, 40, 41, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  display: flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: clamp(118px, 12vw, 170px);
  max-height: 30px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-right {
  justify-self: end;
}

.nav a {
  padding: 8px 0;
  transition: opacity 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 0.55;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 46px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero h1 {
  position: absolute;
  z-index: 1;
  top: 51%;
  right: 50%;
  width: max-content;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(96px, 16vw, 250px);
  font-stretch: normal;
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.68;
  transform: translate(50%, -50%);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  transform: scaleX(0.88) scaleY(1.24);
  transform-origin: center;
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.hero-portrait img {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translate3d(calc(var(--portrait-x, 0px) + 3vw), 0, 0);
  transition: transform 600ms var(--ease);
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.75;
  text-transform: uppercase;
}

.hero-note-left {
  top: 17%;
  left: max(28px, calc((100vw - 1320px) / 2));
}

.hero-note-right {
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 11%;
  align-items: flex-end;
  text-align: right;
}

.hero-note-right strong {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.hero-note-right {
  transition: opacity 180ms ease;
}

.hero-note-right:hover,
.hero-note-right:focus-visible {
  opacity: 0.55;
}

.hero-actions {
  position: absolute;
  z-index: 4;
  bottom: 11%;
  left: max(28px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-bottom {
  display: contents;
}

.hero-meta {
  display: contents;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease;
}

.button-dark {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

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

.button-light:hover,
.button-light:focus-visible {
  color: white;
  background: transparent;
}

.line-link {
  display: inline-flex;
  gap: 24px;
  padding: 9px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-edition {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2));
  top: 17%;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.75;
  text-align: right;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  padding: 34px max(28px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #e7efed;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: grid;
  min-height: 148px;
  padding: 0 clamp(22px, 3vw, 46px);
  border-right: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  height: 118px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.feature-card:hover img {
  transform: scale(1.025);
}

.feature-card span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card b {
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.feature-card small {
  max-width: 150px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
}

.feature-card em {
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-section {
  display: grid;
  height: clamp(680px, 78svh, 780px);
  min-height: 680px;
  padding: 0;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  align-items: stretch;
}

.editorial-copy {
  max-width: 620px;
  padding: clamp(72px, 9vw, 140px) 7vw;
  align-self: center;
}

.kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.editorial-copy h2,
.section-head h2,
.artist-copy h2,
.award-copy h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 94px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.editorial-copy > p:not(.kicker),
.artist-copy > p:not(.kicker),
.booking-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0;
  color: #5d6b6c;
  font-size: 14px;
  line-height: 1.75;
}

.editorial-image {
  position: relative;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #e7edeb;
}

.editorial-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transition: transform 900ms var(--ease);
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.editorial-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: white;
  background: rgba(32, 40, 41, 0.84);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-strip {
  display: grid;
  min-height: 174px;
  padding: 38px max(28px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
  grid-template-columns: 0.38fr minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.principle-strip .kicker {
  margin: 0;
}

.principle-strip > p:nth-child(2) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.principle-strip span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.service-strip {
  display: grid;
  padding: 38px max(28px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
  grid-template-columns: repeat(4, 1fr);
}

.service-strip article {
  display: flex;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  gap: 16px;
  align-items: center;
}

.service-strip article:last-child {
  border-right: 0;
}

.service-icon {
  font-size: 28px;
  font-weight: 300;
}

.service-strip b,
.service-strip small {
  display: block;
}

.service-strip b {
  font-size: 10px;
  text-transform: uppercase;
}

.service-strip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.work-section {
  padding: 86px max(28px, calc((100vw - 1360px) / 2)) 110px;
  background: var(--paper-light);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 32px;
}

.section-head h2 {
  font-size: clamp(52px, 7vw, 110px);
}

.work-grid {
  display: flex;
  overflow-x: auto;
  padding-bottom: 12px;
  gap: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.work-grid::-webkit-scrollbar {
  display: none;
}

.work-controls {
  display: flex;
  gap: 22px;
  align-items: center;
}

.work-next {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 24px;
  cursor: pointer;
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.work-next:hover:not(:disabled),
.work-next:focus-visible:not(:disabled) {
  transform: translateX(3px);
}

.work-next:disabled {
  opacity: 0.22;
  cursor: default;
}

.work-card {
  display: block;
  min-width: clamp(260px, 24vw, 360px);
  flex: 0 0 clamp(260px, 24vw, 360px);
  padding: 0;
  text-align: left;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.work-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.018);
}

.work-card span {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

.work-card b,
.work-card small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-card small {
  color: var(--muted);
}

.artist-section {
  display: grid;
  min-height: 730px;
  grid-template-columns: 1fr 1fr;
}

.artist-photo {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #e4ecea;
}

.artist-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 700ms var(--ease);
}

.artist-photo:hover img {
  transform: scale(1.015);
}

.artist-copy {
  display: flex;
  max-width: 640px;
  padding: 10vw 7vw;
  flex-direction: column;
  justify-content: center;
}

.artist-copy .line-link {
  align-self: flex-start;
  margin-top: 16px;
}

.award-section {
  display: grid;
  height: clamp(540px, 68svh, 680px);
  min-height: 540px;
  padding: 0;
  color: var(--ink);
  background: #edf2f0;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  align-items: stretch;
}

.award-copy {
  padding: clamp(48px, 6vw, 84px) 6vw;
  align-self: center;
}

.award-copy h2 {
  font-size: clamp(40px, 4.8vw, 72px);
}

.award-copy > p:last-child {
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-image {
  display: grid;
  height: 100%;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.booking-section {
  position: relative;
  display: grid;
  height: clamp(680px, 78svh, 800px);
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #e5ecea;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
}

.booking-image {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.booking-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 650px;
  padding: clamp(72px, 9vw, 140px) 7vw;
  align-self: center;
}

.booking-copy h2 {
  font-size: clamp(52px, 7vw, 105px);
}

.booking-copy > p:not(.kicker) {
  color: var(--muted);
}

.booking-actions {
  display: flex;
  margin-top: 32px;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.booking-actions > a:last-child {
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.booking-links {
  display: flex;
  margin-top: 66px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 30px;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-travel {
  max-width: 560px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-travel-title {
  margin: 0 0 12px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.booking-travel p:not(.booking-travel-title) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  min-height: 74px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #eff3f2;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer span:nth-child(2) {
  justify-self: center;
}

.site-footer span:first-child {
  color: var(--ink);
}

.site-footer span:last-child {
  justify-self: end;
}

.site-footer button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible {
  color: var(--ink);
}

.cookie-consent {
  position: fixed;
  z-index: 1800;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(520px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(32, 40, 41, 0.16);
  color: var(--ink);
  background: rgba(247, 247, 245, 0.94);
  box-shadow: 0 22px 70px rgba(32, 40, 41, 0.16);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  opacity: 0;
  transform: translateY(18px);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
  transition: opacity 320ms ease, transform 320ms var(--ease);
}

.cookie-consent[hidden] {
  display: none;
}

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

.cookie-copy > p:last-child {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: grid;
  gap: 8px;
}

.cookie-actions .button {
  min-width: 124px;
  min-height: 36px;
  padding: 0 14px;
  font-size: 8px;
}

.button-light {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

.hero-portrait.reveal {
  transform: translateY(24px);
}

.hero-portrait.reveal.is-visible {
  transform: translateY(0);
}

.lightbox {
  width: min(800px, calc(100vw - 32px));
  max-width: none;
  height: min(900px, calc(100svh - 32px));
  max-height: none;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.lightbox::backdrop {
  background: rgba(25, 32, 33, 0.9);
  backdrop-filter: blur(10px);
}

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

.lightbox p {
  height: 48px;
  margin: 0;
  padding: 14px 18px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: rgba(32, 40, 41, 0.8);
  cursor: pointer;
}

@media (max-width: 980px) {
  :root {
    --page: calc(100vw - 40px);
  }

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

  .menu-toggle {
    display: block;
    justify-self: start;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-left {
    position: fixed;
    z-index: 90;
    top: 46px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 60px 28px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-102%);
    transition: transform 500ms var(--ease);
  }

  .nav-left.is-open {
    transform: translateX(0);
  }

  .nav-left a {
    font-size: clamp(42px, 10vw, 82px);
    font-weight: 700;
    letter-spacing: -0.06em;
    text-transform: uppercase;
  }

  .nav-right a:first-child {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 46px);
  }

  .hero-portrait {
    width: 100%;
  }

  .hero-portrait img {
    bottom: -1px;
    left: 50%;
    width: auto;
    height: 110%;
    transform: translate3d(calc(-50% + var(--portrait-x, 0px) + 3vw), 0, 0);
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .editorial-section {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .service-strip article:nth-child(2) {
    border-right: 0;
  }

  .work-grid {
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 44px;
    padding: 0 14px;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    width: 100%;
    max-height: 24px;
  }

  .nav-right .nav-book {
    font-size: 0;
  }

  .nav-right .nav-book::before {
    font-size: 9px;
    content: attr(data-short);
  }

  .nav-left {
    top: 44px;
  }

  .hero {
    min-height: calc(100svh - 44px);
  }

  .hero h1 {
    z-index: 3;
    top: 44%;
    right: auto;
    left: 50%;
    width: 100%;
    color: var(--ink);
    font-size: clamp(42px, 12vw, 54px);
    letter-spacing: -0.055em;
    text-align: center;
    -webkit-text-stroke: 1.25px rgba(247, 247, 245, 0.9);
    paint-order: stroke fill;
    text-shadow:
      0 0 12px rgba(247, 247, 245, 0.72),
      0 0 24px rgba(247, 247, 245, 0.45);
    transform: translate(-50%, -50%);
  }

  .hero h1 span {
    transform: scaleX(0.88) scaleY(1.18);
  }

  .hero-portrait {
    width: 100%;
    max-width: none;
  }

  .hero-portrait img {
    bottom: -1px;
    left: 50%;
    width: auto;
    height: min(78%, 650px);
    transform: translate3d(calc(-50% + 3vw), 0, 0);
  }

  .hero-note {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero-note-left {
    top: 10%;
    left: 14px;
  }

  .hero-note-right {
    right: 14px;
    bottom: 18%;
    text-align: right;
  }

  .hero-actions {
    right: 14px;
    bottom: 4%;
    left: 14px;
    justify-content: space-between;
  }

  .hero-actions .button {
    min-height: 38px;
    padding-inline: 16px;
  }

  .hero-edition {
    display: block;
    top: 10%;
    right: 14px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .feature-band {
    padding: 18px 14px;
  }

  .feature-card {
    min-height: 132px;
    padding: 18px 0;
    grid-template-columns: 82px 1fr;
  }

  .feature-card img {
    height: 100px;
  }

  .editorial-section {
    height: auto;
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .editorial-copy {
    padding: 70px 14px;
  }

  .editorial-image {
    height: min(150vw, 760px);
    min-height: 560px;
  }

  .principle-strip {
    min-height: 0;
    padding: 46px 14px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .principle-strip span {
    text-align: left;
  }

  .service-strip {
    padding: 32px 14px;
    grid-template-columns: 1fr;
  }

  .service-strip article {
    min-height: 56px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-section {
    padding: 70px 14px 86px;
  }

  .section-head {
    display: block;
  }

  .section-head .line-link {
    margin-top: 24px;
  }

  .work-grid {
    gap: 12px;
  }

  .work-card {
    min-width: min(78vw, 330px);
    flex-basis: min(78vw, 330px);
  }

  .work-controls {
    margin-top: 28px;
    justify-content: space-between;
  }

  .work-next {
    width: 48px;
    height: 48px;
  }

  .work-card span {
    display: block;
  }

  .work-card small {
    display: block;
    margin-top: 4px;
  }

  .artist-section {
    grid-template-columns: 1fr;
  }

  .artist-photo {
    min-height: 520px;
  }

  .artist-copy {
    padding: 76px 14px;
  }

  .award-section {
    height: auto;
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .award-copy {
    padding: 58px 14px;
  }

  .award-image {
    height: 420px;
    min-height: 0;
  }

  .award-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 50% 42%;
  }

  .booking-section {
    height: auto;
    min-height: 670px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-image {
    grid-row: 1;
    min-height: min(150vw, 760px);
  }

  .booking-copy {
    grid-row: 2;
    grid-column: auto;
    padding: 74px 14px;
  }

  .booking-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  .site-footer {
    min-height: 110px;
    padding: 20px 14px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero-portrait img {
    height: 76%;
  }

  .hero h1 {
    top: 42%;
  }

  .hero-note-left,
  .hero-edition {
    top: 8%;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium editorial system */

:root {
  --content: min(1260px, calc(100vw - 96px));
  --gutter: max(48px, calc((100vw - 1260px) / 2));
  --section-space: clamp(92px, 9vw, 136px);
}

.editorial-section,
.artist-section,
.award-section {
  width: var(--content);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  padding: var(--section-space) 0;
  gap: clamp(52px, 7vw, 112px);
  align-items: center;
}

.editorial-section {
  margin: var(--section-space) auto;
  padding: 0;
  overflow: hidden;
  background: var(--paper-light);
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
}

.editorial-copy,
.artist-copy,
.award-copy,
.booking-copy {
  width: 100%;
  max-width: 540px;
  padding: 0;
  align-self: center;
}

.editorial-copy {
  max-width: none;
  padding: clamp(52px, 6vw, 88px);
}

.editorial-copy h2,
.section-head h2,
.artist-copy h2,
.award-copy h2,
.booking-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-align: left;
  text-transform: uppercase;
}

.editorial-copy > p:not(.kicker),
.artist-copy > p:not(.kicker),
.booking-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.kicker {
  margin-bottom: 22px;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.editorial-image,
.artist-photo,
.booking-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 610px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #e6ecea;
}

.editorial-image {
  height: 100%;
  max-height: none;
}

.editorial-image img,
.artist-photo img,
.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.editorial-image img {
  object-position: 50% 56%;
}

.artist-photo img {
  object-position: 50% 24%;
}

.booking-image img {
  object-position: 50% 43%;
}

.editorial-image figcaption {
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: rgba(32, 40, 41, 0.78);
}

.practice-steps {
  margin: 34px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.practice-steps li {
  display: grid;
  min-height: 62px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
}

.practice-steps li > span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.practice-steps div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.practice-steps strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-steps small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.principle-strip {
  width: var(--content);
  min-height: 154px;
  margin: 0 auto;
  padding: 38px 0;
  background: transparent;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 72px);
}

.principle-strip > p:nth-child(2) {
  max-width: 710px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.work-section {
  padding: var(--section-space) var(--gutter);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.section-head {
  max-width: 1260px;
  margin: 0 auto 46px;
  gap: 40px;
  align-items: flex-end;
}

.section-head h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.work-grid {
  max-width: 1260px;
  margin: 0 auto;
  gap: 16px;
}

.work-card {
  min-width: clamp(250px, 22vw, 320px);
  flex-basis: clamp(250px, 22vw, 320px);
}

.work-card img {
  aspect-ratio: 4 / 5;
}

.work-card span {
  margin-top: 11px;
  padding-top: 10px;
}

.work-next {
  width: 48px;
  height: 48px;
  font-size: 21px;
}

.artist-section {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
}

.artist-photo {
  max-width: 500px;
  justify-self: start;
}

.artist-copy {
  max-width: 560px;
  justify-self: end;
}

.artist-copy .line-link {
  margin-top: 10px;
}

.award-section {
  width: var(--content);
  min-height: 0;
  margin-bottom: var(--section-space);
  padding: 0;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
}

.award-copy {
  display: flex;
  max-width: none;
  padding: clamp(52px, 6vw, 88px);
  justify-content: center;
  flex-direction: column;
}

.award-copy h2 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 72px);
  color: var(--paper-light);
}

.award-copy .kicker {
  color: rgba(251, 253, 252, 0.58);
}

.award-intro {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(251, 253, 252, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.award-results {
  display: grid;
  max-width: 590px;
  margin: clamp(34px, 4vw, 54px) 0 0;
  border-top: 1px solid rgba(251, 253, 252, 0.22);
  border-bottom: 1px solid rgba(251, 253, 252, 0.22);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.award-results div {
  padding: 20px 22px 20px 0;
}

.award-results div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(251, 253, 252, 0.22);
}

.award-results dt,
.award-results dd {
  margin: 0;
}

.award-results dt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-results dt span {
  color: rgba(251, 253, 252, 0.42);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.award-results dd {
  margin-top: 7px;
  color: rgba(251, 253, 252, 0.58);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.award-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.award-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: var(--paper-light);
  background: rgba(32, 40, 41, 0.76);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-section {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: var(--section-space) var(--gutter);
  background: #e5ecea;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: center;
}

.booking-image {
  max-width: 500px;
  justify-self: start;
}

.booking-copy {
  grid-column: auto;
  max-width: 580px;
  justify-self: end;
}

.booking-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.booking-actions {
  margin-top: 30px;
  gap: 22px;
}

.booking-links {
  margin-top: 48px;
  padding-top: 17px;
  gap: 24px;
}

.site-footer {
  min-height: 44px;
  padding: 0 28px;
  border-top: 0;
  background: rgba(243, 247, 246, 0.72);
  box-shadow: 0 -12px 32px rgba(32, 40, 41, 0.05);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

@media (max-width: 980px) {
  :root {
    --content: calc(100vw - 56px);
    --gutter: 28px;
    --section-space: 86px;
  }

  .editorial-section,
  .artist-section,
  .award-section,
  .booking-section {
    gap: 44px;
  }

  .editorial-section {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 0;
  }

  .artist-section,
  .booking-section {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  }

  .award-section {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    padding: 0;
    gap: 0;
  }

  .editorial-image,
  .artist-photo,
  .booking-image {
    max-height: 540px;
  }

  .principle-strip {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .principle-strip span {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100vw - 40px);
    --gutter: 20px;
    --section-space: 72px;
  }

  .editorial-section,
  .artist-section,
  .award-section,
  .booking-section {
    width: var(--content);
    height: auto;
    min-height: 0;
    padding: var(--section-space) 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .editorial-copy,
  .artist-copy,
  .award-copy,
  .booking-copy {
    max-width: none;
    justify-self: stretch;
  }

  .editorial-copy h2,
  .section-head h2,
  .artist-copy h2,
  .award-copy h2,
  .booking-copy h2 {
    font-size: clamp(39px, 12vw, 56px);
    line-height: 0.96;
  }

  .editorial-image,
  .artist-photo,
  .booking-image {
    width: min(100%, 460px);
    height: auto;
    min-height: 0;
    max-height: 560px;
    justify-self: start;
  }

  .editorial-section {
    width: var(--content);
    margin: var(--section-space) auto;
    padding: 0;
    gap: 0;
  }

  .editorial-image {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .editorial-copy {
    padding: 42px 24px;
  }

  .practice-steps div {
    display: block;
  }

  .practice-steps small {
    display: block;
    margin-top: 4px;
  }

  .principle-strip {
    width: var(--content);
    padding: 42px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .principle-strip > p:nth-child(2) {
    font-size: 24px;
  }

  .principle-strip span {
    display: block;
    text-align: left;
  }

  .work-section {
    padding: var(--section-space) var(--gutter);
  }

  .section-head {
    display: block;
    margin-bottom: 36px;
  }

  .work-controls {
    margin-top: 26px;
  }

  .work-card {
    min-width: min(76vw, 300px);
    flex-basis: min(76vw, 300px);
  }

  .artist-photo {
    grid-row: 1;
  }

  .artist-copy {
    grid-row: 2;
  }

  .award-section {
    width: calc(100vw - 40px);
    margin-bottom: var(--section-space);
    padding: 0;
    background: var(--ink);
    gap: 0;
  }

  .award-image {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .award-copy {
    padding: 42px 24px 34px;
  }

  .award-results {
    margin-top: 34px;
  }

  .booking-section {
    width: 100%;
    padding: var(--section-space) var(--gutter);
    background: #e5ecea;
  }

  .booking-image {
    grid-row: 1;
  }

  .booking-copy {
    grid-row: 2;
  }

  .booking-links {
    margin-top: 38px;
  }

  .site-footer {
    min-height: 42px;
    padding: 0 14px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-copy > p:last-child {
    max-width: none;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .button {
    min-width: 0;
  }
}

/* Phone composition */

@media (max-width: 760px) {
  :root {
    --content: calc(100vw - 32px);
    --gutter: 16px;
    --section-space: 64px;
  }

  body {
    font-size: 14px;
  }

  main {
    overflow: hidden;
  }

  section[id] {
    scroll-margin-top: 44px;
  }

  .hero {
    width: 100%;
    height: calc(100svh - 44px);
    min-height: 620px;
  }

  .hero h1 {
    z-index: 3;
    top: 43%;
    left: 50%;
    width: 100%;
    color: var(--ink);
    font-size: clamp(44px, 12vw, 64px);
    letter-spacing: -0.055em;
    text-align: center;
    -webkit-text-stroke: 1px rgba(251, 253, 252, 0.92);
    paint-order: stroke fill;
    text-shadow:
      0 0 12px rgba(251, 253, 252, 0.7),
      0 0 24px rgba(251, 253, 252, 0.4);
    transform: translate(-50%, -50%);
  }

  .hero h1 span {
    transform: scaleX(0.9) scaleY(1.16);
  }

  .hero-portrait {
    z-index: 2;
    inset: 0;
  }

  .hero-portrait img {
    bottom: -1px;
    left: 50%;
    width: auto;
    height: min(64%, 900px);
    max-width: none;
    transform: translate3d(calc(-50% + 14vw), 0, 0);
  }

  .hero-note,
  .hero-edition {
    font-size: 8px;
    letter-spacing: 0.16em;
    line-height: 1.65;
  }

  .hero-note-left,
  .hero-edition {
    top: 68px;
  }

  .hero-note-left {
    left: 16px;
  }

  .hero-edition {
    right: 16px;
  }

  .hero-note-right {
    z-index: 5;
    right: 16px;
    bottom: 84px;
    width: max-content;
    padding: 9px 10px;
    color: var(--ink);
    background: rgba(251, 253, 252, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: flex-end;
    text-align: right;
  }

  .hero-note-right strong {
    color: var(--ink);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    z-index: 5;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .line-link {
    width: 100%;
    min-height: 52px;
    padding: 0 13px;
    justify-content: space-between;
    border: 1px solid var(--ink);
    font-size: 8px;
    line-height: 1.25;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .hero-actions .line-link {
    color: var(--ink);
    background: rgba(251, 253, 252, 0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .editorial-section,
  .artist-section,
  .award-section,
  .booking-section {
    width: var(--content);
    height: auto;
    min-height: 0;
    margin: var(--section-space) auto;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .editorial-image,
  .artist-photo,
  .award-image,
  .booking-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    justify-self: stretch;
  }

  .editorial-image {
    aspect-ratio: 16 / 11;
  }

  .editorial-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .editorial-copy,
  .artist-copy,
  .award-copy,
  .booking-copy {
    width: 100%;
    max-width: none;
    padding: 30px 22px 34px;
    justify-self: stretch;
  }

  .editorial-copy h2,
  .section-head h2,
  .artist-copy h2,
  .award-copy h2,
  .booking-copy h2 {
    max-width: 12ch;
    font-size: clamp(36px, 10.5vw, 48px);
    letter-spacing: -0.05em;
    line-height: 0.98;
  }

  .editorial-copy > p:not(.kicker),
  .artist-copy > p:not(.kicker),
  .booking-copy > p:not(.kicker),
  .award-intro {
    max-width: 42rem;
    margin: 21px 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .kicker {
    margin-bottom: 14px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .practice-steps {
    margin: 26px 0 24px;
  }

  .practice-steps li {
    min-height: 58px;
  }

  .principle-strip {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 38px 20px 40px;
    border: 0;
    color: var(--paper-light);
    background: var(--ink);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .principle-strip .kicker,
  .principle-strip span {
    color: rgba(251, 253, 252, 0.58);
  }

  .principle-strip > p:nth-child(2) {
    max-width: 17ch;
    color: var(--paper-light);
    font-size: clamp(24px, 7.6vw, 34px);
    line-height: 1.08;
  }

  .principle-strip span {
    display: block;
    font-size: 9px;
    line-height: 1.6;
    text-align: left;
  }

  .work-section {
    padding: var(--section-space) 16px 70px;
  }

  .section-head {
    display: grid;
    max-width: none;
    margin: 0 0 28px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-head h2 {
    max-width: none;
  }

  .work-controls {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .work-controls .line-link {
    min-height: 44px;
    padding: 0 2px;
    align-items: center;
  }

  .work-next {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .work-grid {
    width: calc(100vw - 16px);
    max-width: none;
    margin: 0;
    padding: 0 16px 8px 0;
    gap: 12px;
    scroll-padding-left: 0;
  }

  .work-card {
    min-width: min(72vw, 280px);
    flex-basis: min(72vw, 280px);
  }

  .work-card span {
    margin-top: 8px;
    padding-top: 9px;
  }

  .artist-section {
    background: transparent;
  }

  .artist-photo {
    width: min(88%, 390px);
    aspect-ratio: 4 / 5;
    margin-inline: auto;
    justify-self: center;
    grid-row: 1;
  }

  .artist-photo img {
    object-position: 50% 24%;
  }

  .artist-copy {
    padding: 30px 0 0;
    grid-row: 2;
  }

  .artist-copy > p:not(.kicker) {
    margin: 18px 0;
  }

  .award-section {
    width: var(--content);
    padding: 34px 22px 24px;
    color: var(--paper-light);
    background: var(--ink);
  }

  .award-copy {
    padding: 0;
    grid-row: 1;
  }

  .award-copy h2 {
    color: var(--paper-light);
  }

  .award-copy .kicker,
  .award-intro {
    color: rgba(251, 253, 252, 0.62);
  }

  .award-results {
    margin: 28px 0 30px;
  }

  .award-results div {
    padding: 16px 12px 16px 0;
  }

  .award-results div + div {
    padding-left: 12px;
  }

  .award-image {
    width: min(88%, 360px);
    aspect-ratio: 4 / 5;
    justify-self: center;
    grid-row: 2;
  }

  .award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .booking-section {
    width: 100%;
    margin-bottom: 0;
    padding: 54px 16px 64px;
    background: #e5ecea;
  }

  .booking-copy {
    padding: 0;
    grid-row: 1;
  }

  .booking-copy h2 {
    max-width: 10ch;
  }

  .booking-actions {
    display: grid;
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-actions .button {
    min-height: 50px;
  }

  .booking-actions > a:last-child {
    width: max-content;
    padding-bottom: 4px;
  }

  .booking-links {
    margin-top: 34px;
    padding-top: 15px;
    justify-content: space-between;
    gap: 12px;
    font-size: 8px;
  }

  .booking-image {
    width: min(88%, 390px);
    margin-top: 34px;
    aspect-ratio: 4 / 5;
    justify-self: end;
    grid-row: 2;
  }

  .booking-image img {
    object-position: 50% 38%;
  }

  .site-footer {
    min-height: 0;
    padding: 15px 16px;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    font-size: 9px;
    line-height: 1.5;
  }

  .site-footer span:first-child {
    align-self: center;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }

  .site-footer span:last-child {
    justify-self: end;
    text-align: right;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    padding: 18px;
    overflow-y: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-portrait img {
    height: min(60%, 640px);
  }

  .hero h1 {
    top: 40%;
  }

  .hero-note-left,
  .hero-edition {
    top: 48px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    top: 37%;
  }

  .hero-portrait img {
    bottom: 56px;
  }

  .hero-actions {
    right: auto;
    bottom: 16px;
    left: 16px;
    width: 162px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-actions .button,
  .hero-actions .line-link {
    min-height: 42px;
  }

  .hero-actions .line-link {
    min-height: 36px;
  }

  .hero-note-right {
    right: 16px;
    bottom: 16px;
    width: 118px;
    min-height: 85px;
    padding: 10px;
    justify-content: center;
  }

  .section-head {
    gap: 12px;
  }

  .work-controls {
    margin-top: 0;
  }

  .booking-section {
    padding-top: 46px;
    padding-bottom: 32px;
    scroll-margin-top: 60px;
  }

  .booking-actions .button {
    min-height: 46px;
  }

  .booking-image {
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  .hero {
    height: min(calc(100svh - 44px), 680px);
    min-height: 620px;
  }

  .hero h1 {
    z-index: 1;
    top: 32%;
    font-size: clamp(50px, 13.5vw, 70px);
    -webkit-text-stroke: 0;
    text-shadow: none;
  }

  .hero h1 span {
    transform: scaleX(0.85) scaleY(1.18);
  }

  .hero-portrait img {
    bottom: 94px;
    height: min(78%, 860px);
    transform: translate3d(calc(-50% + 14vw), 0, 0);
  }

  .hero-note-left,
  .hero-edition {
    top: 52px;
  }

  .hero-bottom {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 94px;
    border-top: 1px solid var(--line);
    background: rgba(251, 253, 252, 0.94);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
    grid-template-columns: minmax(0, 1.35fr) minmax(112px, 0.65fr);
  }

  .hero-bottom .hero-actions {
    position: static;
    display: grid;
    width: auto;
    padding: 10px 12px;
    border-right: 1px solid var(--line);
    grid-template-columns: 1fr;
    gap: 5px;
    align-content: center;
  }

  .hero-bottom .hero-actions .button {
    min-height: 38px;
  }

  .hero-bottom .hero-actions .line-link {
    min-height: 28px;
    padding: 0 3px;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-bottom .hero-note-right {
    position: static;
    width: auto;
    min-height: 0;
    padding: 12px;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    justify-content: center;
  }

  .work-section {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .booking-image {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body.menu-open .site-header {
    background: rgba(251, 253, 252, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .nav-left {
    top: 44px;
    display: flex;
    padding: 22px 18px 18px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(243, 247, 246, 0.98), rgba(251, 253, 252, 0.99)),
      var(--paper-light);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    counter-reset: mobile-navigation;
  }

  .nav-left::before {
    margin-bottom: 12px;
    color: var(--muted);
    content: "Navigation";
    font-size: 8px;
    font-weight: 650;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .nav-left a {
    display: grid;
    min-height: 72px;
    padding: 0 4px;
    border-top: 1px solid var(--line);
    opacity: 0;
    font-size: clamp(36px, 11.5vw, 52px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.92;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    counter-increment: mobile-navigation;
    transform: translateY(14px);
    transition:
      opacity 360ms ease,
      transform 500ms var(--ease),
      color 220ms ease,
      background 220ms ease;
  }

  .nav-left a::before {
    color: var(--muted);
    content: "0" counter(mobile-navigation);
    font-size: 8px;
    font-weight: 650;
    letter-spacing: 0.14em;
  }

  .nav-left a::after {
    width: 14px;
    height: 14px;
    background: currentColor;
    content: "";
    -webkit-mask: var(--arrow-mask) center / contain no-repeat;
    mask: var(--arrow-mask) center / contain no-repeat;
    transform: rotate(-45deg);
    transition: transform 260ms var(--ease);
  }

  .nav-left a:hover::after,
  .nav-left a:focus-visible::after {
    transform: rotate(-45deg) translateX(2px);
  }

  .nav-left a:last-of-type {
    min-height: 64px;
    margin-top: 14px;
    padding: 0 14px;
    border: 0;
    color: var(--paper-light);
    background: var(--ink);
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .nav-left a:last-of-type::before {
    color: rgba(251, 253, 252, 0.52);
  }

  .nav-left::after {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    content: "Tattoo artist · Black & grey realism\A Linköping · Sweden";
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.8;
    white-space: pre;
    text-transform: uppercase;
  }

  .nav-left.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-left.is-open a:nth-of-type(1) {
    transition-delay: 80ms;
  }

  .nav-left.is-open a:nth-of-type(2) {
    transition-delay: 130ms;
  }

  .nav-left.is-open a:nth-of-type(3) {
    transition-delay: 180ms;
  }

  .nav-left.is-open a:nth-of-type(4) {
    transition-delay: 230ms;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    top: 52%;
  }

  .hero-portrait img {
    bottom: 0;
    height: min(74%, 800px);
  }

  .hero-bottom {
    top: 96px;
    right: 16px;
    bottom: auto;
    left: 16px;
    min-height: 72px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    grid-template-columns: minmax(0, 1.3fr) minmax(104px, 0.7fr);
  }

  .hero-bottom .hero-actions {
    padding: 8px 12px 6px 0;
  }

  .hero-bottom .hero-actions .button {
    min-height: 32px;
    padding-inline: 10px;
  }

  .hero-bottom .hero-actions .line-link {
    min-height: 22px;
    font-size: 9px;
  }

  .hero-bottom .hero-note-right {
    padding: 8px 0 6px 12px;
  }

  .hero-bottom .hero-note-right strong {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
}

/* Mobile hero — editorial cover composition */

.hero-brand-row {
  display: inline;
  font-style: normal;
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    height: min(calc(100svh - 44px), 760px);
    min-height: 670px;
    background:
      linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(31, 40, 41, 0.055) 50%, transparent calc(50% + 0.5px)),
      var(--paper-light);
  }

  .hero::after {
    position: absolute;
    z-index: 3;
    bottom: 76px;
    left: 16px;
    color: rgba(31, 40, 41, 0.52);
    content: "01  /  MORENOALDO";
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .hero-note,
  .hero-edition {
    font-size: 9px;
    letter-spacing: 0.18em;
    line-height: 1.55;
  }

  .hero-note-left,
  .hero-edition {
    top: 24px;
  }

  .hero-note-left {
    left: 16px;
  }

  .hero-edition {
    right: 16px;
    text-align: right;
  }

  .hero h1 {
    z-index: 1;
    top: 43%;
    right: 16px;
    left: 16px;
    width: auto;
    color: var(--ink);
    font-size: clamp(80px, 24.5vw, 108px);
    letter-spacing: -0.075em;
    line-height: 0.7;
    text-align: left;
    transform: translateY(-50%);
  }

  .hero h1 > span {
    display: block;
    white-space: normal;
    transform: none;
  }

  .hero-brand-row {
    display: block;
    font-style: normal;
    line-height: 0.7;
  }

  .hero-brand-row-two {
    margin-top: 16px;
    text-align: right;
  }

  .hero-portrait {
    z-index: 2;
  }

  .hero-portrait img {
    bottom: -1px;
    left: 50%;
    width: auto;
    height: min(70%, 570px);
    max-width: none;
    transform: translate3d(-50%, 0, 0);
  }

  .hero-bottom {
    display: contents;
  }

  .hero-bottom .hero-note-right {
    position: absolute;
    z-index: 4;
    top: 76px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 0;
    padding: 0 0 7px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
  }

  .hero-bottom .hero-note-right strong {
    color: var(--ink);
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero-bottom .hero-actions {
    position: absolute;
    z-index: 6;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
    width: auto;
    padding: 0;
    border: 0;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 8px;
  }

  .hero-bottom .hero-actions .button,
  .hero-bottom .hero-actions .line-link {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid var(--ink);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero-bottom .hero-actions .button {
    justify-content: space-between;
  }

  .hero-bottom .hero-actions .button::after {
    display: none;
    content: none;
  }

  .hero-bottom .hero-actions .line-link {
    min-height: 46px;
    padding: 0 11px;
    color: var(--ink);
    background: rgba(251, 253, 252, 0.86);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    justify-content: space-between;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    height: 650px;
    min-height: 650px;
  }

  .hero h1 {
    top: 42%;
  }

  .hero-portrait img {
    height: min(67%, 500px);
  }
}

/* Mobile hero — restrained campaign composition */

@media (max-width: 760px) {
  .hero {
    height: min(calc(100svh - 44px), 560px);
    min-height: 520px;
    background: inherit;
  }

  .hero-meta {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 16px;
    left: 16px;
    display: grid;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
  }

  .hero-meta .hero-note,
  .hero-meta .hero-edition {
    position: static;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.55;
  }

  .hero-meta .hero-note-left {
    align-items: flex-start;
    text-align: left;
  }

  .hero-meta .hero-edition {
    justify-self: center;
    text-align: center;
  }

  .hero-meta .hero-note-right {
    align-items: flex-end;
    text-align: right;
  }

  .hero-meta .hero-note-right strong {
    color: var(--ink);
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero-meta .hero-note-right span:last-child {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
    content: none;
  }

  .hero h1 {
    z-index: 1;
    top: 43%;
    right: auto;
    left: 50%;
    width: max-content;
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -0.065em;
    line-height: 0.75;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .hero h1 > span {
    display: block;
    white-space: nowrap;
    transform: scaleX(0.92) scaleY(1.16);
    transform-origin: center;
  }

  .hero-brand-row {
    display: inline;
    margin: 0;
    font-style: normal;
    line-height: inherit;
    text-align: inherit;
  }

  .hero-portrait img {
    bottom: 52px;
    left: 50%;
    height: min(68%, 420px);
    transform: translate3d(-50%, 0, 0);
  }

  .hero-bottom .hero-actions {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    color: var(--paper-light);
    background: var(--ink);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
  }

  .hero-bottom .hero-actions .button,
  .hero-bottom .hero-actions .line-link {
    width: auto;
    min-height: 52px;
    padding: 0;
    border: 0;
    color: var(--paper-light);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    align-items: center;
  }

  .hero-bottom .hero-actions .button {
    justify-content: space-between;
  }

  .hero-bottom .hero-actions .button::after {
    margin-left: 10px;
    font-size: 10px;
  }

  .hero-bottom .hero-actions .line-link {
    gap: 10px;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    height: 520px;
    min-height: 520px;
  }

  .hero h1 {
    top: 43%;
  }

  .hero-portrait img {
    height: min(66%, 380px);
  }
}

/* Final motion and mobile viewport polish */

.reveal {
  filter: blur(4px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease),
    clip-path 1100ms var(--ease);
}

.reveal.is-visible {
  filter: blur(0);
}

.editorial-image.reveal,
.artist-photo.reveal,
.award-image.reveal,
.booking-image.reveal {
  clip-path: inset(0 0 7% 0);
}

.editorial-image.reveal.is-visible,
.artist-photo.reveal.is-visible,
.award-image.reveal.is-visible,
.booking-image.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.work-card.reveal {
  transform: translateY(30px) scale(0.985);
}

.work-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 760px) {
  .work-grid {
    overflow-x: hidden;
    touch-action: pan-y pinch-zoom;
    scroll-snap-type: none;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
  }

  .work-card,
  .work-card img {
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
  }

  .work-card img {
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .hero {
    height: calc(100svh - 44px);
    height: calc(100dvh - 44px);
    min-height: calc(100svh - 44px);
    max-height: none;
  }

  .hero h1 {
    top: 48%;
    transform: translate(-50%, calc(-50% + var(--hero-word-scroll, 0px)));
  }

  .hero-portrait img {
    bottom: 52px;
    height: clamp(390px, 66%, 590px);
    transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0);
  }

  .hero-bottom .hero-actions .button::after {
    display: none;
    content: none;
  }

  body.is-loaded .hero-meta > * {
    animation: hero-detail-in 760ms var(--ease) both;
  }

  body.is-loaded .hero-meta > :nth-child(1) {
    animation-delay: 90ms;
  }

  body.is-loaded .hero-meta > :nth-child(2) {
    animation-delay: 170ms;
  }

  body.is-loaded .hero-meta > :nth-child(3) {
    animation-delay: 250ms;
  }

  body.is-loaded .hero h1 > span {
    animation: hero-word-in 980ms var(--ease) 180ms both;
  }

  body.is-loaded .hero-portrait img {
    animation: hero-portrait-in 1100ms var(--ease) 260ms both;
  }

  body.is-loaded .hero-bottom .hero-actions {
    animation: hero-actions-in 800ms var(--ease) 540ms both;
  }

  @keyframes hero-detail-in {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-word-in {
    from {
      opacity: 0;
      letter-spacing: -0.09em;
      transform: scaleX(0.84) scaleY(1.1) translateY(16px);
    }

    to {
      opacity: 1;
      letter-spacing: inherit;
      transform: scaleX(0.92) scaleY(1.16) translateY(0);
    }
  }

  @keyframes hero-portrait-in {
    from {
      opacity: 0;
      transform: translate3d(-50%, 26px, 0) scale(0.97);
    }

    to {
      opacity: 1;
      transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0) scale(1);
    }
  }

  @keyframes hero-actions-in {
    from {
      opacity: 0;
      transform: translateY(100%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    height: calc(100svh - 44px);
    height: calc(100dvh - 44px);
    min-height: calc(100svh - 44px);
  }

  .hero h1 {
    top: 47%;
  }

  .hero-portrait img {
    height: clamp(380px, 65%, 500px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-loaded .hero-meta > *,
  body.is-loaded .hero h1 > span,
  body.is-loaded .hero-portrait img,
  body.is-loaded .hero-bottom .hero-actions {
    animation: none;
  }

  .reveal,
  .ui-arrow::before,
  .ui-arrow::after {
    transition: none;
  }
}

/* Direction-aware mobile portfolio gestures, crisp hero crop, and compact brand footer */

@media (max-width: 980px) {
  body.menu-open .site-header {
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-left {
    z-index: 1900;
    height: calc(100svh - 44px);
    height: calc(100dvh - 44px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-102%, 0, 0);
    transition:
      transform 500ms var(--ease),
      opacity 260ms ease,
      visibility 0s linear 500ms;
  }

  .nav-left.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
}

@media (max-width: 760px) {
  .work-grid {
    overflow-x: hidden;
    touch-action: pan-y pinch-zoom;
    scroll-behavior: auto;
  }

  .work-grid.is-touch-dragging {
    cursor: grabbing;
  }

  .hero-portrait.reveal,
  .hero-portrait.reveal.is-visible {
    filter: none;
  }

  .hero-portrait img {
    bottom: -64px;
    height: clamp(520px, 88%, 760px);
    clip-path: none;
  }
}

.site-footer {
  display: grid;
  min-height: 58px;
  padding: 8px 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: rgba(243, 247, 246, 0.78);
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: start;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer span.footer-name {
  display: inline;
  justify-self: center;
  color: var(--ink);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.footer-instagram {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.footer-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.footer-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer .footer-links button {
  width: auto;
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 54px;
    padding: 7px 16px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .footer-mark {
    width: 30px;
    height: 30px;
  }

  .site-footer span.footer-name {
    display: inline;
    justify-self: start;
    font-size: 8px;
  }

  .footer-links {
    gap: 14px;
  }

  .site-footer .footer-links button {
    width: auto;
    font-size: 7px;
  }
}

/* Mobile hero — action-led campaign composition */

.hero-portrait picture {
  display: contents;
}

@media (max-width: 760px) {
  .hero {
    height: calc(100svh - 44px);
    height: calc(100dvh - 44px);
    min-height: 620px;
    background: var(--paper-light);
  }

  .hero-meta {
    top: 18px;
    right: 18px;
    left: 18px;
    padding-bottom: 13px;
    gap: 8px;
  }

  .hero-meta .hero-note,
  .hero-meta .hero-edition,
  .hero-meta .hero-note-right strong {
    font-size: 8px;
    letter-spacing: 0.13em;
    line-height: 1.45;
  }

  .hero h1 {
    z-index: 1;
    top: 43%;
    left: 50%;
    width: max-content;
    font-size: clamp(50px, 15vw, 72px);
    letter-spacing: -0.06em;
    line-height: 0.78;
    text-align: center;
    transform: translate(-50%, calc(-50% + var(--hero-word-scroll, 0px)));
  }

  .hero h1 > span {
    display: block;
    white-space: nowrap;
    transform: scaleX(0.9) scaleY(1.12);
    transform-origin: center;
  }

  .hero-portrait img {
    bottom: 52px;
    left: 50%;
    width: clamp(1120px, 300vw, 1540px);
    height: auto;
    max-width: none;
    clip-path: none;
    transform: translate3d(-80%, var(--hero-portrait-scroll, 0px), 0);
  }

  .hero-bottom .hero-actions {
    min-height: 52px;
    padding: 0 18px;
    gap: 24px;
  }

  body.is-loaded .hero-portrait img {
    animation: hero-mobile-action-in 1050ms var(--ease) 220ms both;
  }

  @keyframes hero-mobile-action-in {
    from {
      opacity: 0;
      transform: translate3d(-80%, 24px, 0) scale(0.985);
    }

    to {
      opacity: 1;
      transform: translate3d(-80%, var(--hero-portrait-scroll, 0px), 0) scale(1);
    }
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    min-height: 560px;
  }

  .hero h1 {
    top: 42%;
  }

  .hero-portrait img {
    width: clamp(1020px, 284vw, 1380px);
  }
}

@media (max-width: 420px) {
  .hero-meta {
    right: 14px;
    left: 14px;
  }

  .hero-meta .hero-note,
  .hero-meta .hero-edition,
  .hero-meta .hero-note-right strong {
    font-size: 7.5px;
    letter-spacing: 0.115em;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  body.is-loaded .hero-portrait img {
    animation: none;
    transform: translate3d(-80%, 0, 0);
  }
}

/* Final mobile hero — vertical studio cutout */

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
  }

  .hero h1 {
    z-index: 1;
    top: 41%;
    width: 100%;
    padding: 0 10px;
    font-size: clamp(50px, 15.5vw, 72px);
    letter-spacing: -0.065em;
    transform: translate(-50%, calc(-50% + var(--hero-word-scroll, 0px)));
  }

  .hero h1 > span {
    transform: scaleX(0.88) scaleY(1.12);
  }

  .hero-portrait {
    z-index: 2;
    overflow: hidden;
  }

  .hero-portrait img {
    right: auto;
    bottom: 52px;
    left: 50%;
    width: min(100%, 430px);
    height: auto;
    max-width: none;
    filter: none;
    object-fit: contain;
    transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0);
  }

  .hero-bottom .hero-actions {
    z-index: 7;
    min-height: 52px;
    border-top: 0;
    background: var(--ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-bottom .hero-actions .button,
  .hero-bottom .hero-actions .line-link {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.is-loaded .hero-portrait img {
    animation: hero-mobile-studio-in 1050ms var(--ease) 220ms both;
  }

  @keyframes hero-mobile-studio-in {
    from {
      opacity: 0;
      transform: translate3d(-50%, 22px, 0) scale(0.985);
    }

    to {
      opacity: 1;
      transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0) scale(1);
    }
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    min-height: 560px;
  }

  .hero h1 {
    top: 39%;
  }

  .hero-portrait img {
    width: min(92%, 390px);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  body.is-loaded .hero-portrait img {
    animation: none;
    transform: translate3d(-50%, 0, 0);
  }
}

/* 404 — editorial wayfinding */

.error-body {
  min-height: 100svh;
  background: var(--paper);
}

.error-main {
  min-height: calc(100svh - 104px);
}

.error-section {
  position: relative;
  display: grid;
  min-height: calc(100svh - 104px);
  padding: clamp(66px, 7.5vw, 118px) max(28px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(42px, 7vw, 116px);
  align-items: center;
  isolation: isolate;
}

.error-number {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 49%;
  margin: 0;
  color: rgba(32, 40, 41, 0.055);
  font-size: clamp(260px, 39vw, 650px);
  font-weight: 750;
  letter-spacing: -0.09em;
  line-height: 0.72;
  transform: translate(-50%, -50%) scaleY(1.08);
  transform-origin: center;
  user-select: none;
}

.error-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.error-copy .kicker {
  margin-bottom: clamp(24px, 4vw, 54px);
}

.error-copy h1 {
  max-width: 6ch;
  margin: 0;
  font-size: clamp(76px, 10vw, 158px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-wrap: balance;
}

.error-description {
  max-width: 520px;
  margin: clamp(30px, 4.2vw, 58px) 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.65;
}

.error-actions {
  display: flex;
  margin-top: clamp(28px, 3.8vw, 50px);
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.error-actions .button,
.error-actions .line-link {
  gap: 22px;
}

.error-image {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  height: min(66svh, 690px);
  min-height: 430px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: #dce3e1;
}

.error-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transition: transform 800ms var(--ease);
}

.error-image:hover img {
  transform: scale(1.018);
}

.error-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 46px;
  padding: 0 16px;
  color: white;
  background: rgba(32, 40, 41, 0.9);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-location {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.error-location span + span::before {
  margin-right: 12px;
  content: "·";
}

@media (max-width: 980px) {
  .error-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 36px;
  }

  .error-copy h1 {
    font-size: clamp(70px, 11vw, 104px);
  }

  .error-image {
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  .error-main,
  .error-section {
    min-height: calc(100svh - 98px);
  }

  .error-section {
    padding: 38px 20px 54px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .error-number {
    top: 26%;
    left: 55%;
    font-size: min(72vw, 390px);
  }

  .error-copy {
    max-width: 560px;
  }

  .error-copy .kicker {
    margin-bottom: 22px;
  }

  .error-copy h1 {
    max-width: none;
    font-size: clamp(60px, 18vw, 88px);
  }

  .error-description {
    max-width: 480px;
    margin-top: 24px;
    font-size: 14px;
  }

  .error-actions {
    display: grid;
    margin-top: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .error-actions .button {
    min-height: 44px;
  }

  .error-image {
    width: 100%;
    height: 230px;
    min-height: 0;
    justify-self: stretch;
  }

  .error-image img {
    object-position: 50% 42%;
  }

  .error-image figcaption {
    min-height: 40px;
    padding: 0 12px;
    font-size: 7px;
  }

  .error-location {
    position: static;
    justify-content: space-between;
    gap: 8px;
    font-size: 7px;
  }

  .error-location span + span::before {
    margin-right: 8px;
  }
}

@media (max-width: 430px) {
  .error-section {
    padding-inline: 16px;
  }

  .error-copy h1 {
    font-size: clamp(58px, 19vw, 78px);
  }

  .error-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .error-actions .line-link {
    width: 100%;
    justify-content: space-between;
  }

  .error-location {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .error-location span:first-child {
    display: none;
  }

  .error-location span + span::before {
    content: none;
  }
}

/* Mobile hero — edge-to-edge crop with a completely crisp action rail */

@media (max-width: 760px) {
  .hero-portrait {
    top: 0;
    right: 0;
    bottom: 52px;
    left: 0;
    height: auto;
    overflow: hidden;
  }

  .hero-portrait img {
    bottom: -140px;
    width: 116vw;
    min-width: 116vw;
    height: auto;
    transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0);
  }

  .hero-bottom .hero-actions,
  .hero-bottom .hero-actions.reveal,
  .hero-bottom .hero-actions.reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  body.is-loaded .hero-bottom .hero-actions {
    animation: none;
  }

  body.is-loaded .hero-portrait img {
    animation-name: hero-mobile-edge-in;
  }

  @keyframes hero-mobile-edge-in {
    from {
      opacity: 0;
      transform: translate3d(-50%, 20px, 0) scale(0.99);
    }

    to {
      opacity: 1;
      transform: translate3d(-50%, var(--hero-portrait-scroll, 0px), 0) scale(1);
    }
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-portrait img {
    bottom: -120px;
    width: 110vw;
    min-width: 110vw;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  body.is-loaded .hero-portrait img {
    animation: none;
    transform: translate3d(-50%, 0, 0);
  }
}
