/* ============================================================
   SIMONE TUSSI v2.0 — Cinematic Dark Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg:         #0c0b09;
  --bg2:        #141210;
  --bg3:        #1c1a16;
  --gold:       #c9a84c;
  --gold-light: #f3d070;
  --cream:      #f0ebe0;
  --gray:       #8a7f6e;
  --gray-light: #b5aa96;
  --white:      #f1f1f1;
  --nav-h:      80px;


  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: none; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, background 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s, transform 0.12s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ─── Noise Overlay ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}

/* ─── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(12, 11, 9, 0.30);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-logo {
  height: 36px;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 1; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: none;
  transition: none;
  filter: brightness(0.65) saturate(0.7);
}
.hero-bg.loaded { transform: scale(1); }
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 11, 9, 0.75) 0%,
    rgba(12, 11, 9, 0.25) 12%,
    rgba(12,11,9,0.15) 50%,
    transparent 100%
  );
}
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 26%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 80px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ─── Sections ───────────────────────────────────────────── */
section { position: relative; }

.section-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-light);
  max-width: 520px;
}

/* ─── Quote ──────────────────────────────────────────────── */
.quote-section {
  padding: 120px 48px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.quote-inner {
  max-width: 800px;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.3;
  margin-bottom: 24px;
  font-style: italic;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 28px;
}
.quote-author {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── About ──────────────────────────────────────────────── */
.about-section {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: -1;
}
.about-year {
  position: absolute;
  bottom: -24px; right: -24px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}
.about-text { display: flex; flex-direction: column; gap: 24px; }

/* ─── Services ───────────────────────────────────────────── */
.services-section {
  padding: 120px 48px;
  background: var(--bg2);
}
.services-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.7) saturate(0.85);
}
.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.35) saturate(0.6);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(12,11,9,0.6) 0%, transparent 60%);
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-title {
  transform: translateY(-4px);
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.service-card-cta::after {
  content: '→';
  font-size: 14px;
}
.service-card:hover .service-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Post-production ─────────────────────────────────────── */
.postprod-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.postprod-images {
  display: block;
}
.postprod-compare {
  --position: 50%;
  position: relative;
  min-height: 500px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg3);
}
.postprod-compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
  transition: filter 0.5s;
}
.postprod-compare:hover .postprod-compare-img {
  filter: brightness(1) saturate(1);
}
.postprod-compare-after,
.postprod-compare-before {
  position: absolute;
  inset: 0;
}
.postprod-compare-after { z-index: 1; }
.postprod-compare-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.postprod-compare-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 12px;
  background: rgba(12,11,9,0.64);
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}
.postprod-compare-label-before { left: 18px; }
.postprod-compare-label-after { right: 18px; }
.postprod-compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 2px;
  background: rgba(240,235,224,0.88);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
}
.postprod-compare-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(240,235,224,0.85);
  border-radius: 50%;
  background: rgba(12,11,9,0.68);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transform: translate(-50%, -50%);
}
.postprod-compare-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: none;
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  padding: 160px 48px;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.cta-section .section-title {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 96px);
}
.cta-section p {
  color: var(--gray-light);
  font-size: 13px;
  max-width: 400px;
  margin: 0 auto 48px;
  letter-spacing: 0.05em;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 235, 224, 0.505);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 80px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 36px;
}
.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  font-family: var(--font-display);
}
.footer-col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 12px;
  color: var(--gray-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gray-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.footer-social a {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ─── Gallery Page ────────────────────────────────────────── */
.gallery-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 60px;
  overflow: hidden;
}
.gallery-hero .hero-bg {
  filter: brightness(0.4) saturate(0.6);
}
.gallery-page-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.9;
}
.gallery-page-title em { font-style: italic; color: var(--gold-light); }
.gallery-breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.gallery-section {
  padding: 80px 48px 120px;
  max-width: 1600px;
  margin: 0 auto;
}
.masonry-grid {
  columns: 3;
  column-gap: 4px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.5s;
  filter: brightness(0.88) saturate(0.85);
}
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,11,9,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg {
  width: 36px; height: 36px;
  stroke: var(--gold);
  fill: none;
}

/* Private galleries */
.private-lock-section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 72px) 48px 96px;
  display: grid;
  align-items: center;
}
.private-lock-panel {
  max-width: 620px;
}
.private-lock-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 32px;
}
.private-lock-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 16px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.private-lock-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.private-lock-error {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-empty {
  border: 1px solid rgba(201,168,76,0.12);
  padding: 72px 24px;
  text-align: center;
}
.gallery-empty .section-body {
  margin: 20px auto 0;
}

/* Merch */
.merch-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 48px 120px;
}
.merch-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px) auto;
  gap: 32px;
  align-items: end;
  padding: 36px 0 42px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.merch-intro .gallery-page-title {
  font-size: clamp(64px, 9vw, 132px);
}
.merch-cart-toggle {
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.merch-cart-toggle span,
.merch-cart-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  letter-spacing: 0;
}
.merch-toolbar {
  display: flex;
  gap: 10px;
  padding: 26px 0;
}
.merch-filter {
  border: 1px solid rgba(201,168,76,0.22);
  background: transparent;
  color: var(--gray-light);
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.merch-filter.active,
.merch-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.merch-card {
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}
.merch-media {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border: 0;
  background: var(--bg3);
  overflow: hidden;
}
.merch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.merch-media:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
.merch-card-body {
  padding: 28px;
}
.merch-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.merch-card-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 14px;
}
.merch-card h2,
.merch-cart h2,
.merch-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}
.merch-price {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.merch-description {
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.75;
}
.merch-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.merch-options label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.merch-options select {
  width: 100%;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
}
.merch-details {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
  padding-left: 16px;
  color: var(--gray);
  font-size: 11px;
}
.merch-card .btn {
  width: 100%;
  text-align: center;
}
.merch-cart {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border: 1px solid rgba(201,168,76,0.14);
  background: rgba(20,18,16,0.92);
  padding: 26px;
}
.merch-cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.merch-cart-empty {
  border: 1px solid rgba(201,168,76,0.1);
  padding: 22px;
  color: var(--gray-light);
  font-size: 12px;
  text-align: center;
}
.merch-cart-items {
  display: grid;
  gap: 16px;
}
.merch-cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.merch-cart-item img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  background: var(--bg3);
}
.merch-cart-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
}
.merch-cart-meta {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.merch-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.merch-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.merch-qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--cream);
}
.merch-qty span {
  min-width: 28px;
  text-align: center;
  color: var(--gold-light);
  font-size: 12px;
}
.merch-remove {
  border: 0;
  background: transparent;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.merch-remove:hover { color: var(--gold); }
.merch-totals {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}
.merch-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gray-light);
  font-size: 12px;
}
.merch-totals dt,
.merch-totals dd {
  margin: 0;
}
.merch-totals .merch-total {
  padding-top: 14px;
  border-top: 1px solid rgba(201,168,76,0.16);
  color: var(--cream);
  font-weight: 500;
}
.merch-checkout {
  width: 100%;
  text-align: center;
}
.merch-checkout:disabled {
  opacity: 0.45;
  pointer-events: none;
}
.merch-cart-note {
  margin-top: 18px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.7;
}
.merch-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.merch-info article {
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.09);
  padding: 30px;
}
.merch-info p:last-child {
  margin-top: 14px;
  color: var(--gray-light);
  font-size: 12px;
  line-height: 1.75;
}
.merch-zoom {
  position: fixed;
  inset: 0;
  z-index: 9991;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(12,11,9,0.96);
}
.merch-zoom figure {
  width: min(86vw, 860px);
  margin: 0;
}
.merch-zoom img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: var(--bg2);
}
.merch-zoom figcaption {
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}
.merch-zoom-close {
  position: absolute;
  top: 24px;
  right: 32px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--cream);
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Lightbox ───────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(12,11,9,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transition: opacity 0.3s;
}
#lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: var(--gray-light);
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
#lightbox-close:hover { color: var(--gold); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: border-color 0.2s, color 0.2s;
}
#lightbox-prev:hover, #lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold);
}
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
#lightbox-counter {
  position: absolute;
  bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray);
}

/* ─── Contact Page ───────────────────────────────────────── */
.contact-section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-info { padding-top: 20px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.contact-detail-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  transition: color 0.2s;
}
.contact-detail-value:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-input, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 16px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-textarea { min-height: 150px; }
.form-note {
  font-size: 11px;
  color: var(--gray);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── Custom Select ──────────────────────────────────────── */
.custom-select { position: relative; width: 100%; }

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 16px 20px;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.custom-select-trigger.has-value { color: var(--cream); }
.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.custom-select-arrow {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.custom-select.open .custom-select-arrow { transform: rotate(180deg); }

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #1a1a18;
  border: 1px solid rgba(201,168,76,0.25);
  list-style: none;
  margin: 0; padding: 6px 0;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.custom-select.open .custom-select-dropdown { display: block; }

.custom-select-dropdown li {
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}
.custom-select-dropdown li:hover,
.custom-select-dropdown li.selected {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.custom-select-dropdown li.selected::after {
  content: ' ✓';
  font-size: 10px;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero, .quote-section, .about-section,
  .services-section, .postprod-section,
  .cta-section, footer { padding-left: 28px; padding-right: 28px; }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .postprod-section { grid-template-columns: 1fr; }
  .postprod-compare { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 60px; }
  .private-lock-section { padding-left: 28px; padding-right: 28px; }
  .merch-page { padding-left: 28px; padding-right: 28px; }
  .merch-intro { grid-template-columns: 1fr; align-items: start; }
  .merch-layout { grid-template-columns: 1fr; }
  .merch-cart { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 260px; height: 100vh; background: var(--bg2); padding: 100px 40px 40px; gap: 28px; border-left: 1px solid rgba(201,168,76,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-toggle { display: flex; }
  .masonry-grid { columns: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-section { padding: 48px 20px 80px; }
  .hero, .gallery-hero { padding-left: 24px; padding-right: 24px; }
  .private-lock-form { flex-direction: column; }
  .private-lock-form .btn { width: 100%; text-align: center; }
  .merch-page { padding: calc(var(--nav-h) + 28px) 20px 80px; }
  .merch-toolbar { overflow-x: auto; padding-bottom: 18px; }
  .merch-grid, .merch-info { grid-template-columns: 1fr; }
  .merch-card-body, .merch-cart, .merch-info article { padding: 22px; }
  .merch-options { grid-template-columns: 1fr; }
  .merch-zoom { padding: 22px; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .postprod-compare { min-height: 340px; aspect-ratio: 4 / 5; }
}

/* ─── Contenitore Nav Destra ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ─── Stile del Pulsante Cambio Tema ─── */
.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--gray-light);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s, transform 0.25s;
  z-index: 1001;
}
.theme-toggle-btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}
.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
}

/* In dark mode → mostra il sole (click = vai al chiaro)
   In light mode → mostra la luna (click = vai allo scuro) */
.theme-toggle-btn .icon-sun  { display: block; }   /* default: dark mode, mostra sole */
.theme-toggle-btn .icon-moon { display: none; }

body.light-mode .theme-toggle-btn .icon-sun  { display: none; }
body.light-mode .theme-toggle-btn .icon-moon { display: block; }


/* ─── Transizione fluida cambio tema ─── */
html, body {
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* ─── Light Mode — attivato sia da html.light-mode che body.light-mode ─── */
/* html.light-mode serve all'anti-flash nell'<head>; body.light-mode al toggle JS */
html.light-mode body,
body.light-mode {
  --bg:         #dfdcd3;
  --bg2:        #d1ccc0;
  --bg3:        #bbb4a3;
  --cream:      #000000;
  --gray-light: #171411;
  --gray:       #705454;
  background-color: var(--bg);
  color: var(--cream);
}

body.light-mode .hero-eyebrow,
body.light-mode .quote-author,
body.light-mode .section-label,
body.light-mode .footer-col-title,
body.light-mode .contact-detail-label,
body.light-mode .form-label,
body.light-mode .merch-kicker,
body.light-mode .merch-options label,
body.light-mode .btn-outline {
  text-shadow: 1px 1px 1px rgba(12, 11, 9, 0.50);
}

body.light-mode .nav-links a:hover, 
body.light-mode .nav-links a.active,
body.light-mode .service-card-cta,
body.light-mode .footer-links a:hover,
body.light-mode .footer-social a:hover {
  text-shadow: 0.5px 0.5px 1px rgba(12, 11, 9, 0.2);
}

body.light-mode #cursor {
  box-shadow: 0 0 2px rgba(12, 11, 9, 0.4);
}
body.light-mode #cursor-ring {
  border-color: rgba(245, 180, 1, 0.4); /* Rendiamo l'anello leggermente più denso sul chiaro */
  box-shadow: inset 0 0 2px rgba(12, 11, 9, 0.15), 0 0 2px rgba(12, 11, 9, 0.15);
}

body.light-mode .hero-title em,
body.light-mode .section-title em,
body.light-mode .gallery-page-title em, 
body.light-mode p,
body.light-mode .a:active {
  text-shadow: 0.5px 0.5px 0.5px rgba(12, 11, 9, 0.7);
}
s
/* QUI SOPRA */

/* Nav non-scrolled in light mode */
html.light-mode body nav:not(.scrolled),
body.light-mode nav:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(245,242,235,0.7) 0%, transparent 100%);
}

/* ─── Adattamenti specifici Light Mode ─── */
html.light-mode body .nav-logo,
html.light-mode body .footer-logo,
body.light-mode .nav-logo,
body.light-mode .footer-logo {
  filter: invert(1);
}

html.light-mode body nav.scrolled,
body.light-mode nav.scrolled {
  background: rgba(245, 242, 235, 0.40);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

html.light-mode body .hero-vignette,
body.light-mode .hero-vignette {
  background: linear-gradient(
    to top,
    rgba(245, 242, 235, 0.95) 0%,
    rgba(245, 242, 235, 0.4) 40%,
    rgba(245, 242, 235, 0.15) 70%,
    transparent 100%
  );
}

html.light-mode body .service-card-overlay,
body.light-mode .service-card-overlay {
  background: linear-gradient(to top, rgba(245, 242, 235, 0.92) 0%, transparent 60%);
}
html.light-mode body .service-card-title,
body.light-mode .service-card-title {
  color: var(--cream);
}
html.light-mode body .service-card img,
body.light-mode .service-card img {
  filter: brightness(0.9) saturate(0.9);
}s
html.light-mode body .service-card:hover img,
body.light-mode .service-card:hover img {
  filter: brightness(1) saturate(0.95);
}

html.light-mode body .nav-toggle span,
body.light-mode .nav-toggle span {
  background: var(--cream);
}

html.light-mode body .postprod-compare-label,
body.light-mode .postprod-compare-label {
  background: rgba(245, 242, 235, 0.8);
  color: var(--cream);
}
html.light-mode body .postprod-compare-line::before,
body.light-mode .postprod-compare-line::before {
  background: rgba(245, 242, 235, 0.85);
  border-color: var(--cream);
}

/* Menu mobile ad albero (se aperto su smartphone) */
@media (max-width: 768px) {
  body.light-mode .nav-links {
    background: var(--bg2);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
  }
}

/* ══════════════════════════════════════════════
       CHI SONO PAGE — styles
    ══════════════════════════════════════════════ */

    /* ─── Page Header ───────────────────────────── */
    .chisono-hero {
      height: 56vh;
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 0 48px 72px;
      overflow: hidden;
    }
    .chisono-hero .hero-bg {
      filter: brightness(0.38) saturate(0.65);
    }
    .chisono-hero-content {
      position: relative;
      z-index: 2;
    }
    .chisono-hero-breadcrumb {
      font-size: 10px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .chisono-hero-title {
      font-family: var(--font-display);
      font-size: clamp(60px, 9vw, 128px);
      font-weight: 300;
      color: var(--cream);
      line-height: 0.88;
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp 1s 0.3s forwards;
    }
    .chisono-hero-title em { font-style: italic; color: var(--gold-light); }

    /* ─── Intro ──────────────────────────────────── */
    .chisono-intro {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 48px 72px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 60px;
    }
    .chisono-intro-left { flex: 0 0 auto; }
    .chisono-intro-right {
      max-width: 460px;
      padding-bottom: 8px;
    }

    /* ─── Carousel Section ───────────────────────── */
    .carousel-section {
      padding: 0 0 140px;
      position: relative;
    }

    /* Decorative horizontal rule */
    .carousel-section::before {
      content: '';
      display: block;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
      margin: 0 48px 80px;
    }

    /* ─── Stage ──────────────────────────────────── */
    .carousel-stage-wrap {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .carousel-stage {
      position: relative;
      width: 100%;
      height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── Cards ──────────────────────────────────── */
    .carousel-card {
      position: absolute;
      width: 600px;
      background: var(--bg2);
      border: 1px solid rgba(201,168,76,0.1);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: block;
      will-change: transform, opacity, filter;
      transition:
        transform  0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity    0.7s ease,
        filter     0.7s ease,
        box-shadow 0.7s ease,
        border-color 0.4s ease;
    }

    /* CENTER */
    .carousel-card[data-pos="center"] {
      transform: translateX(0) scale(1);
      z-index: 10;
      opacity: 1;
      filter: brightness(1) saturate(1);
      box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(201,168,76,0.28);
      border-color: rgba(201,168,76,0.3);
      pointer-events: auto;
    }

    /* LEFT */
    .carousel-card[data-pos="left"] {
      transform: translateX(-468px) scale(0.74);
      z-index: 5;
      opacity: 0.6;
      filter: brightness(0.65) saturate(0.75);
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
      pointer-events: auto;
    }

    /* RIGHT */
    .carousel-card[data-pos="right"] {
      transform: translateX(468px) scale(0.74);
      z-index: 5;
      opacity: 0.6;
      filter: brightness(0.65) saturate(0.75);
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
      pointer-events: auto;
    }

    /* HIDDEN OFF-SCREEN */
    .carousel-card[data-pos="hidden-left"] {
      transform: translateX(-860px) scale(0.52);
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }
    .carousel-card[data-pos="hidden-right"] {
      transform: translateX(860px) scale(0.52);
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }

    /* Hover state: side cards brighten slightly */
    .carousel-card[data-pos="left"]:hover,
    .carousel-card[data-pos="right"]:hover {
      filter: brightness(0.80) saturate(0.85);
      opacity: 0.78;
    }

    /* ─── Card Image ─────────────────────────────── */
    .carousel-card-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
      background: var(--bg3);
    }
    .carousel-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .carousel-card[data-pos="center"]:hover .carousel-card-image img {
      transform: scale(1.04);
    }

    /* Gold shimmer line at top of image */
    .carousel-card[data-pos="center"] .carousel-card-image::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* ─── Card Body ──────────────────────────────── */
    .carousel-card-body {
      padding: 22px 26px 26px;
      border-top: 1px solid rgba(201,168,76,0.1);
      position: relative;
      overflow: hidden;
    }
    .carousel-card-body::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.03), transparent 60%);
      pointer-events: none;
    }

    /* Bottom gold line on active card */
    .carousel-card[data-pos="center"] .carousel-card-body::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 40%;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
    }

    .carousel-card-num {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.35em;
      color: var(--gold);
      display: block;
      margin-bottom: 4px;
    }
    .carousel-card-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 6px;
      transition: color 0.3s;
    }
    .carousel-card[data-pos="center"]:hover .carousel-card-title {
      color: var(--gold-light);
    }
    .carousel-card-caption {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--gray);
      line-height: 1.6;
    }
    .carousel-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      font-size: 9px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.35s, transform 0.35s;
    }
    .carousel-card[data-pos="center"]:hover .carousel-card-cta {
      opacity: 1;
      transform: translateX(0);
    }
    .carousel-card-cta svg {
      width: 13px; height: 13px;
      flex-shrink: 0;
    }

    /* ─── Navigation Arrows ──────────────────────── */
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      background: rgba(12,11,9,0.5);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(201,168,76,0.25);
      color: var(--gold);
      width: 50px; height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .carousel-nav:hover {
      background: rgba(201,168,76,0.12);
      border-color: var(--gold);
    }
    .carousel-nav:hover { transform: translateY(-50%) scale(1.06); }
    .carousel-nav svg { width: 20px; height: 20px; pointer-events: none; }
    .carousel-nav-prev { left: 32px; }
    .carousel-nav-next { right: 32px; }

    /* ─── Dots ────────────────────────────────────── */
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 44px;
    }
    .carousel-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gray);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, width 0.35s, border-radius 0.35s;
    }
    .carousel-dot.active {
      background: var(--gold);
      width: 28px;
      border-radius: 3px;
    }

    /* ─── CTA Strip ──────────────────────────────── */
    .chisono-cta {
      padding: 140px 48px;
      text-align: center;
      background: var(--bg2);
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .chisono-cta .section-title { margin-bottom: 20px; }
    .chisono-cta p {
      color: var(--gray-light);
      font-size: 13px;
      max-width: 380px;
      margin: 0 auto 44px;
      letter-spacing: 0.04em;
    }

    /* ─── Light Mode overrides ───────────────────── */
    body.light-mode .carousel-card {
      background: var(--bg2);
      border-color: rgba(201,168,76,0.2);
    }
    body.light-mode .carousel-card[data-pos="center"] {
      box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,168,76,0.3);
    }

    /* ─── Responsive ─────────────────────────────── */
    @media (max-width: 1100px) {
      .carousel-card { width: 500px; }
      .carousel-card[data-pos="left"]  { transform: translateX(-390px) scale(0.74); }
      .carousel-card[data-pos="right"] { transform: translateX(390px)  scale(0.74); }
    }
    @media (max-width: 900px) {
      .carousel-stage { height: 460px; }
      .carousel-card { width: 400px; }
      .carousel-card[data-pos="left"]  { transform: translateX(-308px) scale(0.72); }
      .carousel-card[data-pos="right"] { transform: translateX(308px)  scale(0.72); }
      .carousel-nav-prev { left: 12px; }
      .carousel-nav-next { right: 12px; }
      .chisono-intro { flex-direction: column; gap: 32px; padding: 64px 28px 56px; }
      .chisono-intro-right { max-width: 100%; }
    }
    @media (max-width: 680px) {
      .carousel-stage { height: 380px; }
      .carousel-card { width: 290px; }
      .carousel-card[data-pos="left"]  { transform: translateX(-214px) scale(0.68); opacity: 0.45; }
      .carousel-card[data-pos="right"] { transform: translateX(214px)  scale(0.68); opacity: 0.45; }
      .carousel-card-title { font-size: 19px; }
      .carousel-nav { width: 40px; height: 40px; }
      .chisono-hero { padding: 0 24px 60px; }
    }
    @media (max-width: 480px) {
      .carousel-stage { height: 340px; }
      .carousel-card { width: 250px; }
      .carousel-card[data-pos="left"]  { transform: translateX(-185px) scale(0.65); opacity: 0.35; }
      .carousel-card[data-pos="right"] { transform: translateX(185px)  scale(0.65); opacity: 0.35; }
    }