:root {
  --bg: #080808;
  --bg-soft: #111111;
  --ink: #f5f0e6;
  --muted: #9a9288;
  --gold: #d4a82a;
  --gold-light: #e8c84a;
  --gold-dim: rgba(212, 168, 42, 0.35);
  --line: rgba(255, 255, 255, 0.08);
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection { background: rgba(212, 168, 42, 0.35); color: var(--ink); }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background:
    radial-gradient(ellipse 100% 50% at 50% -15%, rgba(212, 168, 42, 0.07), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 120;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 14px rgba(212, 168, 42, 0.5);
}

.film-grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
  mix-blend-mode: overlay;
}
@keyframes grain { 50% { transform: translate(-1%, -0.5%); } }

.wing-tile {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: url("/assets/kotka-wings.svg") center / 280px repeat;
  opacity: 0.025;
  color: var(--gold);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.page-curtain {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  transform-origin: top; transform: scaleY(1);
}
.page-curtain.is-revealing { transition: transform 1s var(--ease); transform: scaleY(0); }

.eyebrow {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::after {
  content: ""; display: block; width: 2rem; height: 1px; margin: 0.55rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.65;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.6rem;
  border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1204;
  box-shadow: 0 8px 28px -8px rgba(212, 168, 42, 0.5);
  position: relative; overflow: hidden;
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn--gold:hover::before { transform: translateX(120%); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(212, 168, 42, 0.65); }
.btn--outline {
  background: transparent; border-color: var(--gold-dim); color: var(--ink);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--lg { padding: 1rem 2rem; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid; grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center; gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid transparent;
  transition: background 0.5s, padding 0.4s, box-shadow 0.5s;
}
.nav.is-stuck {
  background: rgba(8, 8, 8, 0.9); backdrop-filter: blur(16px);
  border-bottom-color: var(--line); box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
}
.nav__logo { justify-self: start; display: flex; text-decoration: none; }
.nav__logo img {
  height: clamp(42px, 5.5vw, 52px); width: auto;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
  transition: height 0.4s var(--ease);
}
.nav.is-stuck .nav__logo img { height: clamp(38px, 4.5vw, 46px); }
.nav__links {
  display: flex; align-items: center; gap: clamp(0.8rem, 1.5vw, 1.4rem); justify-self: center;
}
.nav__links a {
  color: rgba(245, 240, 230, 0.78); text-decoration: none;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 0.45rem 0.1rem; white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta { justify-self: end; font-size: 0.75rem; padding: 0.7rem 1.2rem; }
.nav__burger {
  display: none; justify-self: end; grid-column: 3;
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 4px;
  background: rgba(255,255,255,0.03); cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { display: block; width: 18px; height: 1px; background: var(--ink); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer__panel {
  position: absolute; top: 0; right: 0; width: min(88vw, 360px); height: 100%;
  background: var(--bg-soft); border-left: 1px solid var(--line); padding: 1.2rem;
  transform: translateX(100%); transition: transform 0.45s var(--ease); overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__logo { display: inline-flex; margin-bottom: 1rem; text-decoration: none; }
.nav-drawer__logo img { height: 48px; width: auto; }
.nav-drawer__close { border: 0; background: none; color: var(--muted); font-size: 2rem; cursor: pointer; margin-bottom: 1rem; }
.nav-drawer__links { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-drawer__links a { color: var(--ink); text-decoration: none; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); }
.nav-drawer__links .btn { margin-top: 1rem; width: 100%; }
body.nav-open { overflow: hidden; }

/* WING SECTIONS */
.wing-section { position: relative; overflow: hidden; }
.wing-section--subtle::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("/assets/kotka-wings.svg") center / min(420px, 55vw) no-repeat;
  opacity: 0.045; color: var(--gold);
}

.hero__wing, .work-hero__wing, .statement__wing {
  position: absolute; pointer-events: none;
  background: url("/assets/kotka-wings.svg") center / contain no-repeat;
  color: var(--gold); opacity: 0.07;
}
.hero__wing--lg {
  width: min(70vw, 520px); height: min(55vw, 400px);
  top: 50%; left: 50%; transform: translate(-50%, -55%);
  animation: wingFloat 16s ease-in-out infinite alternate;
}
.work-hero__wing {
  width: 380px; height: 300px; top: 8%; right: -5%; opacity: 0.05;
}
.statement__wing {
  width: 300px; height: 240px; bottom: 10%; left: 5%; opacity: 0.06;
}
@keyframes wingFloat {
  0% { transform: translate(-50%, -55%) scale(1); opacity: 0.06; }
  100% { transform: translate(-50%, -52%) scale(1.04); opacity: 0.09; }
}

.category-card__icon {
  display: block; width: 48px; height: 40px; margin: 0 auto 1rem;
  background: url("/assets/kotka-wings.svg") center / contain no-repeat;
  color: var(--gold); opacity: 0.7;
}

/* HERO TYPO — unified video overlay */
.hero-typo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(6rem, 16vh, 9rem) clamp(1.5rem, 6vw, 4.5rem)
    clamp(7rem, 14vh, 9rem);
  pointer-events: none;
  overflow: visible;
}

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

.hero-typo__composition {
  width: min(94vw, 920px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-typo__headline,
.hero-typo__body,
.hero-typo__tag {
  margin: 0;
}

.hero-typo__headline {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 7.5vw, 5.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.35rem;
}

.hero-typo__headline-row {
  display: block;
}

.hero-typo__headline-row + .hero-typo__headline-row {
  margin-top: 0.05em;
}

.hero-typo__headline .hero-typo__cell {
  display: inline-block;
  height: 1.05em;
  line-height: 1;
  overflow: hidden;
  vertical-align: top;
}

.hero-typo__cell--dot {
  margin-left: 0.04em;
}

.hero-typo__glyph--dot {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1.08em;
}

.hero-typo__rule {
  display: block;
  width: 100%;
  max-width: 140px;
  height: 1px;
  margin-bottom: 1.25rem;
  background: rgba(245, 240, 230, 0.32);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero-typo__body {
  display: flex;
  flex-wrap: wrap;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.82);
  max-width: 34ch;
  margin-bottom: 1.15rem;
}

.hero-typo__tag {
  display: flex;
  flex-wrap: wrap;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.48);
  max-width: 38ch;
}

.hero-typo__cell {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.hero-typo__cell--space {
  width: 0.28em;
}

.hero-typo__glyph {
  display: block;
  will-change: transform, opacity;
}

.hero-typo.is-static .hero-typo__glyph,
.hero-typo.is-static .hero-typo__rule {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-typo.is-static .hero-typo__rule {
  transform: scaleX(1);
}

/* HERO */
.hero {
  min-height: 100vh; min-height: 100svh; display: flex; align-items: stretch;
  position: relative; background: var(--bg-soft);
}

.hero--gallery { overflow: hidden; }

.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: var(--bg);
}

.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.gallery-hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, transparent 35%, rgba(8, 8, 8, 0.45) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.25) 45%, rgba(8, 8, 8, 0.35) 100%);
}

.hero__scrim--gallery {
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.15) 55%, rgba(8, 8, 8, 0.4) 100%);
}
.hero__aura {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 168, 42, 0.12), transparent),
    radial-gradient(ellipse 40% 35% at 85% 20%, rgba(212, 168, 42, 0.06), transparent);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.75) 100%);
}

.hero__bar {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vh, 2.5rem);
  pointer-events: none;
}

.hero__bar .hero__actions {
  width: min(92vw, var(--maxw));
  margin: 0 auto;
  pointer-events: auto;
}

.hero__inner {
  position: relative; z-index: 3; width: min(92vw, var(--maxw));
  margin: 0 auto clamp(5rem, 12vh, 7rem); padding: 0 clamp(1rem, 4vw, 2rem);
}
.hero__badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--gold-dim); padding: 0.4rem 0.85rem;
  margin-bottom: 1.2rem; background: rgba(8,8,8,0.4); backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 600; line-height: 1.02;
  max-width: 12ch; margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { max-width: 42ch; color: rgba(245,240,230,0.78); font-weight: 300; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__scroll i {
  width: 1px; height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* INTRO & SECTIONS */
.intro { padding: clamp(4rem, 10vh, 6rem) clamp(1rem, 4vw, 2rem); text-align: center; }
.intro__inner { max-width: 720px; margin: 0 auto; }
.intro__line {
  display: block; width: 0; height: 1px; margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1s var(--ease);
}
.is-in .intro__line { width: 90px; }
.intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem;
}
.intro p { color: var(--muted); font-weight: 300; font-size: 1.05rem; }

.categories { padding: 0 clamp(1rem, 4vw, 2rem) clamp(4rem, 8vh, 5rem); }
.categories__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.category-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.45s var(--ease), box-shadow 0.45s;
}

.category-card:hover {
  border-color: rgba(212, 168, 42, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -24px rgba(212, 168, 42, 0.22), 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

.category-card__visual {
  position: relative;
  height: clamp(180px, 22vw, 240px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.category-card__copy {
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: left;
}

.category-card__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  opacity: 0.85;
}

.category-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.category-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

/* Category scene — shared */
.category-scene {
  position: relative;
  width: 100%;
  height: 100%;
}

.category-scene__frame-inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.category-scene__frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Originals — canvas on easel */
.category-scene--canvas {
  background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(212, 168, 42, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  perspective: 900px;
}

.category-scene__floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}

.category-scene__easel {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 55%;
  z-index: 0;
}

.category-scene__easel-leg {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 85%;
  background: linear-gradient(180deg, #5c4a2a, #2a2218);
  border-radius: 2px;
}
.category-scene__easel-leg--l { left: 18%; transform: rotate(-12deg); transform-origin: bottom; }
.category-scene__easel-leg--r { right: 18%; transform: rotate(12deg); transform-origin: bottom; }

.category-scene__easel-shelf {
  position: absolute;
  bottom: 42%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 4px;
  background: linear-gradient(90deg, #3d3220, #8b6914, #3d3220);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.category-scene__frame--canvas {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%) rotateY(-6deg) rotateX(3deg);
  width: 42%;
  aspect-ratio: 4 / 5;
  padding: 7px;
  background: linear-gradient(145deg, #c9a227 0%, #f0d78c 18%, #8b6914 42%, #e8c547 58%, #6b510f 82%, #d4a82a 100%);
  box-shadow:
    0 18px 40px -12px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 4px rgba(0,0,0,0.35);
  z-index: 2;
  transition: transform 0.5s var(--ease);
}

.category-card--original:hover .category-scene__frame--canvas {
  transform: translateX(-50%) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.category-scene__frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.35) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Drawings — framed on wall */
.category-scene--wall {
  background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
}

.category-scene__wall {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, #1a1816 0%, #121010 100%);
}

.category-scene__light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 235, 200, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.category-scene__frame--drawing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 46%;
  aspect-ratio: 5 / 4;
  padding: 5px;
  background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
  box-shadow:
    0 16px 36px -10px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.category-card--drawing:hover .category-scene__frame--drawing {
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 44px -8px rgba(0,0,0,0.85), 0 0 24px rgba(212, 168, 42, 0.12);
}

.category-scene__wire {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 22%;
  background: linear-gradient(180deg, rgba(180,180,180,0.5), rgba(120,120,120,0.3));
}

/* Prints — matted & glazed */
.category-scene--print {
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(212, 168, 42, 0.06) 0%, transparent 60%),
    #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-scene__stack {
  position: absolute;
  width: 50%;
  aspect-ratio: 4 / 5;
}

.category-scene__stack-sheet {
  position: absolute;
  inset: 0;
  background: #f5f0e6;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 1px;
}
.category-scene__stack-sheet--back { transform: rotate(-4deg) translate(-8px, 6px); opacity: 0.35; }
.category-scene__stack-sheet--mid { transform: rotate(2deg) translate(6px, 3px); opacity: 0.55; }

.category-scene__frame--print {
  position: relative;
  width: 48%;
  aspect-ratio: 4 / 5;
  padding: 4px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  box-shadow: 0 14px 32px -8px rgba(0,0,0,0.75);
  z-index: 2;
  transition: transform 0.5s var(--ease);
}

.category-card--print:hover .category-scene__frame--print {
  transform: translateY(-4px) scale(1.02);
}

.category-scene__mat {
  padding: 10px 10px 14px;
  background: #f8f4ec;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.category-scene__frame--print .category-scene__frame-inner {
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.category-scene__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 35%, transparent 65%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 4;
}

.category-scene__edition {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 5;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.65);
  background: rgba(255,255,255,0.75);
  padding: 0.2rem 0.35rem;
  border-radius: 2px;
}

.featured { padding: clamp(4rem, 10vh, 6rem) clamp(1rem, 4vw, 2rem); }
.featured__head {
  max-width: var(--maxw); margin: 0 auto 2.5rem;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1rem;
}
.featured__head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); flex: 1;
}
.featured__link { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.06em; }

/* CINEMA BAND — showcase film */
.cinema-band {
  position: relative; min-height: clamp(420px, 70vh, 640px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.cinema-band__frame {
  position: absolute; inset: clamp(1rem, 4vw, 2.5rem);
  border: 1px solid rgba(212, 168, 42, 0.25);
  background: rgba(8, 8, 8, 0.6);
  overflow: hidden;
}

.cinema-band__corner {
  position: absolute; width: 28px; height: 28px; z-index: 3; pointer-events: none;
  border-color: var(--gold); opacity: 0.7;
}
.cinema-band__corner--tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
.cinema-band__corner--tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; }
.cinema-band__corner--bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; }
.cinema-band__corner--br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; }

.cinema-band__video-wrap { position: absolute; inset: 0; overflow: hidden; }

.cinema-band__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); will-change: transform;
  filter: saturate(1.05) contrast(1.02);
}

.cinema-band__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.72) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, transparent 45%, rgba(8, 8, 8, 0.5) 100%);
}

.cinema-band__inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 560px; padding: 2rem clamp(1rem, 4vw, 2rem);
}

.cinema-band__inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.8rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.cinema-band__inner h2 em { font-style: italic; color: var(--gold-light); }

.cinema-band__inner p {
  color: rgba(245, 240, 230, 0.82); margin-bottom: 1.5rem; font-weight: 300;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.cinema-band .eyebrow { display: block; text-align: center; }

/* ART CAROUSEL — horizontal collection row */
.art-carousel {
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.art-carousel--shop {
  padding-top: 0;
  border-top: none;
}

.art-carousel--inline {
  padding: 0;
  background: transparent;
  border: none;
  overflow: visible;
}

.art-carousel__head {
  max-width: var(--maxw);
  margin: 0 auto 2rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.art-carousel__head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.art-carousel__pin { overflow: hidden; }

.art-carousel__track {
  display: flex;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  will-change: transform;
}

.art-carousel__track--scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.art-carousel__track--scroll::-webkit-scrollbar { display: none; }

.art-slide {
  flex: 0 0 min(72vw, 300px);
}

.art-carousel__track--scroll .art-slide {
  scroll-snap-align: start;
}

.art-slide__link {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
}

.art-slide__link:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 42, 0.45);
  box-shadow: 0 24px 48px -20px rgba(212, 168, 42, 0.15), 0 24px 48px -20px rgba(0, 0, 0, 0.65);
}

.art-slide__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0a0a;
}

.art-slide__img::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 168, 42, 0.35);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.35s, inset 0.35s var(--ease);
}

.art-slide__link:hover .art-slide__img::after {
  border-color: rgba(212, 168, 42, 0.75);
  inset: 8px;
}

.art-slide__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(212, 168, 42, 0.35);
  padding: 0.3rem 0.55rem;
  backdrop-filter: blur(6px);
}

.art-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.art-slide__link:hover .art-slide__img img { transform: scale(1.05); }

.art-slide__body { padding: 1.1rem 1.2rem 1.35rem; }

.art-slide__index {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.art-slide__body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.art-slide__desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.art-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.art-slide__meta span:last-child {
  color: var(--gold-light);
  font-weight: 500;
}

.art-slide__meta span::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--gold);
}

.art-slide__meta span:first-child::before { content: none; margin: 0; }

.art-slide__cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.art-carousel__foot {
  text-align: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.statement {
  padding: clamp(5rem, 12vh, 8rem) clamp(1rem, 4vw, 2rem); text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.statement blockquote { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.statement p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; line-height: 1.45;
}
.statement cite {
  display: block; margin-top: 1.2rem; font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}

/* PRODUCT GRID */
.product-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card__link { text-decoration: none; color: inherit; display: block; }
.product-card__frame {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line);
  transform-style: preserve-3d;
}
.product-card__frame--lg { aspect-ratio: 4/5; max-height: 70vh; }
.product-card__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__frame img { transform: scale(1.04); }

.product-card__corner {
  position: absolute; width: 18px; height: 18px; z-index: 2; pointer-events: none;
  border-color: var(--gold); opacity: 0.55; transition: opacity 0.35s;
}
.product-card:hover .product-card__corner { opacity: 1; }
.product-card__corner--tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.product-card__corner--tr { top: 8px; right: 8px; border-top: 1px solid; border-right: 1px solid; }
.product-card__corner--bl { bottom: 8px; left: 8px; border-bottom: 1px solid; border-left: 1px solid; }
.product-card__corner--br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

.product-card__body { padding: 1rem 0.2rem; }
.product-card__cat {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.product-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem; margin: 0.3rem 0 0.35rem;
}
.product-card p { font-size: 0.82rem; color: var(--muted); }
.product-card__price { font-size: 0.9rem; color: var(--gold-light); font-weight: 500; margin-top: 0.4rem; display: block; }

/* PAGE HEAD & SHOP */
.page-head { padding: clamp(6rem, 14vh, 8rem) clamp(1rem, 4vw, 2rem) 2rem; text-align: center; }
.page-head__inner { max-width: 640px; margin: 0 auto; }
.page-head h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 0.8rem;
}
.page-head p { color: var(--muted); }

.filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-top: 2rem; padding: 0 1rem;
}
.filter {
  font-family: inherit; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1rem; border: 1px solid var(--line); border-radius: 2px;
  background: transparent; color: var(--muted); cursor: pointer; transition: all 0.25s;
}
.filter:hover, .filter.is-active {
  border-color: var(--gold-dim); color: var(--gold-light); background: rgba(212,168,42,0.08);
}

.shop { padding: 2rem 0 clamp(5rem, 10vh, 7rem); }

/* WORK PAGE */
.work-hero { padding: clamp(6rem, 12vh, 7rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vh, 4rem); }
.work-hero__inner { max-width: var(--maxw); margin: 0 auto; }
.work-hero__back {
  display: inline-block; color: var(--muted); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.06em; margin-bottom: 2rem;
}
.work-hero__back:hover { color: var(--gold-light); }
.work-hero__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.work-hero__info h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem;
}
.work-hero__meta { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.work-hero__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; color: var(--gold-light); margin-bottom: 1.2rem;
}
.work-hero__desc { color: var(--muted); margin-bottom: 1.8rem; max-width: 40ch; }
.work-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.related { padding: clamp(3rem, 8vh, 5rem) 0 clamp(5rem, 10vh, 7rem); border-top: 1px solid var(--line); }
.related__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.related h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; text-align: center;
}
.related .eyebrow { display: block; text-align: center; }
.related .art-carousel__track--scroll { padding-left: 0; padding-right: 0; margin-top: 1.5rem; }

/* ABOUT */
.about-split {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(4rem, 8vh, 6rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center;
}
.about-split__text p { color: var(--muted); margin-bottom: 1.2rem; font-weight: 300; }

.pillars { padding: clamp(4rem, 8vh, 5rem) clamp(1rem, 4vw, 2rem); }
.pillars__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.pillar {
  padding: 1.8rem; border: 1px solid var(--line); background: rgba(255,255,255,0.02);
}
.pillar__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem; color: var(--gold); opacity: 0.6; display: block; margin-bottom: 0.6rem;
}
.pillar h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.88rem; color: var(--muted); }

/* CONTACT */
.contact { padding: 0 clamp(1rem, 4vw, 2rem) clamp(5rem, 10vh, 7rem); }
.contact__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.contact-card {
  border: 1px solid var(--line); padding: 1.5rem; border-radius: 4px;
  background: rgba(255,255,255,0.02);
}
.contact-card h3 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.contact-card a { color: var(--gold-light); text-decoration: none; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }
.contact__cta { text-align: center; margin-top: 2.5rem; }

/* DOCK & FOOTER */
.dock {
  position: fixed; left: 50%; bottom: 1rem; transform: translate(-50%, 160%);
  z-index: 40; display: flex; align-items: center; gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem 1.3rem; border-radius: 4px;
  background: rgba(8,8,8,0.92); backdrop-filter: blur(14px);
  border: 1px solid var(--line); transition: transform 0.55s var(--ease);
}
.dock.is-visible {
  transform: translate(-50%, 0);
  box-shadow: 0 16px 48px -16px rgba(212, 168, 42, 0.2);
}
.dock span { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.dock .btn { padding: 0.55rem 1rem; font-size: 0.72rem; }

.foot {
  border-top: 1px solid var(--line); padding: 2.5rem clamp(1rem, 4vw, 2rem);
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  font-size: 0.82rem; color: var(--muted);
}
.foot__brand img { height: 46px; width: auto; margin-bottom: 0.8rem; }
.foot__brand p { max-width: 32ch; line-height: 1.6; }
.foot__links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; align-items: flex-start; }
.foot__links a { color: var(--muted); text-decoration: none; }
.foot__links a:hover { color: var(--ink); }
.foot__note { width: 100%; margin-top: 0.5rem; font-size: 0.72rem; }

/* REVEALS */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.is-in [data-reveal] { opacity: 1; transform: none; }
.is-in [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.is-in [data-reveal]:nth-child(3) { transition-delay: 0.14s; }

@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__logo img { height: 38px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .categories__inner, .product-grid, .product-grid--3,
  .about-split, .pillars__grid, .contact__grid, .work-hero__grid {
    grid-template-columns: 1fr;
  }
  .hero-typo { padding-top: clamp(4.5rem, 11vh, 6.5rem); align-items: flex-start; }
  .hero-typo__headline { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-typo__body { max-width: none; font-size: 1.05rem; }
  .dock span { display: none; }
  .art-carousel__pin {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .art-carousel__pin::-webkit-scrollbar { display: none; }
  .art-slide { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  .film-grain, .hero__wing--lg, .hero__scroll i { animation: none; }
  * { animation: none !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
