:root {
  --black: #050506;
  --black-soft: #0d0d10;
  --black-warm: #120d0e;
  --paper: #eee8dc;
  --paper-deep: #d8cfbf;
  --ink: #171416;
  --ivory: #f6f0e5;
  --white: #fffdf8;
  --muted: #aaa49a;
  --gold: #b79558;
  --gold-light: #d9bd7b;
  --red: #b41432;
  --red-deep: #690b20;
  --line-dark: rgba(255, 253, 248, 0.17);
  --line-light: rgba(23, 20, 22, 0.2);
  --serif: "Cormorant Garamond", "Shippori Mincho B1", "Yu Mincho", serif;
  --jp-serif: "Shippori Mincho B1", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --shell: 1260px;
  --gutter: clamp(22px, 4vw, 64px);
  --header-height: 76px;
  --section-space: clamp(92px, 10vw, 160px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 150;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.eyebrow,
.kicker,
.card-label {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.profile-body h2,
.price-box h2,
.contact-copy h2 {
  margin-top: 18px;
  font-family: var(--jp-serif);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.section-heading h2::after,
.profile-body h2::after,
.price-box h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold-light), rgba(217, 189, 123, 0));
}

.section-heading > p:last-child,
.price-box > div:first-child > p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center h2::after {
  margin-right: auto;
  margin-left: auto;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.btn::after {
  content: "→";
  font-family: var(--sans);
  transition: transform 0.3s var(--ease);
}

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

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #ce173a;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 5, 6, 0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(5, 5, 6, 0.55);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-large {
  min-height: 58px;
  padding: 16px 28px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.8), transparent);
  color: var(--white);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(5, 5, 6, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--red);
  font-size: 0.95rem;
}

.brand-name {
  font-size: 1.45rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 253, 248, 0.76);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="true"],
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover::after,
.nav a[aria-current="true"]::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: rgba(255, 253, 248, 0.84);
  transition:
    color 0.25s ease,
    transform 0.25s var(--ease);
}

.icon-link:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.icon-link svg {
  width: 20px;
}

.header-cta {
  min-height: 44px;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 13px 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.7) 32%, rgba(5, 5, 6, 0.12) 64%, rgba(5, 5, 6, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18) 55%, rgba(5, 5, 6, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(760px, 100svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 180px;
}

.hero-inner > * {
  max-width: 620px;
}

.hero .kicker {
  padding-left: 52px;
}

.hero .kicker::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 1px;
  margin-top: 0.55em;
  margin-left: -52px;
  background: var(--gold);
}

.hero h1 {
  margin-top: 17px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(5.2rem, 10vw, 9.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.8;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  margin-top: 34px;
  font-family: var(--jp-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.hero-lead {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(0.94rem, 1.3vw, 1.05rem);
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 50%;
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 5, 6, 0.46);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  min-width: 0;
  padding: 20px clamp(16px, 2vw, 28px);
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts span,
.hero-facts strong {
  display: block;
}

.hero-facts span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 500;
  line-height: 1.55;
}

/* Scenes */
.scene {
  background:
    radial-gradient(circle at 92% 4%, rgba(180, 20, 50, 0.12), transparent 31%),
    var(--black);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(54px, 7vw, 90px);
}

.scene-card {
  min-width: 0;
  border-top: 1px solid var(--gold);
}

.scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 16px;
  object-fit: cover;
  filter: saturate(0.87) contrast(1.02);
  transition:
    filter 0.5s ease,
    transform 0.7s var(--ease);
}

.scene-card:hover img {
  filter: saturate(1.03) contrast(1.02);
  transform: translateY(-4px);
}

.scene-card > div {
  padding: 24px 2px 0;
}

.scene-card h3 {
  margin-top: 12px;
  font-family: var(--jp-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 600;
}

.scene-card > div > p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.9;
}

/* Performance */
.performance {
  overflow: hidden;
  border-top: 1px solid rgba(183, 149, 88, 0.25);
  border-bottom: 1px solid rgba(183, 149, 88, 0.25);
  background:
    linear-gradient(120deg, rgba(105, 11, 32, 0.28), transparent 42%),
    var(--black-warm);
}

.performance::after {
  content: "♠";
  position: absolute;
  top: 50%;
  left: 6vw;
  color: rgba(183, 149, 88, 0.045);
  font-family: var(--serif);
  font-size: min(46vw, 650px);
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.performance-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 160px);
}

.performance-list {
  border-top: 1px solid var(--line-dark);
}

.performance-item {
  display: grid;
  grid-template-columns: 48px minmax(160px, 0.75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
  padding: 30px 0;
}

.performance-item > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.performance-item h3 {
  font-family: var(--jp-serif);
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 600;
  line-height: 1.55;
}

.performance-item p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.9;
}

/* Movies */
.movie {
  border-top: 1px solid rgba(183, 149, 88, 0.24);
  border-bottom: 1px solid rgba(183, 149, 88, 0.24);
  background:
    radial-gradient(circle at 85% 12%, rgba(105, 11, 32, 0.2), transparent 32%),
    #0b0a0c;
  color: var(--ivory);
}

.movie .eyebrow {
  color: var(--gold-light);
}

.movie .section-heading > p:last-child {
  color: var(--muted);
}

.movie-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(54px, 7vw, 90px);
}

.movie figure {
  min-width: 0;
}

.movie video {
  width: 100%;
  background: #000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.movie-main video {
  aspect-ratio: 16 / 9;
}

.movie-short video {
  aspect-ratio: 9 / 16;
  max-height: 570px;
}

.movie figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.movie-side {
  display: grid;
  gap: 24px;
}

.instagram-panel {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--red);
  padding: 24px 28px;
  background: #151013;
  color: var(--white);
  transition:
    background-color 0.3s ease,
    transform 0.3s var(--ease);
}

.instagram-panel:hover {
  background: var(--red-deep);
  transform: translateX(4px);
}

.instagram-panel span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagram-panel strong {
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 500;
}

.instagram-panel small {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.65);
}

/* Profile */
.profile {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
  background: var(--black);
}

.profile-photo {
  min-height: 760px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center 22%;
}

.profile-body {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 9vw, 150px) clamp(34px, 8vw, 130px);
}

.profile-body h2 {
  margin-top: 18px;
  color: var(--white);
  font-family: var(--jp-serif);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.profile-name {
  margin-top: 28px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.profile-lead {
  margin-top: 38px;
  color: var(--white);
  font-family: var(--jp-serif);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.8;
}

.profile-body > p:not(.eyebrow):not(.profile-lead):not(.profile-name) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 2;
}

.profile-data {
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
}

.profile-data div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 0;
}

.profile-data dt {
  color: var(--gold-light);
  font-size: 0.76rem;
}

.profile-data dd {
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.88rem;
}

/* Price */
.price {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(180, 20, 50, 0.17), transparent 30%),
    var(--black-warm);
}

.price-box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: clamp(48px, 7vw, 94px) clamp(0px, 2vw, 28px);
}

.price-card {
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(30px, 5vw, 72px);
}

.price-card > p:first-child {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.price-card strong {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.price-card .currency {
  margin-top: 0.14em;
  margin-right: 0.06em;
  color: var(--gold-light);
  font-size: 0.45em;
}

.price-card strong small {
  align-self: flex-end;
  margin-bottom: 0.12em;
  margin-left: 0.18em;
  color: var(--gold-light);
  font-family: var(--jp-serif);
  font-size: 0.24em;
  font-weight: 600;
}

.price-caption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin-top: 30px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.84rem;
}

.price-card li::before {
  content: "◆";
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--red);
  font-size: 0.55rem;
}

/* Gallery */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  height: clamp(440px, 44vw, 660px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr) minmax(220px, 0.75fr);
  gap: 10px;
  margin-top: clamp(52px, 7vw, 88px);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: filter 0.5s ease;
}

.gallery-grid img:nth-child(1) {
  object-position: 55% center;
}

.gallery-grid img:nth-child(2) {
  object-position: 48% center;
}

.gallery-grid img:nth-child(3) {
  object-position: center center;
}

.gallery-grid img:hover {
  filter: saturate(1) contrast(1);
}

.gallery-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

/* Gallery page */
.gallery-page {
  background: #070708;
}

.gallery-page .site-header {
  border-color: var(--line-dark);
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(18px);
}

.gallery-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(72px, 8vw, 126px));
  padding-bottom: clamp(90px, 10vw, 150px);
  background:
    radial-gradient(circle at 12% 28%, rgba(183, 149, 88, 0.11), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(105, 11, 32, 0.2), transparent 34%),
    #09090b;
}

.gallery-page-hero::before {
  content: "KOKI";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(255, 253, 248, 0.022);
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 32rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.8;
  pointer-events: none;
}

.gallery-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.gallery-page-intro h1 {
  margin-top: 18px;
  color: var(--white);
  font-family: var(--jp-serif);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.26;
}

.gallery-page-intro h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 30px;
  background: var(--gold);
}

.gallery-page-accent {
  margin-top: 34px;
  padding-left: 20px;
  border-left: 2px solid var(--red);
  color: var(--ivory);
  font-family: var(--jp-serif);
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  line-height: 1.7;
}

.gallery-page-lead {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 2;
}

.gallery-page-cover {
  position: relative;
  margin: 0;
  padding: 0 20px 20px 0;
}

.gallery-page-cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 76%;
  border-right: 1px solid rgba(183, 149, 88, 0.65);
  border-bottom: 1px solid rgba(183, 149, 88, 0.65);
}

.gallery-page-cover video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.gallery-page-cover figcaption {
  position: absolute;
  right: 0;
  bottom: -20px;
  padding: 8px 14px;
  background: #09090b;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-motion {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(183, 149, 88, 0.18);
  border-bottom: 1px solid rgba(183, 149, 88, 0.18);
  background:
    radial-gradient(circle at 14% 24%, rgba(183, 149, 88, 0.1), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(105, 11, 32, 0.18), transparent 30%),
    #0b0a0c;
  color: var(--ivory);
}

.gallery-motion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: clamp(64px, 11vw, 170px);
  align-items: center;
}

.gallery-motion .section-heading {
  max-width: 640px;
}

.gallery-motion .section-heading > p:last-child {
  color: var(--muted);
}

.gallery-motion-short {
  width: min(100%, 370px);
  margin: 0;
  justify-self: end;
}

.gallery-motion-short video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  object-fit: contain;
}

.gallery-motion-short figcaption {
  margin-top: 16px;
  border-top: 1px solid rgba(183, 149, 88, 0.34);
  padding-top: 12px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-collection {
  border-top: 1px solid rgba(183, 149, 88, 0.18);
  background: linear-gradient(180deg, #050506, #0a090b 58%, #050506);
}

.gallery-mosaic {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 18vw, 285px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(56px, 7vw, 92px);
}

.gallery-tile {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #111;
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}

.gallery-tile--wide {
  grid-column: span 8;
}

.gallery-tile--large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-tile--portrait {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 6, 0.88));
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition:
    filter 0.55s ease,
    transform 0.8s var(--ease);
}

.gallery-tile:nth-child(2) img,
.gallery-tile:nth-child(6) img {
  object-position: center top;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.gallery-tile-meta {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.gallery-tile-meta strong,
.gallery-tile-meta small {
  display: block;
}

.gallery-tile-meta strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-tile-meta small {
  margin-top: 3px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-contact {
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 82% 18%, rgba(180, 20, 50, 0.18), transparent 28%),
    #0c0a0b;
}

.gallery-contact-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr) auto;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
}

.gallery-contact h2 {
  margin-top: 14px;
  font-family: var(--jp-serif);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.gallery-contact-inner > p {
  color: var(--muted);
  line-height: 2;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 64px max(78px, calc((100vw - 1260px) / 2)) 46px;
  background: rgba(0, 0, 0, 0.94);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 18px;
  color: var(--ivory);
  font-family: var(--jp-serif);
  font-size: 0.96rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 22px;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-dark);
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* Flow */
.flow {
  background:
    radial-gradient(circle at 12% 88%, rgba(180, 20, 50, 0.12), transparent 30%),
    #0c0b0d;
  color: var(--ivory);
}

.flow .eyebrow {
  color: var(--gold-light);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 90px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.flow-list li {
  position: relative;
  min-width: 0;
  padding: 38px clamp(20px, 3vw, 42px) 42px;
}

.flow-list li + li {
  border-left: 1px solid var(--line-dark);
}

.flow-list span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.flow-list strong {
  display: block;
  color: var(--white);
  margin-top: 18px;
  font-family: var(--jp-serif);
  font-size: 1.15rem;
}

.flow-list p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.85;
}

/* Contact */
.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(180, 20, 50, 0.23), transparent 33%),
    linear-gradient(135deg, var(--black), #0f080a);
}

.contact::before {
  content: "K";
  position: absolute;
  right: -0.05em;
  bottom: -0.34em;
  color: rgba(183, 149, 88, 0.035);
  font-family: var(--serif);
  font-size: min(55vw, 780px);
  line-height: 1;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(64px, 9vw, 136px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 2;
}

.contact-copy .btn {
  margin-top: 34px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: clamp(34px, 5vw, 58px) 0;
}

.form-help,
.field-wide,
.form-actions,
.form-message {
  grid-column: 1 / -1;
}

.form-help {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.84rem;
  line-height: 1.8;
}

.field {
  min-width: 0;
}

.field label {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
}

.field label span {
  padding: 2px 6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
  line-height: 1.25;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.23);
  border-radius: 0;
  padding: 14px 15px;
  background: rgba(255, 253, 248, 0.055);
  color: var(--white);
  caret-color: var(--gold-light);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.field input,
.field select {
  min-height: 53px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 253, 248, 0.37);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(255, 253, 248, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-light);
  outline: none;
  background: rgba(255, 253, 248, 0.09);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #e5576e;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}

.form-actions > a:not(.btn) {
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.82rem;
}

.form-actions .btn-gold {
  flex: 1 1 auto;
}

.form-actions .btn-gold.is-ready {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(217, 189, 123, 0.28);
}

.form-message {
  min-height: 1.8em;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.form-message.is-error {
  color: #ff899c;
}

.copy-output {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 230px;
  border: 1px solid var(--gold-light);
  border-radius: 0;
  padding: 16px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  line-height: 1.8;
  resize: vertical;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line-dark);
  padding-block: 44px;
  background: #030304;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
  font-size: 1.7rem;
}

.footer-brand span {
  color: var(--red);
}

.footer p {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer small {
  color: #8f8980;
  font-size: 0.72rem;
  text-align: right;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s ease,
    transform 0.85s var(--ease);
}

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

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --gutter: clamp(22px, 3.7vw, 44px);
  }

  .header-cta {
    display: none;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .performance-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
  }

  .performance-item {
    grid-template-columns: 40px minmax(150px, 0.72fr) minmax(0, 1fr);
  }

  .profile-body {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .price-box {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 58px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 90px var(--gutter) 50px;
    background:
      linear-gradient(135deg, rgba(105, 11, 32, 0.42), transparent 45%),
      rgba(5, 5, 6, 0.985);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(20px);
    transition:
      opacity 0.3s ease,
      transform 0.45s var(--ease),
      visibility 0s linear 0.45s;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .nav a {
    width: 100%;
    padding: 9px 0;
    color: var(--white);
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .nav a::after {
    right: auto;
    width: 56px;
  }

  .icon-link {
    margin-left: auto;
  }

  .performance-layout,
  .price-box,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .performance-layout {
    gap: 58px;
  }

  .price-box {
    gap: 46px;
  }

  .price-card {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding-top: 36px;
    padding-left: 0;
  }

  .profile {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .profile-photo,
  .profile-photo img {
    min-height: 680px;
  }

  .gallery-grid {
    height: 560px;
    grid-template-columns: 1fr 1.25fr;
    grid-template-rows: 1fr 1fr;
  }

  .gallery-grid img:nth-child(1) {
    grid-row: 1 / -1;
  }

  .gallery-grid img:nth-child(3) {
    object-position: center 34%;
  }

  .gallery-page-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 44px;
  }

  .gallery-contact-inner {
    grid-template-columns: 1fr auto;
  }

  .gallery-contact-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gallery-contact-inner .btn {
    grid-column: 2;
    grid-row: 1;
  }

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

  .flow-list li:nth-child(3) {
    border-left: 0;
  }

  .flow-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .contact-copy {
    position: static;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --gutter: 22px;
    --header-height: 68px;
    --section-space: clamp(76px, 20vw, 108px);
  }

  .section-heading h2,
  .profile-body h2,
  .price-box h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
    line-height: 1.5;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
    font-size: 0.84rem;
  }

  .icon-link {
    width: 40px;
    height: 44px;
  }

  .nav-toggle {
    width: 44px;
    margin-right: -8px;
  }

  .hero {
    min-height: 0;
    overflow: visible;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: min(100svh, 160vw, 640px);
    background: #000;
  }

  .hero-media img {
    object-position: center 30%;
  }

  .hero-shade {
    inset: 0 0 auto;
    height: min(100svh, 160vw, 640px);
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.55) 0%, transparent 19%, transparent 78%, rgba(5, 5, 6, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, 0.1), transparent 40%);
    pointer-events: none;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 42px;
    background: var(--black);
  }

  .hero-inner > * {
    max-width: none;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(4rem, 20vw, 5.5rem);
  }

  .hero-copy {
    margin-top: 20px;
    font-size: clamp(1.35rem, 6.8vw, 1.85rem);
    line-height: 1.6;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-color: var(--line-dark);
    background: var(--black-soft);
    transform: none;
    backdrop-filter: none;
  }

  .hero-facts div {
    padding: 18px var(--gutter);
  }

  .hero-facts div + div {
    border-left: 0;
  }

  .hero-facts div:nth-child(even) {
    border-left: 1px solid var(--line-dark);
  }

  .hero-facts div:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .hero-facts strong {
    font-size: 0.75rem;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .scene-card img {
    aspect-ratio: 16 / 10;
  }

  .performance::after {
    top: 42%;
    left: -24vw;
    font-size: 120vw;
  }

  .performance-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 26px 0;
  }

  .performance-item p {
    grid-column: 2;
    margin-top: 7px;
  }

  .movie-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .movie-side {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: end;
  }

  .movie-short video {
    max-height: none;
  }

  .instagram-panel {
    min-height: 180px;
    padding: 22px;
  }

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

  .profile-photo,
  .profile-photo img {
    min-height: 0;
  }

  .profile-photo {
    height: min(128vw, 660px);
  }

  .profile-body {
    max-width: none;
    padding: var(--section-space) var(--gutter);
  }

  .profile-body h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
  }

  .profile-data div {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 16px;
  }

  .price-box {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    padding-right: 0;
    padding-left: 0;
  }

  .price-card strong {
    font-size: clamp(3.45rem, 16.5vw, 5.2rem);
  }

  .price-card ul {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr 0.68fr;
    grid-template-rows: auto auto;
  }

  .gallery-grid img {
    height: auto;
  }

  .gallery-grid img:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    grid-column: 1 / -1;
  }

  .gallery-grid img:nth-child(2) {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid img:nth-child(3) {
    aspect-ratio: 4 / 5;
  }

  .gallery-actions {
    justify-content: stretch;
  }

  .gallery-actions .btn {
    width: 100%;
  }

  .gallery-page-hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 84px;
  }

  .gallery-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .gallery-page-intro h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.35;
  }

  .gallery-page-accent {
    font-size: 1.1rem;
  }

  .gallery-page-cover {
    padding-right: 12px;
    padding-bottom: 12px;
  }

  .gallery-page-cover video {
    aspect-ratio: 16 / 9;
  }

  .gallery-page-cover figcaption {
    bottom: -22px;
    font-size: 0.65rem;
  }

  .gallery-motion-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-motion-short {
    width: min(76vw, 340px);
    justify-self: center;
  }

  .gallery-mosaic {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-tile,
  .gallery-tile--portrait {
    grid-row: auto;
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .gallery-tile--wide,
  .gallery-tile--large {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .gallery-tile-meta {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .gallery-contact-inner {
    grid-template-columns: 1fr;
  }

  .gallery-contact-inner > p,
  .gallery-contact-inner .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-contact-inner .btn {
    width: 100%;
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    border: 0;
    padding: 62px 16px 82px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    padding: 28px 2px 31px;
  }

  .flow-list li + li,
  .flow-list li:nth-child(3) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

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

  .form-help,
  .field-wide,
  .form-actions,
  .form-message {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .form-actions > a:not(.btn) {
    align-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer small {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile--portrait,
  .gallery-tile--wide,
  .gallery-tile--large {
    grid-column: 1;
  }

  .gallery-tile,
  .gallery-tile--portrait {
    aspect-ratio: 4 / 5;
  }

  .gallery-tile--wide,
  .gallery-tile--large {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 20px;
  }

  .header-inner {
    gap: 8px;
  }

  .hero-facts div {
    padding-right: 17px;
    padding-left: 17px;
  }

  .movie-side {
    grid-template-columns: 1fr;
  }

  .movie-short {
    width: min(72vw, 280px);
    margin-inline: auto;
  }

  .instagram-panel {
    min-height: 150px;
  }

  .profile-data div {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .price-card strong {
    font-size: clamp(3rem, 15.6vw, 4.2rem);
  }
}

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

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

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