/* ==========================================================================
   ROSHNI FINE ART - LUXURY EXHIBITION & ART ACQUISITION STYLESHEET
   Aesthetic: Fine Art Canvas Paper, Authentic Brush Strokes, Museum Framing
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-serif-title: 'Cinzel', Georgia, serif;
  --font-serif-body: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Alex Brush', cursive;

  /* Color Palette */
  --color-canvas-base: #f7f4ed;
  --color-canvas-paper: #fcfbfa;
  --color-paper-card: #ffffff;
  --color-charcoal-deep: #141210;
  --color-charcoal-light: #2b2724;
  --color-charcoal-muted: #5e5852;
  --color-gold-leaf: #c59a3f;
  --color-gold-glow: #e8c872;
  --color-terracotta: #c45738;
  --color-ultramarine: #1e3d7a;
  --color-crimson: #a62639;
  --color-sage: #4a6b57;
  --color-border-subtle: rgba(197, 154, 63, 0.22);
  --color-border-dark: rgba(20, 18, 16, 0.12);

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-frame: 0 16px 40px -10px rgba(20, 18, 16, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.08);
  --shadow-frame-hover: 0 24px 50px -10px rgba(20, 18, 16, 0.45), 0 0 0 1px rgba(197, 154, 63, 0.3);
  --shadow-floating: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 0 30px rgba(197, 154, 63, 0.28);

  --transition-smooth: all 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Reset & Canvas Paper Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-charcoal-light);
  background-color: var(--color-canvas-base);
  background-image: 
    linear-gradient(rgba(247, 244, 237, 0.92), rgba(247, 244, 237, 0.94)),
    url('../assets/images/canvas-bg.png');
  background-repeat: repeat;
  background-size: 500px auto;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Canvas Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/canvas-bg.png');
  background-size: 600px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
}

/* Container */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Typography Defaults */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif-title);
  color: var(--color-charcoal-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}

p {
  color: var(--color-charcoal-muted);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ==========================================================================
   BRUSH STROKE ACCENTS & DECORATIVE FLARES
   ========================================================================== */

.brush-accent-1 {
  display: inline-block;
  background: url('../assets/images/brush-stroke-1.png') no-repeat center center;
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  padding: 0.2rem 1.4rem;
}

.brush-accent-2 {
  display: inline-block;
  background: url('../assets/images/brush-stroke-2.png') no-repeat center center;
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  padding: 0.4rem 1.6rem;
}

.brush-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.brush-underline::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -10px;
  width: 110%;
  height: 20px;
  background: url('../assets/images/brush-stroke-1.png') no-repeat center center;
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
}

.brush-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: url('../assets/images/brush-stroke-1.png') no-repeat center center;
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.8rem;
  border-radius: 4px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-serif-body);
  font-style: italic;
  color: var(--color-gold-leaf);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-charcoal-deep);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-charcoal-muted);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   NAVIGATION BAR (LUXURY ARTISTIC MUSEUM HEADER)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* 1. Top Curator & Exhibition Ribbon */
.top-curator-bar {
  background: #141210;
  border-bottom: 1px solid rgba(197, 154, 63, 0.3);
  padding: 0.35rem 0;
  font-size: 0.74rem;
  color: #d1cbc4;
  transition: all 0.3s ease;
}

.site-header.scrolled .top-curator-bar {
  margin-top: -38px;
  opacity: 0;
  pointer-events: none;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left .exhibition-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #ece8e1;
}

.top-bar-left strong {
  color: var(--color-gold-leaf);
  font-weight: 700;
}

.top-bar-center .live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 0.15rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #7bed9f;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.pulse-green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse-green 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-green {
  to { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-right .currency-selector {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 154, 63, 0.4);
  border-radius: 14px;
  padding: 0.15rem 0.55rem;
}

.top-bar-right .currency-selector i {
  color: var(--color-gold-leaf);
  font-size: 0.7rem;
}

.top-bar-right .currency-selector .curr-label {
  font-size: 0.68rem;
  color: #a8a29a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-bar-right .currency-selector select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.top-bar-right .currency-selector select option {
  background: #141210;
  color: #ffffff;
}

.top-bar-contact {
  color: #2ecc71;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s ease;
}

.top-bar-contact:hover {
  opacity: 0.8;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .top-bar-center {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-container {
    justify-content: flex-end;
  }
}

/* 2. Main Gallery Navigation Bar */
.main-nav-bar {
  background: rgba(252, 250, 246, 0.96);
  background-image: linear-gradient(rgba(252, 250, 246, 0.95), rgba(252, 250, 246, 0.97)), url('../assets/images/canvas-bg.png');
  background-size: 500px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(197, 154, 63, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.site-header.scrolled .main-nav-bar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(197, 154, 63, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: height 0.3s ease;
}

.site-header.scrolled .nav-container {
  height: 68px;
}

/* Brand Emblem Crest */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-crest {
  width: 48px;
  height: 48px;
  padding: 2px;
  background: linear-gradient(135deg, #e8c872, #c59a3f, #9b7220);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(197, 154, 63, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.brand-logo:hover .brand-crest {
  transform: rotate(10deg) scale(1.05);
}

.crest-inner {
  width: 100%;
  height: 100%;
  background: #141210;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.crest-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/brush-stroke-1.png') center/cover;
  opacity: 0.3;
  mix-blend-mode: color-dodge;
}

.crest-letter {
  font-family: var(--font-serif-title);
  font-weight: 900;
  font-size: 1.45rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #e8c872, #c59a3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  z-index: 2;
  margin-left: -2px;
}

.crest-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 0.65rem;
  color: var(--color-gold-leaf);
  z-index: 2;
  transform: rotate(-30deg);
}

.brand-title {
  font-family: var(--font-serif-title);
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  line-height: 1;
  color: #141210;
  margin: 0;
}

.brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-leaf);
  font-weight: 700;
  display: block;
  margin-top: 3px;
}

/* Elevated Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-divider {
  color: rgba(197, 154, 63, 0.45);
  font-size: 0.55rem;
  user-select: none;
  padding: 0 0.15rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.45rem 0.95rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link-title {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #1e1b18;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.nav-link-sub {
  font-family: var(--font-serif-body);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--color-gold-leaf);
  opacity: 0.85;
  margin-top: 2px;
  line-height: 1;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  background: rgba(197, 154, 63, 0.09);
}

.nav-link:hover .nav-link-title, .nav-link.active .nav-link-title {
  color: #a67c1e;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #c59a3f, #e8c872);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav Actions & Artistic CTAs */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* Dynamic Artistic Commission CTA Button */
.btn-nav-artistic {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #a62639;
  background-image: url('../assets/images/brush-stroke-1.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 14px rgba(166, 38, 57, 0.35);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  white-space: nowrap;
}

.btn-nav-artistic:hover {
  transform: translateY(-2px) rotate(-0.5deg) scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 8px 22px rgba(166, 38, 57, 0.45);
  color: #ffffff;
}

@media (max-width: 992px) {
  .btn-nav-artistic {
    display: none;
  }
  .nav-divider {
    display: none;
  }
}

/* Acquisition Bag Trigger Button */
.cart-trigger-btn {
  position: relative;
  background: #ffffff;
  border: 1.5px solid var(--color-gold-leaf);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #141210;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.cart-trigger-btn:hover {
  background: #141210;
  color: var(--color-gold-leaf);
  border-color: #141210;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.cart-badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-terracotta);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(196, 87, 50, 0.5);
  border: 1.5px solid #ffffff;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--color-charcoal-deep);
  color: var(--color-canvas-paper);
  border: 1px solid var(--color-charcoal-deep);
  box-shadow: 0 6px 20px rgba(20, 18, 16, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 200, 114, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: #25211d;
  color: var(--color-gold-leaf);
  border-color: var(--color-gold-leaf);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-artistic {
  background: url('../assets/images/brush-stroke-1.png') no-repeat center center;
  background-size: 100% 100%;
  color: #ffffff;
  padding: 0.95rem 2.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border: none;
  font-weight: 700;
}

.btn-artistic:hover {
  transform: scale(1.04) rotate(-0.5deg);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(166, 38, 57, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-charcoal-deep);
  border: 1px solid var(--color-gold-leaf);
}

.btn-outline-gold:hover {
  background: var(--color-gold-leaf);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 154, 63, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: #141210;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
  color: var(--color-gold-leaf);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 118px;
    left: 0;
    width: 100%;
    background: #fcfbfa;
    background-image: linear-gradient(rgba(252, 251, 250, 0.98), rgba(252, 251, 250, 0.98)), url('../assets/images/canvas-bg.png');
    background-size: 400px;
    flex-direction: column;
    padding: 2rem 1.5rem 2.5rem;
    gap: 1.4rem;
    border-bottom: 2px solid rgba(197, 154, 63, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.scrolled .nav-links {
    top: 68px;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION: THE GRAND EXHIBITION SPOTLIGHT
   ========================================================================== */

.hero-section {
  padding: 165px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-terracotta);
  background: rgba(196, 87, 50, 0.08);
  border: 1px solid rgba(196, 87, 50, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 0 0 0 rgba(196, 87, 50, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  to {
    box-shadow: 0 0 0 10px rgba(196, 87, 50, 0);
  }
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal-deep);
}

.hero-title em {
  font-family: var(--font-serif-body);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-leaf);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-charcoal-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-subtle);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--color-charcoal-deep);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal-muted);
}

/* Masterpiece Frame in Hero */
.hero-art-showcase {
  position: relative;
  z-index: 2;
}

.hero-frame-container {
  position: relative;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-frame);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition-smooth);
}

.hero-frame-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow: var(--shadow-frame-hover);
}

/* Ornate Gilt Frame Edge */
.museum-frame-gilt {
  border: 16px solid #2e261f;
  outline: 4px solid var(--color-gold-leaf);
  outline-offset: -10px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  background: #000;
}

.museum-frame-gilt img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-frame-container:hover .museum-frame-gilt img {
  transform: scale(1.05);
}

/* Floating Brush Stroke Accents on Hero */
.hero-brush-bg {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 450px;
  height: 250px;
  background: url('../assets/images/brush-stroke-2.png') no-repeat center center;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg);
}

.hero-brush-bg-2 {
  position: absolute;
  bottom: 0%;
  left: -5%;
  width: 380px;
  height: 180px;
  background: url('../assets/images/brush-stroke-1.png') no-repeat center center;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Museum Plaque */
.museum-plaque {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e6c875, #c59a3f, #9b7220);
  color: #1a140d;
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid #ffe8a3;
  text-align: center;
  min-width: 240px;
  z-index: 5;
}

.museum-plaque .plaque-title {
  font-family: var(--font-serif-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.museum-plaque .plaque-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-frame-container {
    transform: none;
  }
}

/* ==========================================================================
   CURATED GALLERY & EXHIBITION HALL (MAIN SHOWCASE)
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  position: relative;
}

/* Filter Bar & Controls */
.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.filter-btn {
  background: var(--color-canvas-paper);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-charcoal-muted);
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.filter-btn:hover {
  color: var(--color-charcoal-deep);
  border-color: var(--color-gold-leaf);
}

.filter-btn.active {
  background: var(--color-charcoal-deep);
  color: var(--color-gold-leaf);
  border-color: var(--color-charcoal-deep);
  box-shadow: 0 4px 12px rgba(20, 18, 16, 0.15);
}

.gallery-sort-search {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-select, .search-input {
  background: var(--color-canvas-paper);
  border: 1px solid var(--color-border-subtle);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--color-charcoal-deep);
  outline: none;
}

.sort-select:focus, .search-input:focus {
  border-color: var(--color-gold-leaf);
  box-shadow: 0 0 0 2px rgba(197, 154, 63, 0.2);
}

/* Gallery Artworks Grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .art-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Artwork Card */
.art-card {
  background: var(--color-paper-card);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.art-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-frame-hover);
  border-color: var(--color-border-subtle);
}

/* Artwork Image Wrapper */
.art-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background: #141210;
  overflow: hidden;
  cursor: pointer;
}

.art-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-card:hover .art-img-wrapper img {
  transform: scale(1.06);
}

/* Artwork Badges */
.art-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-available {
  background: #2d6a4f;
  color: #ffffff;
}

.badge-spotlight {
  background: var(--color-gold-leaf);
  color: #141210;
}

.badge-sold {
  background: var(--color-crimson);
  color: #ffffff;
}

.badge-commission {
  background: var(--color-ultramarine);
  color: #ffffff;
}

/* Hover Quick Actions Overlay */
.art-overlay-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 4;
}

.art-card:hover .art-overlay-actions {
  opacity: 1;
  pointer-events: all;
}

.overlay-btn {
  background: var(--color-canvas-paper);
  color: var(--color-charcoal-deep);
  border: 1px solid var(--color-gold-leaf);
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.overlay-btn:hover {
  background: var(--color-gold-leaf);
  color: #ffffff;
  transform: scale(1.05);
}

.overlay-btn.btn-accent {
  background: var(--color-charcoal-deep);
  color: var(--color-gold-leaf);
  border-color: var(--color-charcoal-deep);
}

.overlay-btn.btn-accent:hover {
  background: var(--color-gold-leaf);
  color: #141210;
}

/* Artwork Details Footer */
.art-info {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.art-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.art-medium {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-leaf);
}

.art-dimensions {
  font-size: 0.8rem;
  color: var(--color-charcoal-muted);
}

.art-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  color: var(--color-charcoal-deep);
}

.art-story {
  font-size: 0.88rem;
  color: var(--color-charcoal-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-subtle);
}

.art-price {
  font-family: var(--font-serif-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-charcoal-deep);
}

.art-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-charcoal-muted);
  display: block;
}

.btn-acquire-quick {
  background: var(--color-charcoal-deep);
  color: #ffffff;
  border: 1px solid var(--color-charcoal-deep);
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-acquire-quick:hover {
  background: var(--color-gold-leaf);
  color: #141210;
  border-color: var(--color-gold-leaf);
}

/* ==========================================================================
   VIEW ON WALL SIMULATOR (ROOM VISUALIZER)
   ========================================================================== */

.wall-simulator-section {
  padding: 100px 0;
  background: #1c1a17;
  color: #f7f4ed;
  position: relative;
  overflow: hidden;
}

.wall-simulator-section .section-title {
  color: #ffffff;
}

.wall-simulator-section .section-desc {
  color: #b8b1a9;
}

.simulator-workspace {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  margin-top: 2rem;
  background: #141210;
  border-radius: 6px;
  border: 1px solid rgba(197, 154, 63, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* The Live Wall Stage */
.wall-stage {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #e3ddd3;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease, background-color 0.4s ease;
  overflow: hidden;
}

/* Interior Room Scenes */
.wall-stage.scene-sofa {
  background-image: url('../assets/images/paintings/room-sofa-blank.jpg');
}

.wall-stage.scene-credenza {
  background-image: url('../assets/images/paintings/room-credenza.jpg');
}

.wall-stage.scene-gallery {
  background-image: url('../assets/images/paintings/room-wall-clean.jpg');
}

/* Upper Wall Paint Color Tint Overlay */
.wall-color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  mix-blend-mode: multiply;
  opacity: 0.15;
  transition: background-color 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Directional Overhead Ceiling Spotlight */
.wall-spotlight-beam {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 420px;
  background: radial-gradient(ellipse at top, rgba(255, 248, 220, 0.45) 0%, rgba(255, 245, 210, 0.16) 45%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
  z-index: 4;
}

/* Picture Hanging Hardware Bracket */
.wall-hanging-bracket {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 6px;
  background: linear-gradient(180deg, #e8c872, #c59a3f, #8a641a);
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  z-index: 6;
}

/* Framed Painting on Wall - Naturally Mounted at Eye Level */
.wall-painting-display {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 350px;
  width: 100%;
  transition: all 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.wall-painting-display.size-small {
  max-width: 240px;
  top: 20%;
}
.wall-painting-display.size-medium {
  max-width: 350px;
  top: 15%;
}
.wall-painting-display.size-large {
  max-width: 460px;
  top: 10%;
}

.wall-frame {
  position: relative;
  background: #ffffff;
  transition: var(--transition-smooth);
}

/* Archival Passe-Partout Mat Board */
.frame-mat-board {
  background: #fdfdfd;
  padding: 18px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.28);
  position: relative;
}

.frame-mat-board img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Realistic Frame Styles with 3D Wall Shadow */
.frame-gold {
  border: 18px solid #c59a3f;
  border-image: linear-gradient(135deg, #ffe8a3, #e8c872, #c59a3f, #9b7220, #e8c872) 18;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55), 0 10px 22px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.frame-oak {
  border: 18px solid #8b5a2b;
  border-image: linear-gradient(135deg, #b08968, #8b5a2b, #6f4518, #9c6644) 18;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55), 0 10px 22px rgba(0, 0, 0, 0.3);
}

.frame-black {
  border: 20px solid #141210;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.frame-canvas {
  border: none;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5);
}

.frame-canvas .frame-mat-board {
  padding: 0;
  box-shadow: none;
}

/* Grounded Room Floor Trim */
.room-foreground-anchor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28%;
  pointer-events: none;
  z-index: 3;
}

/* Scene Selector Grid in Controls */
.scene-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.room-scene-btn {
  background: #25211d;
  color: #d1cbc4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.3rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.room-scene-btn i {
  font-size: 0.95rem;
  color: var(--color-gold-leaf);
}

.room-scene-btn.active, .room-scene-btn:hover {
  background: var(--color-gold-leaf);
  color: #141210;
  border-color: var(--color-gold-leaf);
}

.room-scene-btn.active i, .room-scene-btn:hover i {
  color: #141210;
}

/* Simulator Control Panel */
.simulator-controls {
  background: #181513;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-left: 1px solid rgba(197, 154, 63, 0.2);
}

.control-group h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-leaf);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Wall Swatches */
.wall-swatches {
  display: flex;
  gap: 0.6rem;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.color-swatch.active {
  border-color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Frame Selector Buttons */
.frame-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.frame-btn {
  background: #25211d;
  color: #d1cbc4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0.6rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.frame-btn.active, .frame-btn:hover {
  background: var(--color-gold-leaf);
  color: #141210;
  border-color: var(--color-gold-leaf);
}

/* Size Buttons */
.size-options {
  display: flex;
  gap: 0.5rem;
}

.size-btn {
  flex: 1;
  background: #25211d;
  color: #d1cbc4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  font-size: 0.75rem;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
}

.size-btn.active {
  background: var(--color-gold-leaf);
  color: #141210;
  font-weight: 700;
}

@media (max-width: 992px) {
  .simulator-workspace {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CUSTOM COMMISSION ART STUDIO (ORDER ENGINE)
   ========================================================================== */

.commission-section {
  padding: 100px 0;
  position: relative;
}

.commission-card {
  background: var(--color-canvas-paper);
  border: 1px solid var(--color-border-subtle);
  border-radius: 6px;
  box-shadow: var(--shadow-subtle);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.commission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #c45738, #c59a3f, #1e3d7a, #a62639);
}

.commission-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem;
}

@media (max-width: 992px) {
  .commission-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .commission-card {
    padding: 1.75rem;
  }
}

.commission-step {
  margin-bottom: 2rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-charcoal-deep);
  color: var(--color-gold-leaf);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-header h4 {
  font-size: 1.1rem;
  color: var(--color-charcoal-deep);
}

/* Custom Choice Cards */
.choice-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.choice-card {
  background: #ffffff;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 1rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.choice-card:hover {
  border-color: var(--color-gold-leaf);
  transform: translateY(-2px);
}

.choice-card.selected {
  border-color: var(--color-gold-leaf);
  background: rgba(197, 154, 63, 0.08);
  box-shadow: 0 4px 12px rgba(197, 154, 63, 0.2);
}

.choice-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--color-gold-leaf);
}

.choice-card h5 {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.choice-card span {
  font-size: 0.72rem;
  color: var(--color-charcoal-muted);
  display: block;
}

/* Upload Dropzone */
.photo-dropzone {
  border: 2px dashed var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.photo-dropzone:hover {
  border-color: var(--color-gold-leaf);
  background: #ffffff;
}

.photo-dropzone input {
  display: none;
}

.dropzone-preview {
  display: none;
  margin-top: 1rem;
}

.dropzone-preview img {
  max-height: 120px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
}

/* Commission Summary Sidebar */
.commission-summary-box {
  background: #1c1a17;
  color: #f7f4ed;
  border-radius: 6px;
  padding: 2.2rem;
  position: sticky;
  top: 110px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 154, 63, 0.3);
}

.commission-summary-box h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #c7c1b8;
}

.calc-row.total-row {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-glow);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
}

.commission-guarantees {
  margin: 1.5rem 0;
  list-style: none;
  font-size: 0.8rem;
  color: #a39c92;
}

.commission-guarantees li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.commission-guarantees li i {
  color: var(--color-gold-leaf);
}

/* ==========================================================================
   ARTIST ATELIER & STUDIO RETROSPECTIVE
   ========================================================================== */

.artist-section {
  padding: 100px 0;
  background: rgba(240, 236, 226, 0.6);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.artist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.artist-portrait-box {
  position: relative;
}

.artist-portrait-frame {
  position: relative;
  padding: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-frame);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.artist-portrait-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.artist-quote-callout {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--color-charcoal-deep);
  color: var(--color-canvas-paper);
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 280px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--color-gold-leaf);
}

.artist-quote-callout p {
  font-family: var(--font-serif-body);
  font-style: italic;
  font-size: 0.95rem;
  color: #ece8e1;
  line-height: 1.4;
}

.artist-signature-img {
  font-family: var(--font-signature);
  font-size: 2.2rem;
  color: var(--color-gold-leaf);
  margin-top: 0.5rem;
  text-align: right;
}

.artist-bio h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.artist-bio p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.02rem;
}

.milestones-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.milestone-item {
  padding: 1rem;
  background: #ffffff;
  border-left: 3px solid var(--color-gold-leaf);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.milestone-item .year {
  font-family: var(--font-serif-title);
  font-weight: 700;
  color: var(--color-gold-leaf);
  font-size: 1.1rem;
}

.milestone-item p {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 992px) {
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .artist-quote-callout {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

/* ==========================================================================
   ACQUISITION BAG & SLIDE-OVER DRAWER
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 18, 16, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--color-canvas-paper);
  background-image: linear-gradient(rgba(252, 251, 250, 0.96), rgba(252, 251, 250, 0.96)), url('../assets/images/canvas-bg.png');
  background-size: 400px;
  z-index: 2001;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-close-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-charcoal-muted);
}

.cart-body {
  padding: 1.5rem 1.8rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid var(--color-border-dark);
  position: relative;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-serif-title);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cart-item-type {
  font-size: 0.75rem;
  color: var(--color-gold-leaf);
  text-transform: uppercase;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 700;
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--color-crimson);
  font-size: 0.85rem;
  cursor: pointer;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-charcoal-muted);
}

.cart-empty-state i {
  font-size: 3rem;
  color: var(--color-gold-leaf);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.cart-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--color-border-subtle);
  background: #ffffff;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-family: var(--font-serif-title);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: none;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   FOOTER & GUARANTEE BADGES
   ========================================================================== */

.site-footer {
  background: #141210;
  color: #f7f4ed;
  padding: 80px 0 30px;
  position: relative;
  border-top: 3px solid var(--color-gold-leaf);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold-leaf);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #a8a29a;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold-leaf);
  padding-left: 4px;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #1f1c19;
  border: 1px solid rgba(197, 154, 63, 0.3);
  color: #ffffff;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-gold-leaf);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #7d776f;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
