/* ============================================================
   BD Lemntech — Luxury Landing Page
   Design System & Styles
   ============================================================ */

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

/* ── CSS Variables — Dark (default) ──────────────────────── */
:root {
  --clr-bg: #080808;
  --clr-bg-2: #0E0E0E;
  --clr-bg-3: #141414;
  --clr-surface: rgba(255, 255, 255, 0.04);
  --clr-surface-2: rgba(255, 255, 255, 0.07);
  --clr-border: rgba(201, 168, 76, 0.2);
  --clr-border-2: rgba(201, 168, 76, 0.4);

  --gold-1: #C9A84C;
  --gold-2: #E8C96A;
  --gold-3: #F5E6B2;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #F5E6B2 50%, #C9A84C 100%);

  --text-primary: #F5F0E8;
  --text-secondary: #D0C8B8;
  --text-muted: #9A9590;

  --ff-serif: 'Cormorant Garamond', serif;
  --ff-sans: 'Inter', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --radius: 12px;
  --radius-lg: 20px;

  --max-w: 1240px;
  --section-py: 120px;
}

/* ── CSS Variables — Light Theme ─────────────────────────── */
[data-theme="light"] {
  --clr-bg: #F8F5EE;
  --clr-bg-2: #F0EBE0;
  --clr-bg-3: #E8E0D0;
  --clr-surface: rgba(0, 0, 0, 0.04);
  --clr-surface-2: rgba(0, 0, 0, 0.07);
  --clr-border: rgba(180, 145, 60, 0.2);
  --clr-border-2: rgba(180, 145, 60, 0.45);

  --gold-1: #9A6F20;
  --gold-2: #7A5510;
  --gold-3: #5A3D08;
  --gold-dim: rgba(154, 111, 32, 0.10);
  --gold-gradient: linear-gradient(135deg, #9A6F20 0%, #C9A84C 50%, #9A6F20 100%);

  --text-primary: #1A1208;
  --text-secondary: #5A4820;
  --text-muted: #9A8868;
}

/* Smooth theme transitions */
body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* ── Theme Toggle Button ─────────────────────────────────── */
.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-2);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  padding: 0 4px;
  outline: none;
}

.theme-toggle:hover {
  border-color: var(--gold-1);
  background: var(--gold-dim);
}

.theme-toggle-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.5);
  flex-shrink: 0;
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(24px);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--text-primary);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-1);
  border-radius: 3px;
}

/* ── Typography ───────────────────────────────────────────── */
.serif {
  font-family: var(--ff-serif);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-1);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.gold-divider.left {
  margin-left: 0;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% 100%;
  color: #080808;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4), 0 0 80px rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--clr-border-2);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold-1);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 28px;
  font-size: 0.75rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-main {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-1);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--gold-2);
}

.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-mobile-close:hover {
  color: var(--gold-1);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.75) 50%,
      rgba(8, 8, 8, 0.85) 100%);
  z-index: 1;
}

.hero-overlay-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-dim);
  margin-bottom: 32px;
  animation: fadeDown 1s ease 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 12px;
  animation: fadeDown 1s ease 0.4s both;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-line {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 28px;
  animation: fadeDown 1s ease 0.5s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 48px;
  animation: fadeDown 1s ease 0.6s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 1s ease 0.7s both;
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeLeft 1s ease 0.8s both;
}

.hero-stat {
  text-align: right;
  padding: 20px 28px;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-right: none;
  border-radius: 12px 0 0 12px;
}

.hero-stat-number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeDown 1.2s ease 1s both;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold-1);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── INTRO QUOTE ──────────────────────────────────────────── */
#intro {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

#intro::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  font-family: var(--ff-serif);
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.intro-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.intro-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.intro-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.intro-body strong {
  color: var(--gold-2);
  font-weight: 500;
}

/* ── PROCESS ──────────────────────────────────────────────── */
#process {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(10% + 40px);
  right: calc(10% + 40px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-2), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .process-step-icon {
  border-color: var(--gold-1);
  background: var(--gold-dim);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.process-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-1);
  color: #080808;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHY IN-HOUSE ─────────────────────────────────────────── */
#why {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text .section-subtitle {
  max-width: none;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  padding: 28px 32px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card:hover {
  background: var(--clr-surface-2);
  border-color: var(--clr-border-2);
  transform: translateX(4px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-card-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.why-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-card-accent {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CHALLENGES ───────────────────────────────────────────── */
#challenges {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.challenges-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.challenges-visual {
  position: relative;
}

.challenges-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--clr-border);
}

.challenges-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.challenges-img-wrap:hover img {
  transform: scale(1.04);
}

.challenges-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 20px 28px;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.challenges-badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.challenges-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.challenges-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.challenges-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.challenges-feature::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── CUSTOM SOLUTIONS ─────────────────────────────────────── */
#solutions {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.solutions-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.sol-img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--clr-border);
}

.sol-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sol-img-item:hover img {
  transform: scale(1.04);
}

.img-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ── FOOD & BEVERAGE GALLERY ──────────────────────────────── */
.fb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.fb-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  position: relative;
}

.fb-img img {
  transition: transform 0.8s ease;
}

.fb-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.fb-img:hover::after {
  opacity: 1;
}

.fb-img:hover img {
  transform: scale(1.06);
}

/* ── LIGHTS SECTION ───────────────────────────────────────── */
#lights {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.lights-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.lights-content {
  order: 2;
}

.lights-visual {
  order: 1;
}

.lights-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--clr-border);
  position: relative;
}

.lights-img-wrap img {
  transition: transform 0.8s ease;
}

.lights-img-wrap:hover img {
  transform: scale(1.04);
}

.lights-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lights-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.lights-spec {
  padding: 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}

.lights-spec-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.lights-spec-value {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-2);
}

/* ── PHOTOCORNER ──────────────────────────────────────────── */
#photocorner {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.photocorner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.photocorner-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photocorner-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  position: relative;
}

.photocorner-img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.photocorner-img:not(:first-child) {
  aspect-ratio: 1;
}

.photocorner-img img {
  transition: transform 0.8s ease;
}

.photocorner-img:hover img {
  transform: scale(1.06);
}

/* ── PACKAGES ─────────────────────────────────────────────── */
#packages {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

#packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}

.packages-header {
  text-align: center;
  margin-bottom: 70px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  padding: 48px 36px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
  border-color: var(--clr-border-2);
}

.package-card.featured::before {
  transform: scaleX(1);
}

.package-card:hover {
  border-color: var(--clr-border-2);
  transform: translateY(-6px);
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold-gradient);
  color: #080808;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.package-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.package-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}

.package-divider {
  width: 40px;
  height: 1px;
  background: var(--clr-border);
  margin-bottom: 28px;
}

.package-btn {
  margin-top: auto;
}

/* ── CASE STUDY ───────────────────────────────────────────── */
#case-study {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.case-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--clr-border);
  position: relative;
}

.case-img-wrap img {
  transition: transform 0.8s ease;
}

.case-img-wrap:hover img {
  transform: scale(1.04);
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, transparent 100%);
}

.case-overlay-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-2);
}

.case-overlay-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.case-quote {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 2px solid var(--gold-1);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.7;
}

.case-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.case-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.case-point-icon {
  color: var(--gold-1);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── GALLERY MASONRY ──────────────────────────────────────── */
#gallery {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Grid for the Project Stacks (Main View) */
#gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Grid for Individual Photos (Exploded Masonry) */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item-overlay span {
  color: var(--gold-2);
  font-size: 1.8rem;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ── PHOTO STACK & EXPLODED GALLERY ──────────────────────── */
.photo-stack {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
  break-inside: avoid;
  padding: 10px;
  /* spatiu pentru rotirea straturilor inferioare */
}

.photo-stack-layer {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--radius);
  background: var(--clr-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.photo-stack .layer-3 {
  transform: rotate(-4deg);
  background: rgba(100, 100, 100, 0.2);
}

.photo-stack .layer-2 {
  transform: rotate(3deg);
  background: rgba(150, 150, 150, 0.2);
}

.photo-stack .layer-1 {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(0);
  overflow: hidden;
  z-index: 2;
  background: var(--clr-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 380px;
  /* Inaltime fixa pentru carduri */
}

.photo-stack:hover .layer-3 {
  transform: rotate(-6deg) translate(-4px, 4px);
}

.photo-stack:hover .layer-2 {
  transform: rotate(5deg) translate(4px, 4px);
}

.photo-stack:hover .layer-1 {
  transform: scale(1.02);
}

.photo-stack .layer-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.photo-stack:hover .layer-1 img {
  transform: scale(1.08);
}

.photo-stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.photo-stack-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
  line-height: 1.2;
}

.photo-stack-count {
  color: var(--gold-1);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Exploded Gallery */
.gallery-exploded {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-exploded.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.gallery-exploded-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-exploded-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-1);
}

.gallery-back-btn {
  font-size: 0.9rem;
  padding: 10px 20px;
}

.explode-in {
  animation: explodeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

@keyframes explodeIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
}

#lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-dim);
  border-color: var(--gold-1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--text-primary);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-dim);
  border-color: var(--gold-1);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--clr-border-2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--clr-surface);
  border: none;
  color: var(--text-primary);
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: var(--clr-surface-2);
  color: var(--gold-2);
}

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--gold-1);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-dim);
  border-color: var(--gold-1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── CONTACT / CTA FINAL ──────────────────────────────────── */
#contact {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-cta-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FORM ─────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-1);
  background: var(--clr-surface-2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo-text {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-2);
}

/* ── PARTICLES ────────────────────────────────────────────── */
#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-1);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100px) translateX(var(--dx, 40px));
    opacity: 0;
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 90px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step:nth-child(4),
  .process-step:nth-child(5) {
    grid-column: auto;
  }

  .why-grid,
  .challenges-inner,
  .solutions-feature,
  .lights-inner,
  .photocorner-inner,
  .case-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lights-content {
    order: 1;
  }

  .lights-visual {
    order: 2;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-sticky {
    position: static;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-stats {
    display: none;
  }

  .solutions-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .gallery-grid {
    columns: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .fb-gallery {
    grid-template-columns: 1fr;
  }

  .photocorner-gallery {
    grid-template-columns: 1fr;
  }

  .photocorner-img:first-child {
    grid-column: 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .gallery-grid {
    columns: 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Light Mode Overrides (elements with hardcoded dark colors) ── */
[data-theme="light"] #navbar.scrolled {
  background: rgba(248, 245, 238, 0.94);
  border-bottom-color: var(--clr-border);
}

[data-theme="light"] .nav-mobile {
  background: rgba(248, 245, 238, 0.99);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg,
      rgba(248, 245, 238, 0.82) 0%,
      rgba(240, 235, 224, 0.65) 50%,
      rgba(248, 245, 238, 0.78) 100%);
}

[data-theme="light"] .hero-badge {
  background: rgba(154, 111, 32, 0.08);
  border-color: rgba(154, 111, 32, 0.3);
}

[data-theme="light"] .hero-stat {
  background: rgba(248, 245, 238, 0.88);
  border-color: var(--clr-border);
}

[data-theme="light"] #intro::before {
  color: rgba(154, 111, 32, 0.08);
}

[data-theme="light"] #lightbox {
  background: rgba(248, 245, 238, 0.96);
}

[data-theme="light"] .lightbox-close,
[data-theme="light"] .lightbox-nav {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--clr-border);
  color: var(--text-primary);
}

[data-theme="light"] .particle {
  background: var(--gold-1);
}

[data-theme="light"] #contact::before {
  background: radial-gradient(circle, rgba(154, 111, 32, 0.07) 0%, transparent 70%);
}

[data-theme="light"] .case-overlay {
  background: linear-gradient(to top, rgba(248, 245, 238, 0.92) 0%, transparent 100%);
}

[data-theme="light"] .case-overlay-title {
  color: var(--gold-1);
}

[data-theme="light"] .case-overlay-sub {
  color: var(--text-secondary);
}

[data-theme="light"] .hero-overlay-accent {
  background: radial-gradient(ellipse at 70% 50%, rgba(154, 111, 32, 0.05) 0%, transparent 60%);
}

[data-theme="light"] .challenges-badge {
  background: var(--clr-bg-3);
  border-color: var(--clr-border);
}

[data-theme="light"] .gallery-item-overlay {
  background: rgba(248, 245, 238, 0.72);
}

[data-theme="light"] .gallery-item-overlay span {
  color: var(--gold-1);
}
/* ── INLINE SECTION GALLERY ───────────────────────────────── */
.section-extra-btn-container {
  text-align: center;
  margin-top: 40px;
}
.section-extra-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--gold-1);
  padding: 12px 24px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-extra-btn:hover {
  background: var(--gold-1);
  color: var(--clr-bg-1);
}
.section-exploded-gallery {
  display: none;
  columns: 3;
  column-gap: 16px;
  margin-top: 40px;
  animation: fadeIn 0.4s ease;
}
.section-exploded-gallery.active {
  display: block;
}
.section-exploded-gallery .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.section-exploded-gallery img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.section-exploded-gallery .gallery-item:hover img {
  transform: scale(1.03);
}

