/* ============================================================
   REBEL ROMEO — design system
   dark cinematic / paper grain / blood red / editorial serif
   ============================================================ */

:root {
  --bg-0: #0b0809;
  --bg-1: #120d0e;
  --bg-2: #1a1314;
  --ink: #ece4d8;
  --ink-dim: #b5a89c;
  --ink-faint: #9b8c80;
  --blood: #9c1226;
  --blood-bright: #d41c35;
  --blood-text: #ec5a6c;
  --rose: #c08793;
  --line: rgba(236, 228, 216, 0.14);
  --line-soft: rgba(236, 228, 216, 0.07);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Helvetica Neue", sans-serif;
  --font-stencil: "Allerta Stencil", "Arial Black", sans-serif;
  --font-type: "Special Elite", "Courier New", monospace;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(5rem, 14vh, 10rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.96rem, 0.9rem + 0.25vw, 1.08rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

a { color: inherit; text-decoration: none; }
p a, .prose a {
  text-decoration: underline;
  text-decoration-color: var(--blood-bright);
  text-underline-offset: 0.2em;
  transition: color 0.3s;
}
p a:hover, .prose a:hover { color: var(--rose); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; }

/* ---------- grain + atmosphere ---------- */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 280px 280px;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1999;
  background: radial-gradient(ellipse 120% 90% at 50% 40%, transparent 55%, rgba(5, 3, 4, 0.5) 100%);
}

/* ---------- a11y ---------- */

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 4000;
  background: var(--blood);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: top 0.25s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--blood-bright);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- header / nav ---------- */

.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.6rem) var(--gutter);
  transition: transform 0.45s var(--ease-out), background 0.4s;
}
.site-head.is-hidden { transform: translateY(-110%); }
.site-head.is-scrolled {
  background: linear-gradient(rgba(11, 8, 9, 0.92), rgba(11, 8, 9, 0.75) 70%, transparent);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3201;
}
.brand img { width: 1.9rem; height: 1.9rem; mix-blend-mode: screen; }
.brand .amp { color: var(--blood-bright); }

.nav-desktop { display: none; }
@media (min-width: 880px) {
  .nav-desktop { display: flex; gap: 2.4rem; }
}
.nav-desktop a {
  font-family: var(--font-stencil);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--blood-bright);
}

.menu-btn {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 3201;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-dim);
  font-family: var(--font-stencil);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}
@media (min-width: 880px) { .menu-btn { display: none; } }
.menu-btn .bars {
  width: 26px; height: 12px;
  position: relative;
}
.menu-btn .bars::before, .menu-btn .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out);
}
.menu-btn .bars::before { top: 0; }
.menu-btn .bars::after { top: 10px; }
body.menu-open .menu-btn .bars::before { top: 5px; transform: rotate(45deg); }
body.menu-open .menu-btn .bars::after { top: 5px; transform: rotate(-45deg); }

/* overlay menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3100;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-out);
  visibility: hidden;
}
body.menu-open .menu-overlay { clip-path: inset(0 0 0% 0); visibility: visible; }
.menu-overlay::after {
  content: "";
  position: absolute;
  right: -15%; bottom: -18%;
  width: 70vmin; height: 70vmin;
  background: url("/assets/img/brand/rose.png") center/contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.22;
  pointer-events: none;
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}
.menu-overlay a.menu-link {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
body.menu-open .menu-overlay a.menu-link { opacity: 1; transform: none; }
.menu-overlay a.menu-link:hover { color: var(--rose); font-style: italic; }
.menu-overlay a.menu-link .n {
  font-family: var(--font-stencil);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blood-text);
}
.menu-overlay .menu-foot {
  position: absolute;
  bottom: clamp(1.2rem, 4vh, 2.5rem);
  left: var(--gutter);
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ---------- layout primitives ---------- */

.wrap {
  width: min(100% - 2 * var(--gutter), 1380px);
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 2 * var(--gutter), 1680px);
  margin-inline: auto;
}

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

.eyebrow {
  font-family: var(--font-stencil);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blood-text);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--blood-bright);
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 2.6rem; height: 1px;
  background: var(--blood-bright);
  flex: none;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.08;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.16;
}
.italic, .display-xl em, .display-lg em, .display-md em {
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.75;
  color: var(--ink-dim);
  max-width: 38em;
}

.prose { max-width: 41em; color: var(--ink-dim); }
.prose p { margin: 0 0 1.4em; }
.prose strong { color: var(--ink); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-stencil);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 1rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: color 0.35s, border-color 0.35s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blood);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn:hover { border-color: var(--blood); }
.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

.btn-solid { background: var(--blood); border-color: var(--blood); }
.btn-solid::before { background: var(--bg-0); }

/* ---------- hero (home) ---------- */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(0.42) saturate(0.82) contrast(1.02);
  transform: scale(1.12);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 60% at 70% 20%, rgba(156, 18, 38, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(11, 8, 9, 0.55), rgba(11, 8, 9, 0.15) 38%, rgba(11, 8, 9, 0.92) 88%);
}
.hero-inner {
  padding: 0 var(--gutter) clamp(5.5rem, 12vh, 8rem);
  width: min(100%, 1680px);
  margin-inline: auto;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 13.5vw, 11.5rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 0 0 1.4rem;
}
.hero-title .row { display: block; overflow: hidden; }
.hero-title .row > span { display: inline-block; }
.hero-title .row.indent { padding-left: clamp(2rem, 12vw, 11rem); }
.hero-title .rebel-r { color: var(--blood-bright); }
.hero-sub {
  font-family: var(--font-type);
  font-size: clamp(0.85rem, 1.7vw, 1.05rem);
  color: var(--ink-dim);
  max-width: 30em;
  margin: 0;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 5vh, 3.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-stencil);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.scroll-cue .tick {
  width: 1px; height: 2.6rem;
  background: linear-gradient(var(--blood-bright), transparent);
  animation: cue 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(1.2rem); opacity: 0; }
}

/* ---------- marquee ---------- */

.marquee {
  overflow: clip;
  border-block: 1px solid var(--line-soft);
  padding-block: 1.05rem;
  display: flex;
  user-select: none;
}
.marquee .track {
  display: flex;
  flex: none;
  gap: 3.2rem;
  padding-right: 3.2rem;
  align-items: baseline;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee .w {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-faint);
}
.marquee .dot { color: var(--blood-bright); font-size: 0.8rem; }
@media (prefers-reduced-motion: reduce) {
  .marquee .track { animation: none; }
}

/* ---------- exhibition walls (featured works) ---------- */

.wall {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
  margin-block: clamp(4rem, 11vh, 8rem);
}
@media (min-width: 880px) {
  .wall { grid-template-columns: repeat(12, 1fr); }
  .wall .wall-img { grid-column: 1 / 8; }
  .wall .wall-txt { grid-column: 8 / 13; }
  .wall.flip .wall-img { grid-column: 6 / 13; order: 2; }
  .wall.flip .wall-txt { grid-column: 1 / 6; order: 1; }
}
.wall-img {
  position: relative;
}
.wall-img .frame {
  position: relative;
  overflow: clip;
  background: var(--bg-2);
}
.wall-img img {
  width: 100%;
  transition: transform 0.8s var(--ease-out);
}
.wall-img a:hover img { transform: scale(1.025); }
.wall-img .num {
  position: absolute;
  top: -0.6em;
  left: -0.18em;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 500;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 228, 216, 0.35);
  pointer-events: none;
  line-height: 1;
}
.wall-txt .eyebrow { margin-bottom: 1rem; }
.wall-txt h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.wall-txt .prov {
  font-family: var(--font-type);
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 2.05;
  margin: 1.3rem 0 1.6rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--blood);
}
.wall-txt .prov b { color: var(--ink-dim); font-weight: 400; }

/* ---------- pull quote ---------- */

.pullquote {
  text-align: center;
  padding-block: clamp(4rem, 12vh, 8rem);
  position: relative;
}
.pullquote blockquote {
  margin: 0 auto;
  max-width: 21em;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}
.pullquote .src {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-type);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.pullquote::before {
  content: "❝";
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--blood-bright);
  margin-bottom: 1.4rem;
}

/* ---------- cards / collections ---------- */

.cards {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
}
.card {
  position: relative;
  display: block;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  overflow: clip;
}
.card .img {
  display: block;
  overflow: clip;
  aspect-ratio: 4 / 3;
}
.card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s;
  filter: saturate(0.9);
}
.card:hover .img img { transform: scale(1.05); filter: saturate(1); }
.card .body { display: block; padding: 1.2rem 1.3rem 1.4rem; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}
.card .tag {
  font-family: var(--font-stencil);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-top: 0.4rem;
}

/* ---------- gallery chapters (work page) ---------- */

.chapter-head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.chapter-head .no {
  font-family: var(--font-stencil);
  color: var(--blood-text);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.chapter-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 600;
}
.chapter-head .count {
  margin-left: auto;
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.art-feature {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(4.5rem, 11vh, 8rem);
}
@media (min-width: 880px) {
  .art-feature { grid-template-columns: repeat(12, 1fr); align-items: end; }
  .art-feature .art-img { grid-column: 1 / 8; }
  .art-feature .art-meta { grid-column: 8 / 13; position: sticky; bottom: 4vh; }
  .art-feature.flip .art-img { grid-column: 6 / 13; order: 2; }
  .art-feature.flip .art-meta { grid-column: 1 / 6; order: 1; }
}
.art-img { overflow: clip; background: var(--bg-2); }
.art-img img { width: 100%; }
.art-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}
.art-meta .spec {
  font-family: var(--font-type);
  font-size: 0.82rem;
  line-height: 2.1;
  color: var(--ink-faint);
  margin: 1.4rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 0.9rem;
}
.art-meta .spec b { color: var(--ink-dim); font-weight: 400; }

.duo {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
@media (min-width: 720px) { .duo { grid-template-columns: 1fr 1fr; } }
.duo figure { margin: 0; }
.duo figcaption, .figcap {
  font-family: var(--font-type);
  font-size: 0.78rem;
  color: var(--ink-faint);
  padding-top: 0.7rem;
}

/* ---------- archive (typewritten fragments) ---------- */

.archive-strip {
  position: relative;
}
.fragment {
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  position: relative;
  font-family: var(--font-type);
  color: var(--ink-dim);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.9;
}
.fragment::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blood), transparent 70%);
}
.fragment .when {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--blood-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.fragment .ttl { color: var(--ink); }
.fragment p { margin: 0; white-space: pre-line; }

.archive-grid {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: start;
}
@media (min-width: 720px) { .archive-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .archive-grid { grid-template-columns: 1fr 1fr 1fr; } }
.archive-grid .fragment:nth-child(3n+2) { transform: rotate(0.5deg); }
.archive-grid .fragment:nth-child(3n) { transform: rotate(-0.6deg); }

/* ---------- story page ---------- */

.story-chapter { padding-block: clamp(3.5rem, 9vh, 7rem); }
.story-chapter .ch-no {
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--blood-text);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}
.story-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (min-width: 880px) {
  .story-grid { grid-template-columns: repeat(12, 1fr); }
  .story-grid .txt { grid-column: 1 / 8; }
  .story-grid .fig { grid-column: 8 / 13; }
  .story-grid.flip .txt { grid-column: 6 / 13; order: 2; }
  .story-grid.flip .fig { grid-column: 1 / 6; order: 1; }
}
.story-grid .fig figure { margin: 0; position: sticky; top: 14vh; }
.polaroid {
  background: #efe7da;
  padding: 0.85rem 0.85rem 2.6rem;
  transform: rotate(-1.6deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  max-width: 380px;
}
.polaroid img { filter: saturate(0.85) contrast(0.98); }
.polaroid figcaption {
  font-family: var(--font-type);
  color: #3a3026;
  font-size: 0.8rem;
  padding-top: 1rem;
  text-align: center;
}

.manifesto {
  text-align: center;
  padding-block: clamp(5rem, 14vh, 9rem);
  position: relative;
  overflow: clip;
}
.manifesto .lines {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 1.18;
}
.manifesto .lines .accent { color: var(--blood-bright); font-style: italic; font-weight: 500; }
.manifesto .sig {
  margin-top: 2.8rem;
  font-family: var(--font-type);
  color: var(--ink-faint);
  font-size: 0.9rem;
}

/* ---------- shop ---------- */

.product {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  padding-block: clamp(2.6rem, 7vh, 5rem);
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 880px) {
  .product { grid-template-columns: repeat(12, 1fr); align-items: start; }
  .product .p-img { grid-column: 1 / 7; }
  .product .p-info { grid-column: 7 / 13; position: sticky; top: 12vh; }
  .product.flip .p-img { grid-column: 7 / 13; order: 2; }
  .product.flip .p-info { grid-column: 1 / 7; order: 1; }
}
.p-img { overflow: clip; background: var(--bg-2); }
.p-img img { width: 100%; transition: transform 0.7s var(--ease-out); }
.p-img:hover img { transform: scale(1.02); }
.p-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 0.6rem;
}
.p-info .p-sub {
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 0.92rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.price-table th {
  font-family: var(--font-stencil);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}
.price-table .pr { text-align: right; font-family: var(--font-type); }
.price-table .was {
  text-decoration: line-through;
  color: var(--ink-faint);
  margin-right: 0.6rem;
  font-size: 0.85em;
}
.price-table .now { color: var(--blood-text); }
.badge {
  display: inline-block;
  font-family: var(--font-stencil);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--blood);
  color: var(--blood-text);
  padding: 0.32rem 0.7rem;
  margin-bottom: 1.1rem;
}
.badge.sold { border-color: var(--ink-faint); color: var(--ink-faint); }

.trust {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: clamp(3rem, 7vh, 5rem);
}
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust > div { background: var(--bg-1); padding: 1.8rem 1.6rem; }
.trust h3 {
  font-family: var(--font-stencil);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blood-text);
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.trust p { margin: 0; font-size: 0.92rem; color: var(--ink-dim); }

/* ---------- exhibitions ---------- */

.show {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
  padding-block: clamp(3rem, 8vh, 5.5rem);
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 880px) {
  .show { grid-template-columns: repeat(12, 1fr); }
  .show .s-meta { grid-column: 1 / 5; }
  .show .s-body { grid-column: 5 / 13; }
}
.show .year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 228, 216, 0.45);
  line-height: 1;
}
.show h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin: 0.8rem 0 0.5rem;
}
.show .where {
  font-family: var(--font-stencil);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- contact ---------- */

.contact-hero {
  padding-top: clamp(9rem, 22vh, 14rem);
}
.email-xl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.6vw, 3.6rem);
  word-break: break-word;
  border-bottom: 2px solid var(--blood);
  transition: color 0.3s, border-color 0.3s;
}
.email-xl:hover { color: var(--rose); border-color: var(--rose); }

.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--font-stencil);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blood-bright);
}

/* ---------- footer ---------- */

.site-foot {
  margin-top: var(--section);
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 9vh, 6rem) 0 2.2rem;
}
.site-foot::before {
  content: "";
  position: absolute;
  right: -12%; top: -25%;
  width: 58vmin; height: 58vmin;
  background: url("/assets/img/brand/rose.png") center/contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.14;
  pointer-events: none;
}
.foot-grid {
  display: grid;
  gap: 2.6rem;
  position: relative;
}
@media (min-width: 880px) {
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.foot-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  max-width: 17em;
  color: var(--ink);
}
.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list li { margin-bottom: 0.65rem; }
.foot-list a {
  color: var(--ink-dim);
  font-size: 0.92rem;
  transition: color 0.3s;
}
.foot-list a:hover { color: var(--ink); }
.foot-list .h {
  font-family: var(--font-stencil);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}
.foot-base {
  margin-top: 3.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-family: var(--font-type);
  font-size: 0.74rem;
  color: var(--ink-faint);
}

/* ---------- page intro (interior pages) ---------- */

.page-head {
  padding-top: clamp(9rem, 20vh, 13rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}
.page-head .lede { margin-top: 1.6rem; }

/* ---------- reveal animations (gsap adds .is-ready) ---------- */

[data-reveal] { opacity: 0; }
html.no-js [data-reveal], html.reduce-motion [data-reveal] { opacity: 1; }

[data-img-reveal] .frame, [data-img-reveal].frame { overflow: clip; }
[data-img-reveal] img { will-change: transform; }

/* ---------- cursor ---------- */

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  z-index: 5000;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--blood-bright);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, margin 0.3s, opacity 0.3s;
  opacity: 0;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none; }
}

/* ---------- preloader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  transition: clip-path 0.8s var(--ease-out), visibility 0.8s;
}
.loader.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader .l-mark {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.loader .l-mark em { color: var(--blood-bright); font-style: italic; }
.loader .l-bar {
  width: clamp(120px, 24vw, 220px);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader .l-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--blood-bright);
  transform: translateX(-100%);
  animation: load 1.1s var(--ease-out) forwards;
}
@keyframes load { to { transform: translateX(0); } }

/* ---------- misc ---------- */

.divider-rose {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--blood-bright);
  margin-block: clamp(2.5rem, 7vh, 4.5rem);
}
.divider-rose::before, .divider-rose::after {
  content: "";
  height: 1px;
  width: min(18vw, 130px);
  background: var(--line);
}

.note {
  font-family: var(--font-type);
  font-size: 0.82rem;
  color: var(--ink-faint);
}

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