:root {
  --ink: #071414;
  --ivory: #f6efdf;
  --gold: #c7a968;
  --champagne: #ead9ad;
  --teal: #123f3e;
  --deep-teal: #0e2c2b;
  --muted: #7d897f;
  --panel: #fff8ea;
  --line: rgba(199, 169, 104, 0.34);
  --shadow: 0 30px 90px rgba(7, 20, 20, 0.28);
  --radius: 8px;
  --max-width: 1260px;
  --focus: 0 0 0 3px rgba(199, 169, 104, 0.42);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

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

html.modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 20, 20, 0.9);
  border-bottom: 1px solid rgba(234, 217, 173, 0.18);
  color: var(--ivory);
  backdrop-filter: blur(22px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 70px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  width: 132px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  width: 126px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
}

.site-nav {
  display: none;
  position: absolute;
  left: 12px;
  right: 12px;
  top: 70px;
  padding: 18px;
  background: rgba(7, 20, 20, 0.98);
  border: 1px solid rgba(246, 239, 223, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav[data-open] {
  display: grid;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 4px;
  color: rgba(246, 239, 223, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a:focus-visible {
  color: var(--champagne);
}

.nav-contact {
  color: var(--gold) !important;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(246, 239, 223, 0.22);
  border-radius: var(--radius);
  color: var(--ivory);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-2px) rotate(-45deg);
}

.section {
  padding: 78px 18px;
  background: var(--ivory);
  scroll-margin-top: 82px;
}

.section--deep {
  background: var(--ink);
  color: var(--ivory);
}

.section--panel,
.section--studio {
  background: #ece2ce;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading--split {
  display: grid;
  gap: 18px;
}

.section-heading h2,
.hero-copy h1,
.modal-copy h2,
.contact-card h2,
.film-copy h2,
.wall-controls h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading h2,
.film-copy h2 {
  font-size: 2.65rem;
}

.section-heading p,
.film-copy p,
.contact-card p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section--deep .section-heading p,
.section--deep .film-copy p {
  color: rgba(246, 239, 223, 0.72);
}

.motion-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-v2 {
  min-height: calc(100svh - 70px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  padding: 0 18px;
  background: var(--ink);
  color: var(--ivory);
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 20, 0.98) 0%, rgba(7, 20, 20, 0.86) 42%, rgba(14, 44, 43, 0.72) 100%),
    linear-gradient(135deg, rgba(199, 169, 104, 0.18) 0%, transparent 32%, rgba(246, 239, 223, 0.06) 68%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(246, 239, 223, 0.035) 0 1px, transparent 1px 96px);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 20, 0.12), rgba(7, 20, 20, 0.62));
}

.hero-v2::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(7, 20, 20, 0.98), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  min-height: calc(100svh - 70px);
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 46px 0 42px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  font-size: 3.2rem;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(246, 239, 223, 0.75);
  font-size: 1rem;
}

.hero-actions,
.modal-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

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

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

.button--ghost,
.button--quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button--ghost-light {
  background: transparent;
  border-color: rgba(246, 239, 223, 0.38);
  color: var(--ivory);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: rgba(246, 239, 223, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-gallery {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-orbit {
  position: relative;
  height: min(118vw, 620px);
  min-height: 420px;
  perspective: 1200px;
}

.hero-panel {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --s: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(116px, 31vw, 245px);
  aspect-ratio: 1;
  padding: 8px;
  background: rgba(255, 248, 234, 0.94);
  border: 1px solid rgba(234, 217, 173, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(7, 20, 20, 0.16) inset;
  transform: translate(-50%, -50%) translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(var(--s));
  animation: galleryEnter 1100ms var(--ease) both, galleryFloat 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 90ms), calc(900ms + var(--i) * 110ms);
  will-change: transform;
}

.hero-panel:nth-child(1) { --x: -42vw; --y: -130px; --r: -9deg; --s: .88; }
.hero-panel:nth-child(2) { --x: -21vw; --y: -20px; --r: 4deg; --s: 1; }
.hero-panel:nth-child(3) { --x: 4vw; --y: -155px; --r: -3deg; --s: .92; }
.hero-panel:nth-child(4) { --x: 25vw; --y: -42px; --r: 8deg; --s: .98; }
.hero-panel:nth-child(5) { --x: 41vw; --y: 120px; --r: -5deg; --s: .82; }
.hero-panel:nth-child(6) { --x: -36vw; --y: 132px; --r: 7deg; --s: .84; }
.hero-panel:nth-child(7) { --x: -8vw; --y: 134px; --r: -5deg; --s: .95; }
.hero-panel:nth-child(8) { --x: 16vw; --y: 126px; --r: 3deg; --s: .86; }
.hero-panel:nth-child(9) { --x: 0vw; --y: 0px; --r: 0deg; --s: 1.18; z-index: 3; }
.hero-panel:nth-child(10) { --x: 35vw; --y: -170px; --r: 6deg; --s: .72; }

.hero-panel img,
.art-card__media img,
.modal-media img,
.wall-art-frame img,
.film-tile img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-current {
  width: max-content;
  max-width: 100%;
  margin: -22px auto 0;
  padding: 8px 12px;
  border: 1px solid rgba(234, 217, 173, 0.26);
  background: rgba(7, 20, 20, 0.48);
  color: rgba(246, 239, 223, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section--collection {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.86), rgba(236, 226, 206, 0.96)),
    repeating-linear-gradient(90deg, rgba(7, 20, 20, 0.035) 0 1px, transparent 1px 112px);
}

.collection-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  grid-auto-flow: dense;
}

.art-card {
  min-width: 0;
  animation: cardRise 700ms var(--ease) both;
  animation-delay: calc(var(--card-index) * 52ms);
}

.art-card__button {
  width: 100%;
  height: 100%;
  padding: 0;
  display: grid;
  gap: 14px;
  background: transparent;
  color: var(--ink);
  border: 0;
  text-align: left;
}

.art-card__button:focus-visible .art-card__media {
  box-shadow: 0 0 0 3px rgba(199, 169, 104, 0.44), 0 24px 60px rgba(7, 20, 20, 0.22);
}

.art-card__button:hover .art-card__media {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(7, 20, 20, 0.2);
}

.art-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 12px solid rgba(255, 248, 234, 0.96);
  background: #d9cbaa;
  box-shadow: 0 20px 50px rgba(7, 20, 20, 0.16), 0 0 0 1px rgba(7, 20, 20, 0.08);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.art-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 9px;
  background: rgba(7, 20, 20, 0.88);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.art-card__content {
  display: grid;
  gap: 8px;
  padding: 0 2px;
}

.art-card__index {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.art-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.04;
}

.art-card__subtitle {
  color: #59645f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.art-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.art-card__tags,
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.art-card__tags span,
.modal-tags span {
  border: 1px solid var(--line);
  padding: 5px 8px;
  color: #59645f;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(7, 20, 20, 0.94), rgba(14, 44, 43, 0.88)),
    rgba(7, 20, 20, 0.9);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(92svh, 860px);
  overflow: auto;
  display: grid;
  background: var(--panel);
  border: 1px solid rgba(234, 217, 173, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: sticky;
  top: 12px;
  justify-self: end;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  border: 1px solid rgba(7, 20, 20, 0.14);
  border-radius: 50%;
  background: rgba(246, 239, 223, 0.96);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-media {
  min-height: 320px;
  background: var(--ink);
  padding: 12px;
}

.modal-media img {
  max-height: 72svh;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.modal-copy {
  padding: 28px;
}

.modal-copy h2 {
  font-size: 2.3rem;
}

.modal-copy p {
  color: #58645f;
}

.modal-actions {
  align-items: stretch;
}

.modal-actions .button {
  flex: 1 1 160px;
}

.modal-actions .button:first-child {
  flex-basis: 220px;
}

.modal-facts {
  margin: 24px 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.modal-facts div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.modal-facts dt {
  color: #6e786f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-facts dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.print-note {
  margin-top: 22px;
  padding: 14px;
  background: rgba(18, 63, 62, 0.08);
  border-left: 3px solid var(--gold);
  color: #58645f;
  font-size: 0.92rem;
}

.wall-studio {
  display: grid;
  gap: 22px;
}

.wall-layout {
  display: grid;
  gap: 26px;
}

.wall-room {
  min-height: 440px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 20, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 20, 20, 0.06), transparent 20%, transparent 78%, rgba(7, 20, 20, 0.08)),
    linear-gradient(180deg, #f1e7d4 0 62%, #d4c4a4 62% 100%);
  box-shadow: var(--shadow);
}

.wall-room::before {
  content: "";
  position: absolute;
  inset: 9% 8% 35%;
  border: 1px solid rgba(7, 20, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.32), rgba(255, 248, 234, 0.08));
}

.wall-room::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36%;
  height: 1px;
  background: rgba(7, 20, 20, 0.12);
}

.wall-room__light {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.46), transparent 44%);
}

.wall-plinth {
  position: absolute;
  bottom: 17%;
  width: 56%;
  height: 24px;
  border-radius: 999px;
  background: rgba(7, 20, 20, 0.13);
  filter: blur(3px);
}

.wall-art-frame {
  position: relative;
  z-index: 1;
  width: 34%;
  max-width: 360px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #111;
  box-shadow: 0 28px 70px rgba(7, 20, 20, 0.34);
  transition: width 220ms var(--ease), background 180ms var(--ease), padding 180ms var(--ease);
}

.wall-art-frame.size-small {
  width: 24%;
}

.wall-art-frame.size-large {
  width: 45%;
}

.wall-art-frame.frame-none {
  padding: 0;
  background: transparent;
}

.wall-art-frame.frame-black {
  background: #111;
}

.wall-art-frame.frame-white {
  background: #fff8ea;
}

.wall-art-frame.frame-oak {
  background: #b48754;
}

.wall-art-frame.frame-gold {
  background: var(--gold);
}

.wall-controls {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 22px;
  background: rgba(255, 248, 234, 0.7);
  border: 1px solid rgba(7, 20, 20, 0.1);
  box-shadow: 0 18px 50px rgba(7, 20, 20, 0.08);
}

.wall-controls h3 {
  font-size: 1.8rem;
}

.field label,
.control-group legend {
  display: block;
  margin-bottom: 8px;
  color: #667169;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.segmented button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.film-shell {
  display: grid;
  gap: 32px;
  align-items: center;
}

.film-stage {
  min-width: 0;
}

.launch-video {
  width: 100%;
  border: 1px solid rgba(246, 239, 223, 0.18);
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.launch-fallback {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(246, 239, 223, 0.16);
  background:
    linear-gradient(140deg, rgba(18, 63, 62, 0.65), rgba(7, 20, 20, 0.98) 56%),
    repeating-linear-gradient(90deg, rgba(246, 239, 223, 0.04) 0 1px, transparent 1px 78px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.launch-fallback[hidden] {
  display: none;
}

.film-title-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--ivory);
}

.film-title-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.film-title-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1;
}

.film-grid {
  position: absolute;
  inset: 18% -4% auto;
  height: 70%;
}

.film-tile {
  --x: 0%;
  --y: 0%;
  --r: 0deg;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(86px, 22vw, 150px);
  aspect-ratio: 1;
  margin: 0;
  padding: 6px;
  background: rgba(255, 248, 234, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--r));
  animation: filmPanel 5.2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.film-tile:nth-child(1) { --x: -150%; --y: -68%; --r: -7deg; }
.film-tile:nth-child(2) { --x: -74%; --y: -18%; --r: 4deg; }
.film-tile:nth-child(3) { --x: 10%; --y: -64%; --r: -3deg; }
.film-tile:nth-child(4) { --x: 88%; --y: -12%; --r: 7deg; }
.film-tile:nth-child(5) { --x: 154%; --y: 50%; --r: -5deg; }
.film-tile:nth-child(6) { --x: -128%; --y: 54%; --r: 8deg; }
.film-tile:nth-child(7) { --x: -34%; --y: 68%; --r: -5deg; }
.film-tile:nth-child(8) { --x: 54%; --y: 72%; --r: 3deg; }
.film-tile:nth-child(9) { --x: 0%; --y: 10%; --r: 0deg; width: clamp(118px, 30vw, 205px); z-index: 2; }
.film-tile:nth-child(10) { --x: 132%; --y: -72%; --r: 6deg; }

.steps {
  display: grid;
  gap: 18px;
  counter-reset: steps;
}

.step {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.step h3 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.step h3::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.step p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #59645f;
}

.collect-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collect-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(246, 239, 223, 0.18);
  color: rgba(246, 239, 223, 0.78);
}

.collect-list strong {
  display: block;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.about-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.about-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 12px solid var(--panel);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border-top: 1px solid rgba(7, 20, 20, 0.16);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  max-width: 780px;
  color: #59645f;
}

.contact-section {
  background: linear-gradient(180deg, var(--ivory), #e9ddc6);
}

.contact-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 2.3rem;
}

.contact-details {
  color: #56635e;
}

.site-footer {
  padding: 28px 18px;
  background: var(--ink);
  color: rgba(246, 239, 223, 0.72);
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.86rem;
}

.footer-inner img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: invert(1);
}

[hidden] {
  display: none !important;
}

@keyframes galleryEnter {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 80px, -120px) rotate(0deg) scale(0.72);
  }
}

@keyframes galleryFloat {
  0%, 100% {
    margin-top: 0;
  }
  50% {
    margin-top: -12px;
  }
}

@keyframes filmPanel {
  0%, 100% {
    opacity: 0.74;
    margin-top: 0;
  }
  45% {
    opacity: 1;
    margin-top: -14px;
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@media (min-width: 520px) {
  .collection-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .section {
    padding: 96px 28px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    width: 144px;
    height: 56px;
  }

  .section-heading h2,
  .film-copy h2 {
    font-size: 4.2rem;
  }

  .hero-copy h1 {
    font-size: 5.1rem;
  }

  .hero-copy p {
    font-size: 1.12rem;
  }

  .art-card__title {
    font-size: 2rem;
  }

  .modal-copy h2,
  .contact-card h2 {
    font-size: 3.4rem;
  }

  .wall-controls h3 {
    font-size: 2.4rem;
  }

  .film-title-card strong {
    font-size: 2.8rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.04fr);
    gap: 34px;
  }

  .hero-orbit {
    height: min(64vw, 680px);
  }

  .section-heading--split,
  .film-shell,
  .wall-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    align-items: start;
  }

  .collection-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 24px;
  }

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

@media (min-width: 1024px) {
  .menu-button {
    display: none;
  }

  .site-nav,
  .site-nav[data-open] {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 0;
    padding: 8px 0;
    font-size: 0.68rem;
  }

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

  .art-card:nth-child(1),
  .art-card:nth-child(5),
  .art-card:nth-child(9) {
    grid-column: span 2;
  }

  .modal-panel {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.74fr);
  }

  .modal-media img {
    min-height: 100%;
    max-height: none;
  }

  .wall-layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.58fr);
  }
}

@media (min-width: 1440px) {
  :root {
    --max-width: 1360px;
  }

  .section-heading h2,
  .film-copy h2 {
    font-size: 5.4rem;
  }

  .hero-copy h1 {
    font-size: 7.15rem;
  }

  .art-card__title {
    font-size: 2.5rem;
  }

  .modal-copy h2,
  .contact-card h2 {
    font-size: 5rem;
  }

  .wall-controls h3 {
    font-size: 3.2rem;
  }

  .film-title-card strong {
    font-size: 3.8rem;
  }

  .collection-wall {
    gap: 54px 34px;
  }
}

@media (max-width: 430px) {
  .section {
    padding: 68px 14px;
  }

  .header-inner {
    padding-inline: 14px;
  }

  .hero-v2 {
    padding-inline: 14px;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: 2.62rem;
  }

  .hero-gallery {
    min-height: 390px;
  }

  .hero-orbit {
    min-height: 360px;
    height: 390px;
  }

  .hero-panel {
    width: 116px;
    padding: 5px;
  }

  .hero-panel:nth-child(1) { --x: -114px; --y: -126px; }
  .hero-panel:nth-child(2) { --x: -62px; --y: -12px; }
  .hero-panel:nth-child(3) { --x: 20px; --y: -142px; }
  .hero-panel:nth-child(4) { --x: 95px; --y: -28px; }
  .hero-panel:nth-child(5) { --x: 110px; --y: 104px; }
  .hero-panel:nth-child(6) { --x: -100px; --y: 104px; }
  .hero-panel:nth-child(7) { --x: -24px; --y: 120px; }
  .hero-panel:nth-child(8) { --x: 54px; --y: 126px; }
  .hero-panel:nth-child(9) { --x: 0px; --y: 0px; --s: 1.08; }
  .hero-panel:nth-child(10) { --x: 108px; --y: -136px; }

  .hero-actions,
  .modal-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .art-card__media {
    border-width: 8px;
  }

  .modal-copy {
    padding: 22px;
  }

  .wall-room {
    min-height: 350px;
  }

  .wall-art-frame {
    width: 45%;
  }

  .wall-art-frame.size-small {
    width: 34%;
  }

  .wall-art-frame.size-large {
    width: 58%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
