/* ============================================================
   RENAISSANCE NINE STUDIO — LUXURY DARK THEME
   Black lacquer · brushed gold · brushed silver · bronze · ivory
   ============================================================ */

:root {
  --black: #050505;
  --lacquer: #0a0a0c;
  --panel: #101014;
  --panel-2: #16161b;
  --gold: #d8ad55;
  --gold-bright: #f0d184;
  --gold-deep: #9c7a35;
  --silver: #d8d8d2;
  --silver-dim: #9a9a96;
  --bronze: #a97142;
  --ivory: #f5efe2;
  --muted: #a89c8a;
  --line-gold: rgba(216, 173, 85, .30);
  --line-soft: rgba(255, 255, 255, .10);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-lux: cubic-bezier(.22, .8, .25, 1);
  --pad-x: clamp(20px, 6vw, 110px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle lacquer sheen across the whole page — with a very slow drift */
body::before {
  content: "";
  position: fixed;
  inset: -60px 0 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 500px at 12% -5%, rgba(216, 173, 85, .07), transparent 60%),
    radial-gradient(900px 480px at 88% 8%, rgba(216, 216, 210, .05), transparent 55%);
  animation: bgDrift 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes bgDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, 46px, 0); }
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: rgba(216, 173, 85, .35); color: #fff; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .01em;
  margin: 0;
  color: var(--ivory);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
}

.section {
  position: relative;
  padding: clamp(80px, 11vw, 150px) var(--pad-x);
  z-index: 1;
}

.section-head { max-width: 820px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 700px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease-lux), border-color .4s var(--ease-lux),
              box-shadow .4s var(--ease-lux), transform .4s var(--ease-lux),
              background .4s var(--ease-lux);
}

.btn-gold {
  color: #171106;
  background: linear-gradient(160deg, #f0d184 0%, #d8ad55 45%, #b98d3d 100%);
  border: 1px solid rgba(240, 209, 132, .8);
  box-shadow: 0 10px 34px rgba(216, 173, 85, .22);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(216, 173, 85, .38);
}
/* light sweep across gold buttons */
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease-lux);
}
.btn-gold:hover::after { left: 130%; }

.btn-ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(216, 173, 85, .45);
}
.btn-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(216, 173, 85, .10);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(216, 173, 85, .18), 0 10px 30px rgba(0, 0, 0, .4);
}
/* soft internal light sweep on ghost buttons too */
.btn-ghost::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(240, 209, 132, .18), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease-lux);
}
.btn-ghost:hover::after { left: 130%; }

.btn-lg { padding: 19px 40px; font-size: 14px; }
.btn-block { width: 100%; text-align: center; }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1.4s ease;
}
.intro.is-leaving { opacity: 0; pointer-events: none; }
.intro[hidden] { display: none; }

.intro-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-video {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 0 120px rgba(216, 173, 85, .14), 0 40px 100px rgba(0, 0, 0, .8);
}

.intro-glow {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(60% 55% at 38% 50%, rgba(216, 173, 85, .16), transparent 70%),
    radial-gradient(60% 55% at 64% 50%, rgba(216, 216, 210, .10), transparent 70%);
  filter: blur(30px);
  z-index: 1;
  animation: introGlow 6s ease-in-out infinite alternate;
}
@keyframes introGlow {
  from { opacity: .6; transform: scale(.98); }
  to   { opacity: 1;  transform: scale(1.03); }
}

.intro-skip {
  position: absolute;
  bottom: clamp(26px, 5vh, 52px);
  right: clamp(26px, 5vw, 60px);
  z-index: 3;
  background: rgba(0, 0, 0, .45);
  color: var(--silver);
  border: 1px solid rgba(216, 173, 85, .4);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 13px 26px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease-lux);
}
.intro-skip:hover {
  color: #171106;
  background: var(--gold);
  border-color: var(--gold-bright);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--pad-x);
  transition: background .5s ease, box-shadow .5s ease, padding .5s ease,
              border-color .5s ease, backdrop-filter .5s ease;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(216, 173, 85, .18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1560px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-brand img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(216, 173, 85, .4);
  box-shadow: 0 6px 22px rgba(216, 173, 85, .18);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.nav-brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .05em;
  color: var(--ivory);
}
.nav-brand-sub {
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver-dim);
  padding: 8px 0;
  position: relative;
  transition: color .35s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transition: right .45s var(--ease-lux);
}
.nav-links a:hover {
  color: var(--ivory);
  text-shadow: 0 0 14px rgba(240, 209, 132, .35);
}
.nav-links a:hover::after { right: 0; }

.nav-links .nav-cta {
  color: var(--gold-bright);
  border: 1px solid rgba(216, 173, 85, .5);
  border-radius: 2px;
  padding: 10px 22px;
  transition: all .35s var(--ease-lux);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #171106;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 6;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(216, 173, 85, .35);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold-bright);
  transition: transform .4s var(--ease-lux), opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vh, 180px) var(--pad-x) clamp(90px, 12vh, 140px);
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 70% 20%, rgba(216, 173, 85, .10), transparent 60%),
    radial-gradient(900px 600px at 20% 90%, rgba(216, 216, 210, .05), transparent 55%),
    linear-gradient(180deg, #000 0%, #070707 55%, var(--black) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* slow spotlight sweep across the hero */
.hero-spotlight {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(240, 209, 132, .05) 50%, transparent 58%);
  animation: sweep 11s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { transform: translateX(-18%); }
  50%      { transform: translateX(18%); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(52px, 7.6vw, 118px);
  line-height: .95;
  margin: 0 0 26px;
}
.hero-title .shimmer { display: inline-block; }

/* metallic shimmer text */
.shimmer {
  background: linear-gradient(100deg,
    var(--ivory) 0%,
    var(--gold-bright) 28%,
    #fff7e0 40%,
    var(--gold) 52%,
    var(--silver) 74%,
    var(--ivory) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerMove 8s linear infinite;
}
@keyframes shimmerMove {
  to { background-position: 220% center; }
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 26px);
  color: var(--silver);
  margin: 0 0 22px;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  margin: 0 0 40px;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

/* emblem */
.hero-emblem {
  position: relative;
  justify-self: center;
  width: min(430px, 78vw);
  aspect-ratio: 1;
}
/* breathing spotlight behind the emblem */
.emblem-glow {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 173, 85, .16), rgba(216, 216, 210, .05) 45%, transparent 70%);
  filter: blur(24px);
  animation: emblemGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes emblemGlow {
  from { opacity: .55; transform: scale(.96); }
  to   { opacity: 1;   transform: scale(1.05); }
}
/* slow floating motion — on an inner wrapper so it never fights the
   scroll parallax applied to .hero-emblem itself */
.emblem-float {
  position: relative;
  width: 100%;
  height: 100%;
  animation: emblemFloat 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.emblem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(216, 173, 85, .35);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, .8),
    0 0 90px rgba(216, 173, 85, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.emblem-ring {
  position: absolute;
  inset: -9%;
  border: 1px solid rgba(216, 173, 85, .22);
  border-radius: 50%;
  animation: ringSpin 40s linear infinite;
}
.emblem-ring::before {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px rgba(240, 209, 132, .9);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* light sweep over the emblem */
.emblem-sweep {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
}
.emblem-sweep::after {
  content: "";
  position: absolute;
  top: -20%; bottom: -20%;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .14), transparent);
  transform: skewX(-18deg);
  animation: emblemSweep 7s ease-in-out infinite;
}
@keyframes emblemSweep {
  0%, 55%  { left: -70%; }
  85%, 100% { left: 140%; }
}

.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--black));
  z-index: 1;
  pointer-events: none;
}

/* luxury reveal of the homepage after the intro dismisses */
body.intro-done .hero-inner {
  animation: heroReveal 1.8s var(--ease-lux) both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.03); filter: brightness(.55); }
  to   { opacity: 1; transform: none;        filter: brightness(1); }
}

/* cursor-following soft spotlight (desktop only, added via JS) */
.cursor-glow {
  position: fixed;
  top: -280px;
  left: -280px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 173, 85, .05), rgba(216, 216, 210, .015) 45%, transparent 68%);
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .shimmer { animation: none; }
  .hero-spotlight, .emblem-ring, .emblem-sweep::after { animation: none; }
  .emblem-float, .emblem-glow, .swatch::after, .status-dot { animation: none; }
  body::before { animation: none; }
  body.intro-done .hero-inner { animation: none; }
  .cursor-glow { display: none; }
  .product-grid, .product-grid.is-filtering { transition: none; opacity: 1; transform: none; }
  .nav-links li, .nav-links.is-open li { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   COLLECTION OVERVIEW
   ============================================================ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.collection-card {
  position: relative;
  min-height: 460px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 85, .18);
  background: var(--lacquer);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform .6s var(--ease-lux), box-shadow .6s var(--ease-lux),
              border-color .6s var(--ease-lux);
}
.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 209, 132, .55);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .65), 0 0 60px rgba(216, 173, 85, .10);
}

.collection-card .cc-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.collection-card .cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.02);
  transition: transform 1.1s var(--ease-lux), filter 1.1s var(--ease-lux);
}
.collection-card:hover .cc-img img {
  transform: scale(1.06);
  filter: brightness(.85) saturate(1.08);
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,5,5,.05) 30%, rgba(5,5,5,.88) 78%, rgba(5,5,5,.97));
}

.cc-body { padding: 26px 26px 28px; }
.cc-body h3 {
  font-size: clamp(26px, 2.4vw, 33px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.cc-body .cc-desc {
  color: #c9bda9;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.cc-finishes {
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.cc-link {
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cc-link .arrow { transition: transform .4s var(--ease-lux); }
.collection-card:hover .cc-link .arrow { transform: translateX(7px); }

/* ============================================================
   PRODUCT GALLERY
   ============================================================ */
.section-gallery {
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(216, 173, 85, .05), transparent 60%),
    var(--black);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(34px, 4vw, 54px);
}
.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-dim);
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: all .35s var(--ease-lux);
}
.filter-btn:hover { color: var(--ivory); border-color: rgba(216, 173, 85, .5); }
.filter-btn.is-active {
  color: #171106;
  background: linear-gradient(160deg, #f0d184, #d8ad55);
  border-color: rgba(240, 209, 132, .9);
  box-shadow: 0 8px 26px rgba(216, 173, 85, .25);
}
.filter-divider {
  width: 1px;
  height: 26px;
  background: rgba(216, 173, 85, .3);
  margin: 0 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
  perspective: 1400px;
  transition: opacity .26s ease, transform .26s ease;
}
/* smooth fade while switching filters */
.product-grid.is-filtering {
  opacity: 0;
  transform: translateY(10px);
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .16);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease-lux), box-shadow .55s var(--ease-lux),
              border-color .55s var(--ease-lux), opacity .5s ease;
  animation: cardIn .7s var(--ease-lux) backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(240, 209, 132, .6);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .7), 0 0 55px rgba(216, 173, 85, .12);
}
/* while the pointer-tilt is active, transform follows the cursor quickly
   but shadow/border keep their slow luxury easing */
.product-card.is-tilt {
  transition: transform .12s ease-out, box-shadow .55s var(--ease-lux),
              border-color .55s var(--ease-lux);
  will-change: transform;
}

.pc-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #060606;
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-lux);
}
.product-card:hover .pc-media img { transform: scale(1.07); }

/* spotlight reveal on hover */
.pc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 50% 35%, rgba(240, 209, 132, .12), transparent 70%);
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.product-card:hover .pc-media::after { opacity: 1; }

/* metallic sweep */
.pc-sweep {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.pc-sweep::after {
  content: "";
  position: absolute;
  top: -20%; bottom: -20%;
  left: -75%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: skewX(-18deg);
  transition: left .9s var(--ease-lux);
}
.product-card:hover .pc-sweep::after { left: 150%; }

.pc-sku {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(216, 173, 85, .4);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.pc-body { padding: 22px 22px 24px; }
.pc-collection {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.pc-body h3 { font-size: 25px; line-height: 1.05; margin-bottom: 10px; }
.pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.pc-meta span {
  font-size: 11px;
  letter-spacing: .06em;
  color: #d5c9b6;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, .03);
}
.pc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
  min-height: 44px;
}
.pc-cta {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: none;
  border: 1px solid rgba(216, 173, 85, .45);
  border-radius: 2px;
  padding: 12px 22px;
  cursor: pointer;
  transition: all .35s var(--ease-lux);
}
.pc-cta:hover { background: var(--gold); color: #171106; }

.gallery-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #cbbfa8;
  border-left: 1px solid rgba(216, 173, 85, .55);
  padding-left: 18px;
  margin: 0 0 clamp(30px, 3.6vw, 46px);
  max-width: 640px;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-style: italic;
  font-family: var(--serif);
  font-size: 20px;
}

/* ============================================================
   COLLECTOR EDITIONS (SIZES)
   ============================================================ */
.section-editions {
  background:
    radial-gradient(1000px 520px at 50% 100%, rgba(216, 173, 85, .06), transparent 60%),
    var(--black);
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  align-items: stretch;
}

.edition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .18);
  border-radius: 6px;
  padding: clamp(26px, 2.8vw, 40px);
  overflow: hidden;
  transition: transform .55s var(--ease-lux), border-color .55s var(--ease-lux),
              box-shadow .55s var(--ease-lux);
}
.edition-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 209, 132, .5);
  box-shadow: 0 32px 72px rgba(0, 0, 0, .6), 0 0 55px rgba(216, 173, 85, .08);
}
.edition-card.is-live {
  border-color: rgba(240, 209, 132, .5);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(216, 173, 85, .10), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--lacquer));
}

/* pedestal scale mark — relative heights of the three editions */
.edition-scale {
  display: flex;
  align-items: flex-end;
  height: 110px;
  margin-bottom: 26px;
}
.edition-scale .scale-bar {
  width: 34px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgba(240, 209, 132, .85), rgba(156, 122, 53, .35));
  box-shadow: 0 0 26px rgba(216, 173, 85, .22);
  position: relative;
}
.edition-scale .scale-bar::after {
  content: "";
  position: absolute;
  left: -14px; right: -14px;
  bottom: -8px;
  height: 8px;
  background: linear-gradient(180deg, #2a2a2e, #101013);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, .08);
}
.edition-card:not(.is-live) .edition-scale .scale-bar {
  background: linear-gradient(180deg, rgba(216, 216, 210, .5), rgba(120, 120, 116, .2));
  box-shadow: 0 0 20px rgba(216, 216, 210, .1);
}

.edition-size {
  font-family: var(--serif);
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1;
  color: var(--ivory);
  margin: 0 0 4px;
}
.edition-name {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.edition-copy {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.edition-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, .03);
}
.edition-status.is-live {
  color: var(--gold-bright);
  border-color: rgba(240, 209, 132, .55);
  background: rgba(216, 173, 85, .08);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(240, 209, 132, .9);
  animation: dotPulse 2.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* ============================================================
   SIGNATURE PIECES
   ============================================================ */
.section-signature {
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(216, 216, 210, .04), transparent 55%),
    linear-gradient(180deg, var(--black), #070708 40%, var(--black));
}

.signature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}

.signature-piece {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.signature-piece:nth-child(even) .sig-media { order: 2; }

.sig-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 85, .22);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .7);
}
.sig-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}
.signature-piece:hover .sig-media img { transform: scale(1.045); }
.sig-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(85% 70% at 50% 30%, transparent 55%, rgba(5, 5, 5, .5));
  pointer-events: none;
}

.sig-label {
  font-size: 11.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.sig-body h3 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.02;
  margin-bottom: 14px;
}
.sig-finish {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #171106;
  background: linear-gradient(160deg, #f0d184, #c89a48);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.sig-finish.is-silver {
  background: linear-gradient(160deg, #ececea, #b9b9b4);
  color: #17171a;
}
.sig-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 0 30px;
}

/* ============================================================
   FINISHES
   ============================================================ */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.finish-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  overflow: hidden;
  background: var(--lacquer);
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux),
              border-color .5s var(--ease-lux);
}
.finish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 209, 132, .5);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .6);
}

.swatch {
  position: relative;
  height: 150px;
  overflow: hidden;
}
/* brushed-metal texture via repeating gradient + sheen */
.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(92deg,
    rgba(255, 255, 255, .05) 0 1px,
    transparent 1px 3px);
  mix-blend-mode: overlay;
}
/* slow ambient sheen that drifts across every swatch; speeds up on hover */
.swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .20) 48%, transparent 64%);
  transform: translateX(-130%);
  animation: swatchSheen 7.5s ease-in-out infinite;
  animation-delay: var(--sheen-delay, 0s);
}
@keyframes swatchSheen {
  0%, 18%   { transform: translateX(-130%); }
  60%, 100% { transform: translateX(130%); }
}
.finish-card:hover .swatch::after { animation-duration: 2.4s; }
.finish-card:hover .swatch { filter: brightness(1.07); }
.swatch { transition: filter .6s var(--ease-lux); }

/* the real hand-applied patina range */
.swatch.gold-leaf      { background: linear-gradient(150deg, #fff3c4 0%, #f3cf78 26%, #d8a844 55%, #8f6420 100%); }
.swatch.antique-gold   { background: linear-gradient(150deg, #d9b968 0%, #a9853c 40%, #6f5622 78%, #4a3915 100%); }
.swatch.silver-leaf    { background: linear-gradient(150deg, #ffffff 0%, #e8e8e5 28%, #b9b9b5 60%, #7c7c78 100%); }
.swatch.pewter         { background: linear-gradient(150deg, #b9b9b6 0%, #85857f 38%, #55554f 70%, #2e2e2a 100%); }
.swatch.ebony-black    { background: linear-gradient(150deg, #46464b 0%, #26262b 40%, #0e0e11 75%, #040405 100%); }
.swatch.spanish-copper { background: linear-gradient(150deg, #e8996a 0%, #c06a3a 35%, #8a4526 68%, #4a2413 100%); }
.swatch.european-gold  { background: linear-gradient(150deg, #f5e2a8 0%, #dcb968 38%, #b08c42 70%, #6f5526 100%); }
.swatch.autumn-gold    { background: linear-gradient(150deg, #d9a852 0%, #a67a34 40%, #6f4d22 72%, #3d2a12 100%); }
.swatch.grecian-gold   { background: linear-gradient(150deg, #f7ecd2 0%, #e3cf9d 38%, #bfa571 70%, #86713f 100%); }

.finish-body { padding: 18px 20px 20px; }
.finish-body h3 { font-size: 22px; margin-bottom: 6px; }
.finish-body p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

.finish-label {
  font-size: 9.5px !important;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin: 0 0 8px !important;
}

.patina-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #cbbfa8;
  border-left: 1px solid rgba(216, 173, 85, .55);
  padding-left: 18px;
  margin: clamp(30px, 3.6vw, 46px) 0 0;
  max-width: 640px;
}

/* ============================================================
   MATERIAL EDITIONS
   ============================================================ */
.section-materials {
  background:
    radial-gradient(1100px 560px at 15% 100%, rgba(216, 216, 210, .04), transparent 60%),
    linear-gradient(180deg, var(--black), #08080a 55%, var(--black));
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.material-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .18);
  border-radius: 6px;
  padding: clamp(26px, 2.8vw, 40px);
  overflow: hidden;
  transition: transform .55s var(--ease-lux), border-color .55s var(--ease-lux),
              box-shadow .55s var(--ease-lux);
}
.material-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 209, 132, .5);
  box-shadow: 0 32px 72px rgba(0, 0, 0, .6), 0 0 55px rgba(216, 173, 85, .08);
}
.material-card.is-live {
  border-color: rgba(240, 209, 132, .5);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(216, 173, 85, .10), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--lacquer));
}
/* carbon-fibre weave texture for the collector edition */
.material-card.is-carbon {
  background:
    linear-gradient(180deg, rgba(16, 16, 20, .85), rgba(10, 10, 12, .92)),
    repeating-linear-gradient(45deg, #1b1b1f 0 3px, #101013 3px 6px),
    repeating-linear-gradient(-45deg, #17171b 0 3px, #0c0c0f 3px 6px);
  border-color: rgba(216, 216, 210, .22);
}
.material-card.is-carbon:hover { border-color: rgba(216, 216, 210, .45); }

.material-numeral {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .3em;
  color: var(--gold);
  margin: 0 0 16px;
}
.material-card.is-carbon .material-numeral { color: var(--silver); }
.material-card h3 { font-size: clamp(24px, 2.2vw, 30px); line-height: 1.1; margin-bottom: 14px; }
.material-copy {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}
.material-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, .03);
}
.material-status.is-live {
  color: var(--gold-bright);
  border-color: rgba(240, 209, 132, .55);
  background: rgba(216, 173, 85, .08);
}

/* ============================================================
   COMMISSION
   ============================================================ */
.section-commission {
  background:
    radial-gradient(1000px 560px at 50% 50%, rgba(216, 173, 85, .09), transparent 65%),
    linear-gradient(180deg, var(--black), #0a0908 50%, var(--black));
  text-align: center;
}
.commission-inner { max-width: 900px; margin: 0 auto; }
.commission-inner h2 { margin-bottom: 8px; }
.commission-inner .section-lead { margin-left: auto; margin-right: auto; }

.commission-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 38px 0 44px;
}
.commission-tags li {
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d9cdb8;
  border: 1px solid rgba(216, 173, 85, .35);
  border-radius: 999px;
  padding: 11px 20px;
  background: rgba(216, 173, 85, .05);
}

.commission-scale {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #cbbfa8;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 40px;
}
.commission-scale strong {
  color: var(--gold-bright);
  font-weight: 500;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-line {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 clamp(46px, 5vw, 70px);
  max-width: 880px;
}
/* the connecting gold line */
.process-line::before {
  content: "";
  position: absolute;
  left: clamp(14px, 1.6vw, 22px);
  top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold-deep) 92%, transparent);
  opacity: .55;
}

.process-step {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 58px);
}
.process-step:last-child { padding-bottom: 0; }

.step-num {
  position: absolute;
  left: calc(-1 * clamp(46px, 5vw, 70px));
  top: -2px;
  width: clamp(30px, 3.2vw, 44px);
  height: clamp(30px, 3.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--gold-bright);
  background: var(--lacquer);
  border: 1px solid rgba(216, 173, 85, .5);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(216, 173, 85, .18);
}

.process-step h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 8px; }
.process-step p { color: var(--muted); max-width: 560px; margin: 0; font-size: 15px; line-height: 1.7; }

/* ============================================================
   CRAFTSMANSHIP
   ============================================================ */
.section-craft {
  background: linear-gradient(180deg, var(--black), #08070a 50%, var(--black));
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.craft-note {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold);
  margin-top: 26px;
  font-style: italic;
}

.craft-compare {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 85, .3);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .75);
  aspect-ratio: 4 / 4.4;
  user-select: none;
}
.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
}
.compare-after img,
.compare-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* the "raw print" side: desaturated, matte, rough */
.compare-before {
  clip-path: inset(0 50% 0 0);
}
.compare-before img {
  filter: grayscale(1) brightness(1.06) contrast(.82) sepia(.09);
}

.compare-tag {
  position: absolute;
  bottom: 18px;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.tag-before {
  left: 18px;
  color: #cfcfca;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .25);
}
.tag-after {
  right: 18px;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(216, 173, 85, .5);
}

.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-bright) 20%, var(--gold-bright) 80%, transparent);
  pointer-events: none;
  z-index: 3;
}
.compare-handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(5, 5, 5, .7);
  border: 1px solid var(--gold-bright);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(216, 173, 85, .35);
}
.compare-handle span::before {
  content: "⇔";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 18px;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.why-card {
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .16);
  border-radius: 6px;
  padding: clamp(24px, 2.6vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-lux), border-color .5s var(--ease-lux),
              box-shadow .5s var(--ease-lux);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 209, 132, .6), transparent);
  opacity: 0;
  transition: opacity .5s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 209, 132, .45);
  box-shadow: 0 30px 66px rgba(0, 0, 0, .55);
}
.why-card:hover::before { opacity: 1; }
.why-card h3 { font-size: 24px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0; }
.why-wide { grid-column: 1 / -1; }

/* ============================================================
   ENQUIRY TIERS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.tier-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .18);
  border-radius: 6px;
  padding: clamp(26px, 2.6vw, 38px) clamp(22px, 2.2vw, 30px);
  transition: transform .5s var(--ease-lux), border-color .5s var(--ease-lux),
              box-shadow .5s var(--ease-lux);
}
.tier-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 209, 132, .5);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .6);
}
.tier-card h3 { font-size: 26px; line-height: 1.1; }
.tier-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0;
  background: rgba(255, 255, 255, .03);
}
.tier-status.is-live {
  color: var(--gold-bright);
  border-color: rgba(240, 209, 132, .5);
  background: rgba(216, 173, 85, .08);
}
.tier-price {
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0;
}
.tier-card p:not(.tier-price) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}
.tier-card .btn { text-align: center; }
.tier-featured {
  border-color: rgba(240, 209, 132, .55);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(216, 173, 85, .13), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--lacquer));
  box-shadow: 0 0 55px rgba(216, 173, 85, .1);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.section-contact {
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(216, 173, 85, .07), transparent 55%),
    var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
.contact-emblem {
  width: min(240px, 60%);
  margin-top: 44px;
  border-radius: 12px;
  border: 1px solid rgba(216, 173, 85, .3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 50px rgba(216, 173, 85, .12);
}

.commission-form {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .22);
  border-radius: 8px;
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.commission-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.commission-form input,
.commission-form select,
.commission-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ivory);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 3px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.commission-form input::placeholder,
.commission-form textarea::placeholder { color: #6d675d; }
.commission-form input:focus,
.commission-form select:focus,
.commission-form textarea:focus {
  border-color: rgba(240, 209, 132, .65);
  box-shadow: 0 0 0 3px rgba(216, 173, 85, .12);
  background: rgba(255, 255, 255, .05);
}
.commission-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.commission-form select option { background: var(--panel-2); color: var(--ivory); }
.commission-form textarea { resize: vertical; min-height: 110px; }

.file-drop {
  position: relative;
  border: 1px dashed rgba(216, 173, 85, .4);
  border-radius: 3px;
  padding: 26px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: none;
  transition: border-color .3s ease, background .3s ease;
  cursor: pointer;
}
.file-drop:hover, .file-drop.is-drag {
  border-color: var(--gold-bright);
  background: rgba(216, 173, 85, .06);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-note {
  font-size: 12.5px;
  color: #776f61;
  text-align: center;
  margin: 0;
}

.field-note {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: .02em;
  text-transform: none;
  color: #776f61;
  line-height: 1.6;
}

/* success state */
.form-success {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, .97);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
  z-index: 5;
  animation: successIn .8s var(--ease-lux);
}
.form-success[hidden] { display: none; }
@keyframes successIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: none; }
}
.success-ring {
  width: 74px; height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold-bright);
  border: 1px solid rgba(240, 209, 132, .7);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(216, 173, 85, .3), inset 0 0 22px rgba(216, 173, 85, .12);
}
.form-success h3 { font-size: 30px; }
.form-success p { color: var(--muted); max-width: 420px; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { padding-top: clamp(60px, 8vw, 110px); }
.faq-list { max-width: 860px; }

.faq-item {
  border-bottom: 1px solid rgba(216, 173, 85, .18);
}
.faq-item:first-child { border-top: 1px solid rgba(216, 173, 85, .18); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ivory);
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }

.faq-icon {
  position: relative;
  flex: 0 0 34px;
  height: 34px;
  border: 1px solid rgba(216, 173, 85, .45);
  border-radius: 50%;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-lux);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-body {
  overflow: hidden;
}
.faq-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0;
  padding: 0 4px 28px;
}
/* elegant open animation */
.faq-item[open] .faq-body { animation: faqOpen .55s var(--ease-lux); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(216, 173, 85, .2);
  background: linear-gradient(180deg, var(--black), #070706);
  padding: clamp(50px, 6vw, 80px) var(--pad-x) 30px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img {
  width: 64px; height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(216, 173, 85, .4);
  box-shadow: 0 10px 34px rgba(216, 173, 85, .15);
}
.footer-name {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 2px;
}
.footer-tag { font-size: 12.5px; letter-spacing: .08em; color: var(--muted); margin: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 30px);
}
.footer-links a {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver-dim);
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--gold-bright); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: 11px;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--gold-bright);
  border: 1px solid rgba(216, 173, 85, .35);
  border-radius: 50%;
  transition: all .35s var(--ease-lux);
}
.footer-social a:hover {
  background: var(--gold);
  color: #171106;
  transform: translateY(-3px);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  color: #6f695e;
  font-size: 12.5px;
}
.footer-base p { margin: 0; }
.footer-replay {
  background: none;
  border: none;
  color: #857a63;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.footer-replay:hover { color: var(--gold-bright); border-color: rgba(240, 209, 132, .5); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 40px);
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(10px);
  animation: fadeIn .45s ease;
}
@keyframes fadeIn { from { opacity: 0; } }

.modal-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  width: min(1020px, 100%);
  max-height: 90vh;
  background: linear-gradient(180deg, var(--panel), var(--lacquer));
  border: 1px solid rgba(216, 173, 85, .35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 70px 160px rgba(0, 0, 0, .85), 0 0 80px rgba(216, 173, 85, .12);
  animation: modalIn .55s var(--ease-lux);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* smooth close animation (class added by JS just before hiding) */
.modal.is-closing .modal-card {
  animation: modalOut .32s var(--ease-lux) forwards;
}
.modal.is-closing .modal-backdrop {
  animation: fadeOut .32s ease forwards;
}
@keyframes modalOut {
  to { opacity: 0; transform: translateY(20px) scale(.975); }
}
@keyframes fadeOut { to { opacity: 0; } }

.modal-media {
  background: #060606;
  min-height: 320px;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.modal-collection {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.modal-body h3 { font-size: clamp(30px, 3vw, 42px); line-height: 1.02; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-meta span {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: #d5c9b6;
  border: 1px solid rgba(216, 173, 85, .35);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(216, 173, 85, .06);
}
.modal-desc { color: var(--muted); font-size: 15px; line-height: 1.75; }

.modal-sizes {
  border-top: 1px solid rgba(216, 173, 85, .22);
  padding-top: 18px;
  flex-grow: 1;
}
.modal-sizes-title {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.modal-sizes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.modal-sizes li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.ms-size {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ivory);
}
.ms-name {
  color: #d5c9b6;
  letter-spacing: .04em;
  white-space: nowrap;
}
.ms-status {
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.ms-status.is-live {
  color: var(--gold-bright);
  border-color: rgba(240, 209, 132, .5);
  background: rgba(216, 173, 85, .08);
}

.modal-finishes {
  border-top: 1px solid rgba(216, 173, 85, .22);
  padding-top: 18px;
}
.finish-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.finish-chips li {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d5c9b6;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s ease, color .3s ease;
}
.finish-chips li:hover {
  border-color: rgba(240, 209, 132, .55);
  color: var(--gold-bright);
}
.finish-chips li.is-custom {
  border-style: dashed;
  border-color: rgba(216, 173, 85, .4);
  color: var(--gold);
}
.modal-body .btn { align-self: flex-start; }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 44px; height: 44px;
  font-size: 22px;
  line-height: 1;
  color: var(--ivory);
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(216, 173, 85, .4);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.modal-close:hover { background: var(--gold); color: #171106; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .edition-grid { grid-template-columns: 1fr; }
  .edition-scale { height: 80px; }
  .material-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-emblem { width: min(320px, 70vw); order: -1; }
  .hero { padding-top: 130px; }
  .hero-cta { justify-content: center; }
  .signature-piece,
  .signature-piece:nth-child(even) { grid-template-columns: 1fr; }
  .signature-piece:nth-child(even) .sig-media { order: 0; }
  .craft-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-emblem { display: none; }

  /* mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 90px 40px 40px;
    background: rgba(7, 7, 8, .97);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(216, 173, 85, .25);
    transform: translateX(105%);
    transition: transform .55s var(--ease-lux);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .6);
  }
  .nav-links.is-open { transform: none; }
  .nav-links a { font-size: 16px; padding: 12px 0; }
  .nav-links .nav-cta { margin-top: 12px; }

  /* menu items drift in one by one once the panel opens */
  .nav-links li { opacity: 0; transform: translateX(22px); }
  .nav-links.is-open li {
    animation: navLinkIn .55s var(--ease-lux) forwards;
  }
  .nav-links.is-open li:nth-child(1) { animation-delay: .10s; }
  .nav-links.is-open li:nth-child(2) { animation-delay: .16s; }
  .nav-links.is-open li:nth-child(3) { animation-delay: .22s; }
  .nav-links.is-open li:nth-child(4) { animation-delay: .28s; }
  .nav-links.is-open li:nth-child(5) { animation-delay: .34s; }
  .nav-links.is-open li:nth-child(6) { animation-delay: .40s; }

  /* keep mobile calm: no floating emblem, no drifting background */
  .emblem-float { animation: none; }
  body::before { animation: none; }
}

@keyframes navLinkIn {
  to { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 400px; }
  .tier-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-media { max-height: 46vh; }
  .modal-sizes li { grid-template-columns: 52px 1fr; }
  .modal-sizes .ms-status { grid-column: 1 / -1; justify-self: start; }
  .filter-divider { display: none; }
  .intro-skip { right: 50%; transform: translateX(50%); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
