/* ═══════════════════════════════════════════════════════════════
   GAFFANEH GALLERY — Design System
   Style: Exaggerated Minimalism + Dark Mode OLED
   Fonts: Bodoni Moda (display) + Jost (body)
   Palette: Near-Black · Gold Accent · Warm White
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #080808;
  --surface:      #111111;
  --surface-2:    #1a1a1a;
  --border:       #2a2a2a;
  --border-light: #333333;

  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dim:     rgba(201, 168, 76, 0.15);
  --gold-glow:    rgba(201, 168, 76, 0.08);

  --white:        #FFFFFF;
  --cream:        #F5F0EB;
  --text:         #E8E4DF;
  --text-muted:   #888880;
  --text-faint:   #555550;

  --max-w:        1200px;
  --nav-h:        72px;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --transition-base: 200ms;
  --transition-slow: 400ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }

/* Real images filling their containers */
.manifeste-art,
.art-placeholder,
.masonry-art,
.artiste-portrait__img,
.fresques-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.section-title em:not(.gradient-text) {
  font-style: italic;
  color: var(--gold-light);
}
.section-title em.gradient-text {
  font-style: italic;
}
.body-text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}
.section-header { margin-bottom: clamp(48px, 7vw, 80px); }
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: gap var(--transition-base) var(--ease-out);
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { transition: transform var(--transition-base) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }
.btn:active { transform: translateY(0); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow);
}
.nav-wrapper--scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo__img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.4));
  transition: filter var(--transition-base);
}
.nav-logo:hover .nav-logo__img {
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.7));
}
.nav-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-base);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base) var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--cta {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 18px;
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all var(--transition-base);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 49;
  padding: 40px clamp(20px, 5vw, 60px);
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--transition-slow) var(--ease-out);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-base);
}
.mobile-link:hover { color: var(--gold); }
.mobile-link--cta { color: var(--gold); border-color: transparent; margin-top: 20px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) clamp(20px, 5vw, 60px) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: grayscale(20%);
  z-index: 0;
}
.hero-canvas {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 12s ease-in-out infinite;
}
.hero-canvas--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C9A84C 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-canvas--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #8B5E3C 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-delay: -4s;
}
.hero-canvas--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #2E4A3E 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 36px;
}
.hero-title__line {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-title__line:nth-child(1) { animation-delay: 0.4s; }
.hero-title__line:nth-child(2) { animation-delay: 0.6s; }
.hero-title__line--italic {
  font-style: italic;
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2s ease-in-out infinite;
}
.hero-scroll__line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.hero-scroll__text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MANIFESTE ───────────────────────────────────────────── */
.manifeste {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.manifeste .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifeste-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.manifeste-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifeste-title em:not(.gradient-text) {
  font-style: italic;
  color: var(--gold-light);
}
.manifeste-title em.gradient-text { font-style: italic; }
.manifeste-text {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 460px;
}
.manifeste-visual {
  position: relative;
  height: 480px;
}
.manifeste-frame {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.manifeste-frame--1 {
  width: 72%;
  height: 85%;
  top: 0; right: 0;
}
.manifeste-frame--2 {
  width: 48%;
  height: 55%;
  bottom: 0; left: 0;
  border: 1px solid var(--border-light);
}
.manifeste-art {
  width: 100%;
  height: 100%;
}
/* manifeste-art backgrounds removed — replaced by real <img> tags */

/* ── COLLECTIONS ─────────────────────────────────────────── */
.collections {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-slow) var(--ease-out);
}
.collection-card:hover { transform: translateY(-6px); }
.collection-card__image {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.art-placeholder {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow) var(--ease-out);
}
.collection-card:hover .art-placeholder { transform: scale(1.05); }
/* art-placeholder backgrounds removed — replaced by real <img> tags */
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.collection-card:hover .collection-card__overlay { opacity: 1; }
.collection-card__btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 28px;
  border-radius: 2px;
  transition: all var(--transition-base);
}
.collection-card__btn:hover {
  background: var(--gold);
  color: #000;
}
.collection-card__body {
  padding: 28px;
  border: 1px solid var(--border);
  border-top: none;
  position: relative;
}
.collection-card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
}
.collection-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.collection-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 260px;
}
.collection-card__count {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-card--featured {
  transform: translateY(-24px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.collection-card--featured:hover { transform: translateY(-30px); }

/* ── GALERIE MASONRY ──────────────────────────────────────── */
.galerie {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.galerie-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--transition-base);
  cursor: pointer;
}
.filter-btn:hover { color: var(--cream); border-color: var(--border-light); }
.filter-btn--active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.masonry-item--tall { grid-row: span 2; }
.masonry-item--wide { grid-column: span 2; }
.masonry-art {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow) var(--ease-out);
}
.masonry-item:hover .masonry-art { transform: scale(1.06); }
/* masonry-art backgrounds removed — replaced by real <img> tags */
.masonry-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition-base) var(--ease-out);
}
.masonry-item:hover .masonry-info { opacity: 1; transform: translateY(0); }
.masonry-cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.masonry-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.masonry-dim {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.galerie-cta {
  text-align: center;
  margin-top: 60px;
}

/* ── FRESQUES SECTION ────────────────────────────────────── */
.fresques-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.fresques-banner {
  background: var(--gold);
  padding: 14px 0;
  margin-bottom: 80px;
  overflow: hidden;
  white-space: nowrap;
}
.fresques-scroll-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fresques-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fresques-content .section-tag { display: block; }
.fresques-content .section-title { margin-bottom: 24px; }
.fresques-content .body-text { margin-bottom: 36px; }
.fresques-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.feature-item svg { color: var(--gold); flex-shrink: 0; }
.fresques-visual {
  position: relative;
}
.fresques-frame {
  position: relative;
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
/* fresques-art--main background removed — replaced by real <img> tag */
.fresques-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  padding: 20px 24px;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}
.fresques-badge__text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

/* ── ARTISTE ──────────────────────────────────────────────── */
.artiste {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.artiste-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.artiste-portrait {
  position: relative;
  width: 380px;
  flex-shrink: 0;
}
.artiste-portrait__frame {
  width: 340px;
  height: 440px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.artiste-portrait__img { object-position: top center; }
.artiste-portrait__accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
}
.artiste-content .section-tag { display: block; }
.artiste-content .section-title { margin-bottom: 20px; }
.artiste-content .body-text { margin-bottom: 20px; }
.artiste-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding: 12px 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  background: var(--gold-glow);
  border-radius: 0 2px 2px 0;
}
.artiste-awards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.award {
  display: flex;
  align-items: center;
  gap: 24px;
}
.award-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 44px;
}
.award-title {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content .section-tag { display: block; }
.contact-content .section-title { margin-bottom: 24px; }
.contact-content .body-text { margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-base);
  cursor: pointer;
}
.contact-link:hover { color: var(--gold); }
.contact-link svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 2px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color var(--transition-base);
  width: 100%;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888880' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: var(--surface); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition-base);
}
.footer-link:hover { color: var(--gold); }
.footer-link--sm { font-size: 12px; }
.footer-social {
  display: flex;
  gap: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  transition: all var(--transition-base);
  cursor: pointer;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: 24px;
}

/* ── PRIVACY BLUR OVERLAYS ───────────────────────────────── */
.blur-people {
  position: absolute;
  backdrop-filter: blur(16px) saturate(0.6);
  -webkit-backdrop-filter: blur(16px) saturate(0.6);
  background: rgba(120, 100, 80, 0.08);
  z-index: 2;
  pointer-events: none;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.masonry-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.masonry-item.fade-up:nth-child(3) { transition-delay: 0.15s; }
.masonry-item.fade-up:nth-child(4) { transition-delay: 0.2s; }
.masonry-item.fade-up:nth-child(5) { transition-delay: 0.25s; }
.masonry-item.fade-up:nth-child(6) { transition-delay: 0.3s; }
.collection-card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.collection-card.fade-up:nth-child(3) { transition-delay: 0.24s; }
.testimonial.fade-up:nth-child(2) { transition-delay: 0.12s; }
.testimonial.fade-up:nth-child(3) { transition-delay: 0.24s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .manifeste .container,
  .artiste-inner,
  .fresques-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .manifeste-visual { height: 360px; }
  .artiste-portrait { width: 100%; }
  .artiste-portrait__frame { width: 280px; height: 360px; }
  .fresques-frame { height: 380px; }
  .collections-grid { grid-template-columns: 1fr; gap: 0; }
  .collection-card--featured { transform: none; }
  .collection-card--featured:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .masonry-item--wide { grid-column: span 2; }
  .masonry-item--tall { grid-row: span 2; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .section-header--row { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .masonry-item--wide,
  .masonry-item--tall { grid-column: span 1; grid-row: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px; }
  .manifeste-visual { height: 260px; }
  .manifeste-frame--2 { display: none; }
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
}
.lightbox:not([hidden]) { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
  transition: opacity 200ms;
}
.lightbox-img.is-loading { opacity: 0.3; }
.lightbox-caption {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 101;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* cursor zoom on lightbox-able images */
.masonry-item img,
.collection-card__image img,
.manifeste-frame img {
  cursor: zoom-in;
}

/* ── AWARD BADGE ──────────────────────────────────────────── */
.award--badge {
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 10px 14px;
  margin-top: 4px;
}
.award-badge-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.award--badge .award-title strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   FUTURISTIC LIQUID GLASS UPGRADE
   Style: Liquid Glass × Dark OLED Luxury × Neon Gold
   ═══════════════════════════════════════════════════════════════ */

/* ── FUTURISTIC TOKENS ──────────────────────────────────────── */
:root {
  --glass:          rgba(255, 255, 255, 0.025);
  --glass-stroke:   rgba(201, 168, 76, 0.13);
  --glass-stroke-2: rgba(201, 168, 76, 0.30);

  --glow-xs: 0 0 10px rgba(201, 168, 76, 0.35);
  --glow-sm: 0 0 20px rgba(201, 168, 76, 0.30), 0 0 40px rgba(201, 168, 76, 0.12);
  --glow-md: 0 0 30px rgba(201, 168, 76, 0.40), 0 0 60px rgba(201, 168, 76, 0.18);
  --glow-lg: 0 0 50px rgba(201, 168, 76, 0.45), 0 0 100px rgba(201, 168, 76, 0.20);

  --aurora-a: rgba(201, 168, 76, 0.50);
  --aurora-b: rgba(139, 94, 60, 0.30);
  --aurora-c: rgba(46, 74, 62, 0.25);
}

/* ── CUSTOM SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar              { width: 3px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: linear-gradient(to bottom, var(--gold-light), var(--gold)); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold-light); }

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    top: 0; left: 0;
    will-change: transform;
  }
  .cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: var(--glow-xs);
    transition: width 0.15s, height 0.15s, opacity 0.2s;
  }
  .cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(201, 168, 76, 0.55);
    border-radius: 50%;
    transition: width 0.22s var(--ease-out), height 0.22s var(--ease-out),
                border-color 0.2s, background 0.2s, opacity 0.2s;
  }
  .cursor-ring.is-hover {
    width: 50px;
    height: 50px;
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
  }
  .cursor-dot.is-hover { width: 3px; height: 3px; }
}

/* ── AURORA HERO LAYERS ─────────────────────────────────────── */
.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  animation: aurora-drift 18s ease-in-out infinite;
  pointer-events: none;
}
.aurora-layer--a {
  width: 65vw; height: 65vh;
  background: radial-gradient(ellipse, var(--aurora-a) 0%, transparent 65%);
  top: -25vh; right: -8vw;
  animation-duration: 20s;
}
.aurora-layer--b {
  width: 50vw; height: 60vh;
  background: radial-gradient(ellipse, var(--aurora-b) 0%, transparent 65%);
  bottom: -15vh; left: -5vw;
  animation-duration: 24s;
  animation-delay: -9s;
}
.aurora-layer--c {
  width: 40vw; height: 45vh;
  background: radial-gradient(ellipse, var(--aurora-c) 0%, transparent 65%);
  top: 30%; left: 32%;
  animation-duration: 15s;
  animation-delay: -5s;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(28px, -18px) scale(1.05); }
  50%       { transform: translate(-18px, 28px) scale(0.97); }
  75%       { transform: translate(22px, 18px) scale(1.03); }
}

/* Hero scanline texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  animation: particle-float var(--dur, 9s) ease-in-out infinite;
}
@keyframes particle-float {
  0%, 100% { transform: translate(0, 0); opacity: var(--op-min, 0.25); }
  50%       { transform: translate(var(--dx, 20px), var(--dy, -28px)); opacity: var(--op-max, 0.55); }
}

/* ── GRADIENT TEXT UTILITY ──────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #B08030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV UPGRADE ────────────────────────────────────────────── */
.nav-wrapper--scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid var(--glass-stroke);
  box-shadow: 0 1px 0 rgba(201,168,76,0.05), 0 4px 30px rgba(0,0,0,0.4);
}
.nav-link--cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), transparent);
  border-color: rgba(201,168,76,0.35);
}
.nav-link--cta:hover {
  background: var(--gold);
  box-shadow: var(--glow-xs);
}

/* ── BUTTON UPGRADE ─────────────────────────────────────────── */
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #A07830 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.22), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.45), var(--glow-sm);
  filter: brightness(1.08);
}
.btn--ghost {
  border-color: rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.03);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,168,76,0.18);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── HERO UPGRADES ──────────────────────────────────────────── */
.hero-title__line--italic {
  -webkit-text-stroke: 1px rgba(201,168,76,0.7);
  text-shadow: 0 0 40px rgba(201,168,76,0.15);
}
.hero-scroll__line {
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.stat-value {
  text-shadow: 0 0 24px rgba(201,168,76,0.5);
}
.stat-divider {
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.45), transparent);
}

/* ── SECTION TAG & TITLE UPGRADES ───────────────────────────── */
.section-tag {
  text-shadow: 0 0 14px rgba(201,168,76,0.4);
  letter-spacing: 0.28em;
}

/* ── COLLECTION CARDS — GLASS ───────────────────────────────── */
.collection-card {
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--glass-stroke);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition-slow) var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s;
}
.collection-card:hover {
  border-color: var(--glass-stroke-2);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65), 0 0 40px rgba(201,168,76,0.09);
}
.collection-card__body {
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-stroke);
  border-top: none;
}
.collection-card--featured {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), var(--glow-xs);
}

/* ── MASONRY UPGRADE ────────────────────────────────────────── */
.masonry-item {
  border: 1px solid transparent;
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s;
}
.masonry-item:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 30px rgba(201,168,76,0.09);
}
.masonry-info {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  backdrop-filter: blur(2px);
}

/* ── CONTACT FORM — GLASS ───────────────────────────────────── */
.contact-form {
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-stroke);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 0 20px rgba(201,168,76,0.12);
  background: rgba(14,14,14,0.9);
}
.form-input {
  background: rgba(8,8,8,0.7);
  border-color: rgba(42,42,42,0.8);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

/* ── ARTISTE PORTRAIT — HOLOGRAPHIC ────────────────────────── */
.artiste-portrait__frame {
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.08);
}
.artiste-portrait__accent {
  border-color: var(--gold);
  animation: accent-glow 3.5s ease-in-out infinite;
}
@keyframes accent-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(201,168,76,0.3); opacity: 0.7; }
  50%       { box-shadow: 0 0 28px rgba(201,168,76,0.7), 0 0 54px rgba(201,168,76,0.2); opacity: 1; }
}

/* ── ARTISTE QUOTE UPGRADE ──────────────────────────────────── */
.artiste-quote {
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,168,76,0.07), transparent);
  box-shadow: inset 3px 0 0 rgba(201,168,76,0.2), 0 0 20px rgba(201,168,76,0.04);
}

/* ── AWARD BADGE UPGRADE ────────────────────────────────────── */
.award--badge {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 0 24px rgba(201,168,76,0.06);
}

/* ── MANIFESTE FRAME UPGRADE ────────────────────────────────── */
.manifeste-frame {
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.05);
  transition: box-shadow 0.4s;
}
.manifeste-frame:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 50px rgba(201,168,76,0.12);
}

/* ── FRESQUES SECTION UPGRADE ───────────────────────────────── */
.fresques-banner {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  box-shadow: 0 0 40px rgba(201,168,76,0.35);
}
.fresques-frame {
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 40px rgba(201,168,76,0.06);
}
.fresques-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 40px rgba(201,168,76,0.45), var(--glow-sm);
}

/* ── FOOTER UPGRADE ─────────────────────────────────────────── */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.35;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow-xs);
}

/* ── LINK ARROW UPGRADE ─────────────────────────────────────── */
.link-arrow {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,168,76,0.3);
}

/* ── FILTER BUTTONS UPGRADE ─────────────────────────────────── */
.filter-btn--active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--glow-xs);
}
.filter-btn:hover:not(.filter-btn--active) {
  border-color: var(--glass-stroke-2);
  background: var(--glass);
}

/* ── LIGHTBOX UPGRADE ───────────────────────────────────────── */
.lightbox {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-stroke);
  backdrop-filter: blur(8px);
  transition: all 0.2s var(--ease-out);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: var(--glow-sm);
}

/* ── PREFERS REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-canvas,
  .aurora-layer,
  .particle           { animation: none; opacity: 0.3; }
  .hero-eyebrow,
  .hero-title__line,
  .hero-subtitle,
  .hero-actions,
  .hero-stats         { animation: none; opacity: 1; transform: none; }
  .hero-scroll        { animation: none; opacity: 0.7; }
  .fresques-scroll-text { animation: none; }
  .fade-up            { transition: none; }
  .artiste-portrait__accent { animation: none; }
  .art-placeholder,
  .masonry-art,
  .artiste-portrait__frame,
  .fresques-art--main { transition: none; }
}
