/* =========================================
VARIABLES & RESET
========================================= */
:root {
  --bg-deep: #1A120B;
  --bg-rich: #2D1F16;
  --bg-warm: #3D2817;
  --fg-primary: #FFF8F0;
  --fg-secondary: #E8D5C4;
  --fg-muted: #C4A890;
  --accent-primary: #D4845D;
  --accent-secondary: #E8A96B;
  --accent-glow: #FFB347;
  --gold-light: #D4AF37;
  --gold-dark: #AA8C2C;
  --terracotta: #C76D4E;
  --cream: #FFFDF9;
  --card: #2A1F17;
  --border: #5A4235;
  --border-light: #7D5E4A;
  --shadow-soft: 0 20px 60px rgba(139, 69, 19, 0.4);
  --shadow-glow: 0 0 40px rgba(212, 132, 93, 0.25);
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deep);
  color: var(--fg-primary);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

body.cursor-default {
  cursor: auto;
}

body.cursor-default .cursor-wrapper {
  display: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =========================================
CUSTOM CURSOR
========================================= */
.cursor-wrapper {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: exclusion;
}

.cursor-outer {
  width: 40px;
  height: 40px;
  border: 1px solid var(--fg-primary);
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -50%);
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

.cursor-wrapper.hovering .cursor-outer {
  width: 60px;
  height: 60px;
  border-color: var(--accent-glow);
  background: rgba(212, 132, 93, 0.1);
}

.cursor-wrapper.hovering .cursor-inner {
  width: 12px;
  height: 12px;
  background: var(--accent-glow);
}

.cursor-wrapper.clicking .cursor-outer {
  transform: translate(-50%, -50%) scale(0.8);
}

/* =========================================
LOADING SCREEN
========================================= */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

#loading-screen .african-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='15' fill='none' stroke='%23C76D4E' stroke-width='0.8'/%3E%3Cpath d='M40 10L70 40L40 70L10 40z' fill='none' stroke='%23D4845D' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: patternDrift 180s linear infinite;
}

#loading-screen .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 25s ease-in-out infinite;
}

#loading-screen .orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #D4845D 0%, #C76D4E 40%, transparent 70%);
  top: -300px;
  right: -200px;
  animation-delay: 0s;
  opacity: 0.5;
}

#loading-screen .orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #D4AF37 0%, #AA8C2C 40%, transparent 70%);
  bottom: -250px;
  left: -200px;
  animation-delay: -8s;
  opacity: 0.4;
}

#loading-screen .orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFB347 0%, #C76D4E 40%, transparent 70%);
  top: 40%;
  left: 20%;
  animation-delay: -16s;
  opacity: 0.35;
}

.loading-canvas-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 250px;
}

#loading-canvas {
  width: 100%;
  height: 100%;
}

.loading-progress-container {
  margin-top: 3rem;
  width: 300px;
  position: relative;
}

.loading-progress {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow), var(--gold-light));
  background-size: 200% 100%;
  width: 0%;
  transition: width 0.3s ease;
  animation: shimmer 2s linear infinite;
}

.loading-text {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-style: italic;
}

.loading-percentage {
  position: absolute;
  right: 0;
  top: -2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
}

/* =========================================
BACKGROUND EFFECTS
========================================= */
.african-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='15' fill='none' stroke='%23C76D4E' stroke-width='0.8'/%3E%3Cpath d='M40 10L70 40L40 70L10 40z' fill='none' stroke='%23D4845D' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: patternDrift 180s linear infinite;
}

.ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #D4845D 0%, #C76D4E 40%, transparent 70%);
  top: -300px;
  right: -200px;
  animation-delay: 0s;
  opacity: 0.5;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #D4AF37 0%, #AA8C2C 40%, transparent 70%);
  bottom: -250px;
  left: -200px;
  animation-delay: -8s;
  opacity: 0.4;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFB347 0%, #C76D4E 40%, transparent 70%);
  top: 40%;
  left: 20%;
  animation-delay: -16s;
  opacity: 0.35;
}

/* =========================================
KEYFRAMES
========================================= */
@keyframes patternDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 800px 800px;
  }
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(40px, -40px) scale(1.08);
  }

  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }

  75% {
    transform: translate(25px, 15px) scale(1.03);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 132, 93, 0.35);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(212, 132, 93, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  from {
    transform: translateX(-50%) translateY(40px);
  }
}

@keyframes floatPattern {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* =========================================
NAVIGATION
========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(26, 18, 11, 0.92);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(90, 66, 53, 0.5);
  padding: 1.2rem 4rem;
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--fg-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-link:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--fg-primary);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 300;
  color: var(--fg-muted);
  text-decoration: none;
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu a:hover {
  color: var(--accent-glow);
}

/* =========================================
HERO SECTION
========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 4rem 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, rgba(212, 132, 93, 0.15), transparent 60%);
}

.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.hero-label::after {
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
}

.hero-title strong {
  font-weight: 600;
  font-style: italic;
  color: var(--accent-glow);
  position: relative;
  display: inline-block;
}

.hero-title strong::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.1em;
  opacity: 0.5;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--fg-secondary);
  max-width: 580px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  perspective: 1500px;
}

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 520px;
  margin-left: auto;
}

.hero-image-frame {
  position: absolute;
  inset: -40px;
  border: 1px solid var(--accent-primary);
  opacity: 0.3;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-frame-2 {
  position: absolute;
  inset: -80px;
  border: 1px solid var(--border-light);
  opacity: 0.2;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) contrast(1.15) saturate(1.2) brightness(0.95);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-image {
  filter: sepia(0%) contrast(1.2) saturate(1.3) brightness(1);
}

.hero-stats {
  display: flex;
  gap: 5rem;
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.stat {
  position: relative;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--accent-glow);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.85rem;
}

/* =========================================
BUTTONS
========================================= */
.btn {
  padding: 1.3rem 2.8rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--terracotta));
  color: var(--bg-deep);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--accent-glow));
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--fg-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* =========================================
SECTION STYLES
========================================= */
section {
  position: relative;
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.section-label::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--accent-primary);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-style: italic;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--fg-secondary);
  line-height: 2;
  font-weight: 300;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 132, 93, 0.15), rgba(199, 109, 78, 0.1));
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

/* =========================================
ABOUT SECTION
========================================= */
.about {
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.subsection {
  background: rgba(42, 31, 23, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.title-icon {
  color: var(--accent-primary);
  font-size: 1rem;
}

.subsection-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin: 2rem 0 1rem;
  letter-spacing: 0.05em;
}

.subsection-subtitle:first-child {
  margin-top: 0;
}

.subsection-text {
  color: var(--fg-secondary);
  line-height: 2;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.subsection-text:last-child {
  margin-bottom: 0;
}

.about-text {
  color: var(--fg-secondary);
  line-height: 2.1;
  margin-bottom: 2rem;
  font-size: 1.08rem;
  font-weight: 300;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--fg-primary);
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--accent-primary);
  background: linear-gradient(135deg, rgba(42, 31, 23, 0.8), transparent);
  margin: 2rem 0;
  line-height: 1.5;
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent-glow);
  margin-top: 1.5rem;
}

/* =========================================
GALLERY SECTION
========================================= */
.gallery {
  padding: 12rem 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.gallery-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover::before,
.filter-btn.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-primary);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--card);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 11, 0.98) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: sepia(10%) contrast(1.05) saturate(0.95);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 50px rgba(212, 132, 93, 0.12);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: sepia(0%) contrast(1.1) saturate(1.1) brightness(1);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--fg-primary);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.gallery-item-info {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.gallery-item-year {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-glow);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  z-index: 2;
}

.gallery-item:hover .gallery-item-year {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
LIGHTBOX
========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26, 18, 11, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(30px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 94vw;
  max-height: 94vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 65px;
  height: 65px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--fg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: rotate(90deg);
  background: rgba(212, 132, 93, 0.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 75px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--fg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-deep);
}

.lightbox-nav.prev {
  left: 2.5rem;
}

.lightbox-nav.next {
  right: 2.5rem;
}

.lightbox-info {
  position: fixed;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  background: rgba(26, 18, 11, 0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 132, 93, 0.3);
  border-left: 3px solid var(--accent-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  width: 90%;
}

.lightbox.active .lightbox-info {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--fg-primary);
  margin-bottom: 0.6rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-details {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  letter-spacing: 0.15em;
}

.lightbox-counter {
  position: fixed;
  bottom: 3.5rem;
  right: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

/* =========================================
PROCESS SECTION
========================================= */
.process {
  padding: 12rem 0;
  position: relative;
}

.process-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 7rem;
}

.process-header p {
  color: var(--fg-secondary);
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.process-step {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(42, 31, 23, 0.6), transparent);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.process-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, var(--accent-primary) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-step:hover {
  transform: translateY(-15px);
  border-color: var(--accent-primary);
  box-shadow: 0 25px 50px rgba(212, 132, 93, 0.12);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover::after {
  opacity: 0.06;
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-icon {
  border-color: var(--accent-primary);
  transform: scale(1.15) rotate(8deg);
  background: rgba(212, 132, 93, 0.12);
  box-shadow: 0 0 30px rgba(212, 132, 93, 0.2);
}

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.process-desc {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.9;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* =========================================
COMMISSION SECTION
========================================= */
.commission {
  padding: 12rem 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.commission::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M75 0L150 75L75 150L0 75z' fill='none' stroke='%23D4845D' stroke-width='1'/%3E%3Ccircle cx='75' cy='75' r='35' fill='none' stroke='%23D4AF37' stroke-width='0.5'/%3E%3C/svg%3E");
}

.commission-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}

.commission-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 6rem;
}

.commission-header p {
  color: var(--fg-muted);
  line-height: 2;
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}

.commission-option {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3.5rem 3rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.commission-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.commission-option:hover::before {
  transform: scaleX(1);
}

.commission-option:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(212, 132, 93, 0.15);
}

.commission-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -2rem;
  position: relative;
  z-index: 1;
}

.commission-option:hover .commission-number {
  opacity: 0.3;
}

.commission-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.commission-desc {
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.commission-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.commission-link::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.4s ease;
}

.commission-link:hover {
  color: var(--accent-glow);
}

.commission-link:hover::after {
  width: 60px;
}

.commission-link svg {
  transform: translateX(0);
  transition: transform 0.4s ease;
}

.commission-link:hover svg {
  transform: translateX(5px);
}

.commission-cta {
  background: linear-gradient(135deg, rgba(42, 31, 23, 0.8), rgba(54, 35, 22, 0.6));
  border: 1px solid var(--border);
  padding: 5rem 24rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.commission-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 132, 93, 0.08) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
}

.commission-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.commission-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.commission-cta p {
  color: var(--fg-muted);
  line-height: 2.1;
  margin-bottom: 3rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.commission-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.commission-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.commission-feature svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* =========================================
BLOG SECTION
========================================= */
.blog {
  padding: 12rem 0;
  background: var(--bg-rich);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.blog-item {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-primary);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 2.5rem;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.35;
  font-weight: 400;
}

.blog-excerpt {
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
  font-weight: 300;
}

.blog-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

/* =========================================
CONTACT SECTION
========================================= */
.contact {
  padding: 8rem 0;
  position: relative;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212, 132, 93, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(199, 109, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  padding: 2.5rem;
  height: 100%;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

.info-item:hover {
  background: rgba(212, 132, 93, 0.08);
  transform: translateX(6px);
}

.item-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-item:hover .item-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-deep);
}

.item-icon svg {
  width: 20px;
  height: 20px;
}

.item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.item-value {
  font-size: 1rem;
  color: var(--fg-primary);
  font-weight: 400;
  word-break: break-word;
  line-height: 1.5;
}

.info-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 2rem 0;
}

.social-section {
  padding-top: 1.5rem;
}

.social-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg-muted);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.cta-card {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-rich));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg, 20px);
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 132, 93, 0.06) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

.cta-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 132, 93, 0.12);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.cta-card:hover .cta-icon-wrapper {
  background: var(--accent-primary);
  color: var(--bg-deep);
  transform: scale(1.1);
}

.cta-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 2;
  margin: 0 0 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--terracotta));
  color: var(--bg-deep);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--accent-glow));
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button:hover::before {
  transform: translateX(0);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 132, 93, 0.3);
}

.btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.cta-button:hover .btn-text {
  color: var(--bg-deep);
}

.btn-icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.cta-button:hover .btn-icon {
  transform: translateX(4px);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-note svg {
  width: 15px;
  height: 15px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* =========================================
FOOTER
========================================= */
.footer {
  padding: 3rem 0 0.5rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0705 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='15' fill='none' stroke='%23C76D4E' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.footer-inner {
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--fg-primary);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 350px;
}

.footer-developer {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0rem;
}

.footer-developer a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-developer a:hover {
  color: var(--accent-glow);
}

.footer-column h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--fg-primary);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-link:hover {
  color: var(--fg-primary);
  padding-left: 15px;
}

.footer-link:hover::before {
  width: 10px;
}

.footer-newsletter h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--fg-primary);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer-newsletter p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid var(--border);
  color: var(--fg-primary);
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(212, 132, 93, 0.1);
}

.footer-input::placeholder {
  color: var(--fg-muted);
}

.footer-btn {
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--terracotta));
  border: none;
  color: var(--bg-deep);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 132, 93, 0.3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-contact-item svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  color: var(--fg-muted);
  font-size: 0.8rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link-footer {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-link-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--gold-light));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link-footer:hover::before {
  transform: translateY(0);
}

.social-link-footer svg {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.social-link-footer:hover {
  border-color: var(--accent-primary);
  color: var(--bg-deep);
  transform: translateY(-5px);
}

/* =========================================
BLOG LIGHTBOX
========================================= */
.blog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.blog-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.blog-lightbox-content {
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  transform: scale(0.95) translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-lightbox.active .blog-lightbox-content {
  transform: scale(1) translateY(0);
}

.blog-lightbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.blog-lightbox-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-light);
  background: rgba(26, 18, 11, 0.9);
  color: var(--fg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.blog-lightbox-close:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: rotate(90deg);
  background: rgba(212, 132, 93, 0.15);
}

.blog-lightbox-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.blog-lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.blog-lightbox-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-lightbox-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-lightbox-meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.blog-lightbox-meta-value {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  font-weight: 400;
}

.blog-lightbox-story {
  margin-bottom: 2.5rem;
}

.blog-lightbox-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--accent-glow);
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-lightbox-story-title::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.blog-lightbox-story-text {
  color: var(--fg-secondary);
  line-height: 2.2;
  font-weight: 300;
  font-size: 1rem;
}

.blog-lightbox-technique {
  background: rgba(212, 132, 93, 0.05);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.blog-lightbox-technique-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--fg-primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.blog-lightbox-technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-lightbox-technique-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.blog-lightbox-cta {
  margin-top: auto;
}

.blog-lightbox-cta .btn {
  width: 100%;
  justify-content: center;
}

/* =========================================
AUDIO CONTROL
========================================= */
.audio-control {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.audio-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  background: rgba(26, 18, 11, 0.9);
  backdrop-filter: blur(10px);
  color: var(--fg-primary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.audio-toggle svg {
  width: 18px;
  height: 18px;
}

.audio-toggle:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(212, 132, 93, 0.25);
}

.audio-toggle.playing {
  background: var(--accent-primary);
  color: var(--bg-deep);
  animation: pulse 2s ease-in-out infinite;
}

.audio-status {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(26, 18, 11, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.audio-toggle.playing+.audio-status {
  color: var(--accent-primary);
}

/* =========================================
RESPONSIVE - CONSOLIDÉ
========================================= */
@media (min-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }

  .hero-label {
    justify-content: center;
  }

  .hero-label::before,
  .hero-label::after {
    display: none;
  }

  .hero-desc {
    margin: 0 auto;
    max-width: 600px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-image-wrapper {
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-inner {
    padding: 0 1.5rem;
  }

  .nav {
    padding: 1.2rem 1.5rem;
  }

  .nav.scrolled {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 8rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 2.5rem;
    border-top: none;
    padding-top: 0;
  }

  .stat {
    text-align: center;
  }

  .hero-image-frame,
  .hero-image-frame-2 {
    display: none;
  }

  .about-grid-compact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .subsection {
    padding: 2rem 1.75rem;
  }

  .about-quote {
    font-size: 1.3rem;
    padding: 1.75rem 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item::before {
    opacity: 1;
  }

  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 2rem;
  }

  .gallery-item-title {
    font-size: 1.3rem;
  }

  .gallery-item-year {
    opacity: 1;
    transform: translateY(0);
    top: 1.5rem;
    right: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .commission {
    padding: 8rem 0;
  }

  .commission-inner {
    padding: 0 1.5rem;
  }

  .commission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .commission-option {
    padding: 2.5rem 2rem;
  }

  .commission-cta {
    padding: 3rem 2rem;
  }

  .commission-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .contact {
    padding: 5rem 0;
  }

  .info-card,
  .cta-card {
    padding: 2rem 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .footer {
    padding: 3rem 0 0.5rem;
  }

  .footer-inner {
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-social {
    justify-content: center;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
  }

  .lightbox-close {
    width: 50px;
    height: 50px;
    top: 1.5rem;
    right: 1.5rem;
  }

  .lightbox-nav.prev {
    left: 1rem;
  }

  .lightbox-nav.next {
    right: 1rem;
  }

  .lightbox-info {
    bottom: 1.5rem;
    width: 90%;
  }

  .lightbox-title {
    font-size: 1.3rem;
  }

  .lightbox-counter {
    display: none;
  }

  .blog-lightbox-content {
    width: 95%;
    max-height: 95vh;
  }

  .blog-lightbox-info {
    padding: 2rem 1.5rem;
  }

  .blog-lightbox-title {
    font-size: 1.6rem;
  }

  .blog-lightbox-meta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .blog-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .audio-control {
    bottom: 1rem;
    left: 16rem;
  }

  .audio-toggle {
    width: 38px;
    height: 38px;
  }

  .audio-toggle svg {
    width: 16px;
    height: 16px;
  }

  .audio-status {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-inner {
    gap: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-image {
    max-height: 530px;
    margin-top: 50px;
  }

  @media (max-width: 1024px) {
    .blog-lightbox-grid {
      grid-template-columns: 1fr;
    }

    .blog-lightbox-image {
      min-height: 300px;
    }

    .blog-lightbox-info {
      padding: 3rem 2rem;
    }

    .blog-lightbox-title {
      font-size: 2rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  .info-item:focus-visible,
  .cta-button:focus-visible,
  .social-link:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
  }

  /* ===== CONTACT SECTION PRO ===== */

  .contact {
    padding: 8rem 0;
    position: relative;
  }

  .contact-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at top right, rgba(212, 132, 93, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse at bottom left, rgba(199, 109, 78, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  .section-inner {
    position: relative;
    z-index: 1;
  }

  /* Header */
  .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 132, 93, 0.15), rgba(199, 109, 78, 0.1));
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.12;
    margin: 0 0 1.5rem;
    color: var(--fg-primary);
  }

  .section-title .highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    font-style: italic;
  }

  .section-subtitle {
    font-size: 1.08rem;
    color: var(--fg-secondary);
    line-height: 2;
    font-weight: 300;
  }

  /* Wrapper principal */
  .contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 900px) {
    .contact-wrapper {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3.5rem;
    }
  }

  /* Colonne Informations */
  .info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 20px);
    padding: 2.5rem;
    height: 100%;
  }

  .card-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .title-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--terracotta));
    border-radius: 50%;
    flex-shrink: 0;
  }

  .title-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-deep);
  }

  .card-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--fg-primary);
    margin: 0;
  }

  /* Liste d'infos */
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
  }

  .info-item:hover {
    background: rgba(212, 132, 93, 0.08);
    transform: translateX(6px);
  }

  .item-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
  }

  .info-item:hover .item-icon {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-deep);
  }

  .item-icon svg {
    width: 20px;
    height: 20px;
  }

  .item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .item-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
  }

  .item-value {
    font-size: 1rem;
    color: var(--fg-primary);
    font-weight: 400;
    word-break: break-word;
    line-height: 1.5;
  }

  .info-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 2rem 0;
  }

  /* Section réseaux sociaux */
  .social-section {
    padding-top: 1.5rem;
  }

  .social-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 1.25rem;
  }

  .social-links {
    display: flex;
    gap: 0.75rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--fg-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
  }

  .social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-deep);
    transform: translateY(-3px);
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  /* Colonne CTA */
  .cta-card {
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-rich));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg, 20px);
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 132, 93, 0.06) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .cta-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 132, 93, 0.12);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
  }

  .cta-card:hover .cta-icon-wrapper {
    background: var(--accent-primary);
    color: var(--bg-deep);
    transform: scale(1.1);
  }

  .cta-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--fg-primary);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
  }

  .cta-text {
    font-size: 1rem;
    color: var(--fg-secondary);
    line-height: 2;
    margin: 0 0 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--terracotta));
    color: var(--bg-deep);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--accent-glow));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cta-button:hover::before {
    transform: translateX(0);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 132, 93, 0.3);
  }

  .btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
  }

  .cta-button:hover .btn-text {
    color: var(--bg-deep);
  }

  .btn-icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
  }

  .cta-button:hover .btn-icon {
    transform: translateX(4px);
  }

  .cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--fg-muted);
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .cta-note svg {
    width: 15px;
    height: 15px;
    color: var(--accent-primary);
    flex-shrink: 0;
  }

  /* Responsive */
  @media (max-width: 767px) {
    .contact {
      padding: 5rem 0;
    }

    .info-card,
    .cta-card {
      padding: 2rem 1.75rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .section-subtitle {
      font-size: 1rem;
    }

    .cta-title {
      font-size: 1.4rem;
    }
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .contact-header {
    animation: fadeInUp 0.6s ease-out;
  }

  .info-card {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
  }

  .cta-card {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
  }

  /* Accessibilité */
  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  .info-item:focus-visible,
  .cta-button:focus-visible,
  .social-link:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
  }

  /* About Grid Compact - 3 colonnes côte à côte */
  .about-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .about-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .subsection {
    background: rgba(42, 31, 23, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
  }

  .subsection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--fg-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .title-icon {
    color: var(--accent-primary);
    font-size: 1rem;
  }

  .subsection-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin: 2rem 0 1rem;
    letter-spacing: 0.05em;
  }

  .subsection-subtitle:first-child {
    margin-top: 0;
  }

  .subsection-text {
    color: var(--fg-secondary);
    line-height: 2;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .subsection-text:last-child {
    margin-bottom: 0;
  }

  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--fg-primary);
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--accent-primary);
    background: linear-gradient(135deg, rgba(42, 31, 23, 0.8), transparent);
    margin: 2rem 0;
    line-height: 1.5;
  }

  .about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-glow);
    margin-top: 1.5rem;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .about-grid-compact {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
  }

  @media (max-width: 768px) {
    .about-grid-compact {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .subsection {
      padding: 2rem 1.75rem;
    }

    .subsection-title {
      font-size: 1.4rem;
    }

    .subsection-subtitle {
      font-size: 1.1rem;
    }

    .about-quote {
      font-size: 1.3rem;
      padding: 1.75rem 2rem;
    }
  }
}





/* =========================================
BACKGROUND EFFECTS
========================================= */
@keyframes patternDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 800px 800px;
  }
}

.african-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='15' fill='none' stroke='%23C76D4E' stroke-width='0.8'/%3E%3Cpath d='M40 10L70 40L40 70L10 40z' fill='none' stroke='%23D4845D' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: patternDrift 180s linear infinite;
}

.ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #D4845D 0%, #C76D4E 40%, transparent 70%);
  top: -300px;
  right: -200px;
  animation-delay: 0s;
  opacity: 0.4;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #D4AF37 0%, #AA8C2C 40%, transparent 70%);
  bottom: -250px;
  left: -200px;
  animation-delay: -8s;
  opacity: 0.3;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFB347 0%, #C76D4E 40%, transparent 70%);
  top: 40%;
  left: 20%;
  animation-delay: -16s;
  opacity: 0.25;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(40px, -40px) scale(1.08);
  }

  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }

  75% {
    transform: translate(25px, 15px) scale(1.03);
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}



/* =========================================
ACTU / INSTAGRAM PAGE STYLES
========================================= */
.actu-page {
  min-height: 100vh;
  padding: 15rem 4rem 6rem;
  position: relative;
}

.actu-container {
  max-width: 1400px;
  margin: 0 auto;
}

.actu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.actu-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  background: rgba(212, 132, 93, 0.05);
}

.actu-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.actu-label::before,
.actu-label::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.actu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--fg-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.actu-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.instagram-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: none;
}

.instagram-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
  transform: translateY(0);
}

.instagram-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-rich);
}

.instagram-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-card:hover .instagram-image img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 11, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.instagram-stats {
  display: flex;
  gap: 1.5rem;
  color: var(--fg-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.instagram-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.instagram-stats svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-glow);
}

.instagram-caption {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.caption-text {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.caption-date {
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.instagram-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-decoration: none;
}

/* Load More & Integration Note */
.integration-note {
  background: var(--bg-rich);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
  margin: 3rem 0;
  text-align: center;
}

.integration-note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.integration-note-text {
  color: var(--fg-muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.integration-steps {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.integration-steps li {
  color: var(--fg-secondary);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.integration-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 600;
}

.load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--fg-muted);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  margin-top: 2rem;
  cursor: none;
}

.load-more:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.load-more svg {
  transition: transform 0.4s ease;
}

.load-more:hover svg {
  transform: translateY(-3px);
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  margin: 3rem auto 0;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  max-width: fit-content;
}

.back-link:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateX(-5px);
}

.back-link svg {
  transition: transform 0.4s ease;
}

.back-link:hover svg {
  transform: translateX(-5px);
}







/* Animation d'apparition des cartes */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.instagram-card {
  animation: cardFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.instagram-card:nth-child(1) {
  animation-delay: 0.1s;
}

.instagram-card:nth-child(2) {
  animation-delay: 0.15s;
}

.instagram-card:nth-child(3) {
  animation-delay: 0.2s;
}

.instagram-card:nth-child(4) {
  animation-delay: 0.25s;
}

.instagram-card:nth-child(5) {
  animation-delay: 0.3s;
}

.instagram-card:nth-child(6) {
  animation-delay: 0.35s;
}

.instagram-card:nth-child(7) {
  animation-delay: 0.4s;
}

.instagram-card:nth-child(8) {
  animation-delay: 0.45s;
}

.instagram-card:nth-child(9) {
  animation-delay: 0.5s;
}

.instagram-card:nth-child(10) {
  animation-delay: 0.55s;
}

.instagram-card:nth-child(11) {
  animation-delay: 0.6s;
}

.instagram-card:nth-child(12) {
  animation-delay: 0.65s;
}