/* =============================================
   CS ENTERTAINMENT — 
   Palette: Warm Beige / Deep Charcoal / Off-white
   ============================================= */
:root {
  --cream: #0A0A0A;
  --sand: #111111;
  --dark: #060606;
  --dark-2: #0D0D0D;
  --dark-3: #1A1A1A;
  --text-light: #F0EAD6;
  --text-mid: #A89878;
  --text-body: rgba(240, 234, 214, 0.72);
  --text-dim: rgba(240, 234, 214, 0.45);
  --text-dark: #F0EAD6;
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-glow: rgba(200, 169, 110, 0.18);
  --border-light: rgba(200, 169, 110, 0.14);
  --border-dark: rgba(200, 169, 110, 0.1);
  --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: none;
  border: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body.dark-bg .cursor {
  background: var(--gold);
}

body.dark-bg .cursor-follower {
  border-color: rgba(200, 169, 110, 0.4);
}

.cursor.hovering {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--gold);
}

body.dark-bg .cursor.hovering {
  border-color: var(--gold);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  mix-blend-mode: normal;
}

.navbar.scrolled {
  padding: 18px 60px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar .logo img {
  height: 38px;
  width: auto;
}

.navbar .logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.6);
  position: relative;
  transition: var(--transition-fast);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-item:hover {
  color: var(--text-light);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.45);
  padding: 10px 24px;
  transition: var(--transition-fast);
  background: transparent;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Mobile */
.mobile-toggle {
  display: none;
  cursor: none;
  color: var(--text-light);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

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

.mobile-menu .nav-cta {
  font-size: 0.85rem;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar {
    padding: 24px 30px;
  }

  .navbar.scrolled {
    padding: 16px 30px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 1000px;
}

.hero-eyebrow.section-tag {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.btn-outline-light {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.5);
  padding: 14px 32px;
  transition: var(--transition-fast);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-text:hover {
  color: var(--gold);
  gap: 16px;
}



/* ─── SECTION FUNDAMENTALS ─── */
.section-tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-headline em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--dark);
  padding: 0 60px;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-light);
}

.stat-cell {
  padding: 60px 50px;
  border-right: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.8s ease;
}

.stat-cell:hover::before {
  width: 100%;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.5);
  font-weight: 500;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 160px 60px;
  background: var(--cream);
  /* now resolves to #0A0A0A */
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}

.trust-graphic-container {
  width: 100%;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4), var(--dark));
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.trust-shield {
  width: 200px;
  height: 220px;
  position: absolute;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.1), rgba(200, 169, 110, 0.02));
  border: 1px solid rgba(200, 169, 110, 0.5);
  box-shadow: inset 0 0 40px rgba(200, 169, 110, 0.1);
  animation: floatShield 6s ease-in-out infinite;
}

.trust-shield::before {
  content: '';
  position: absolute;
  inset: 10px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  border: 1px dashed rgba(245, 240, 232, 0.3);
}

.trust-center-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(200, 169, 110, 0.5);
  animation: pulseGold 4s infinite;
}

.check-mark {
  width: 24px;
  height: 40px;
  border-bottom: 4px solid var(--dark);
  border-right: 4px solid var(--dark);
  transform: rotate(45deg) translate(-4px, -8px);
}

.trust-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.1);
}

.t-ring-1 {
  width: 320px;
  height: 320px;
  border-top-color: var(--gold);
  animation: spinRing 12s linear infinite;
}

.t-ring-2 {
  width: 440px;
  height: 440px;
  border-bottom-color: rgba(200, 169, 110, 0.6);
  border-left-color: rgba(200, 169, 110, 0.4);
  animation: spinRing 24s linear infinite reverse;
}

.t-ring-3 {
  width: 580px;
  height: 580px;
  border-top-color: var(--gold-light);
  border-right-color: rgba(200, 169, 110, 0.2);
  animation: spinRing 36s linear infinite;
}

.orbiting-stars {
  position: absolute;
  width: 440px; /* Aligns with ring 2 */
  height: 440px;
  animation: spinRing 24s linear infinite reverse;
}

.star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--text-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 15px var(--text-light);
}

.s1 { top: -6px; left: 50%; transform: translateX(-50%); }
.s2 { bottom: 25%; right: -6px; }
.s3 { bottom: 25%; left: -6px; }

@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 30px rgba(200, 169, 110, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 60px rgba(200, 169, 110, 0.8); transform: scale(1.05); }
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-image-wrap .float-badge {
  position: absolute;
  bottom: -30px;
  right: -40px;
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 30px 36px;
  text-align: center;
}

.float-badge .num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.float-badge .label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.55);
  margin-top: 6px;
  display: block;
}

.about-text .section-headline {
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-checklist {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.5;
}

.about-checklist li::before {
  content: '→';
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 36px;
  transition: var(--transition-fast);
  border: 1px solid var(--gold);
}

.btn-dark:hover {
  background: var(--gold-light);
  gap: 20px;
  border-color: var(--gold-light);
}

/* ─── SERVICES ─── */
.services-section {
  background: var(--dark);
  padding: 160px 60px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.services-header .section-tag {
  color: rgba(245, 240, 232, 0.45);
}

.services-header .section-tag::before {
  background: rgba(245, 240, 232, 0.45);
}

.services-header .section-headline {
  color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
  display: flex;
  flex-direction: column;
}

.service-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 30px;
  border: 1px solid var(--border-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-card:last-child {
  border-right: none;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.12);
  line-height: 1;
  margin-bottom: 36px;
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.service-card:hover .service-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-card p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 36px;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.service-card:hover .service-arrow {
  color: var(--gold);
  gap: 16px;
}

/* ─── SCROLL TRANSFORM VIDEO ─── */
.scroll-transform-section {
  position: relative;
  height: 300vh;
  background: var(--dark-2);
}

.scroll-transform-inner {
  position: sticky;
  top: 15vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sticky-video-wrap {
  position: relative;
  height: 70vh;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-video-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.video-overlay-text {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 70%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 40px 10%;
  pointer-events: none;
}

.video-overlay-text .section-tag {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.62rem;
}

.video-overlay-text .section-headline {
  color: #FFF;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.video-overlay-text p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── CONSTRUCTION BLUEPRINT TRACKER ─── */
.blueprint-tracker {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 20px 0;
}

.blueprint-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: rgba(240, 234, 214, 0.4);
}

.blueprint-labels span {
  transform: translateY(-50%);
}

.blueprint-labels span:last-child {
  transform: translateY(50%);
}

.blueprint-labels .mid-label {
  transform: translateY(0);
}

.blueprint-line {
  position: relative;
  width: 4px;
  background: repeating-linear-gradient(to bottom,
      transparent,
      transparent 8px,
      rgba(200, 169, 110, 0.2) 8px,
      rgba(200, 169, 110, 0.2) 9px);
  border-radius: 4px;
}

.blueprint-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: height 0.1s ease-out;
  z-index: 2;
}

.blueprint-nodes {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-50%);
  z-index: 3;
}

.node {
  width: 10px;
  height: 10px;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.node:last-child {
  transform: translateY(50%);
}

.node:nth-child(2) {
  transform: translateY(0);
}

/* ─── PORTFOLIO ─── */
.portfolio-section {
  background: var(--cream);
  padding: 160px 60px;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Asymmetric masonry grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1400px;
  margin: 80px auto 0;
}

/* Home Page specific grid override */
.home-portfolio-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: auto !important;
  gap: 30px;
}

.home-portfolio-grid .portfolio-item:first-child {
  grid-row: auto !important;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  border-radius: 32px;
}

.portfolio-item:first-child {
  grid-row: 1 / 3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

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

.portfolio-caption {
  display: none !important;
}

.portfolio-caption-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-caption h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

/* ─── ARTISTS CTA STRIP ─── */
.artists-strip {
  background: var(--dark-2);
  padding: 120px 60px;
}

.artists-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.artists-strip-left .section-tag {
  color: rgba(245, 240, 232, 0.4);
}

.artists-strip-left .section-tag::before {
  background: rgba(245, 240, 232, 0.4);
}

.artists-strip-left .section-headline {
  color: var(--text-light);
  max-width: 580px;
}

.services-header .section-lead,
.artists-strip p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ─── TESTIMONIALS SLIDER ─── */
.testimonials-section {
  background: var(--dark-2);
  padding: 180px 60px;
  position: relative;
  overflow: hidden;
}

/* ─── TESTIMONIAL DOUBLE MARQUEE ─── */
.testimonials-section {
  background: var(--dark-2);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-double-marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
}

.testi-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.testi-marquee-card {
  width: 420px;
  background: var(--dark);
  border: 1px solid var(--border-dark);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.testi-marquee-card:hover {
  border-color: var(--gold);
  background: #111;
  transform: translateY(-8px) scale(1.02);
}

.testi-marquee-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-meta {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testi-meta strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Row Specific Animations */
.row-left .testi-track {
  animation: testiScrollLeft 45s linear infinite;
}

.row-right .testi-track {
  animation: testiScrollRight 40s linear infinite;
}

@keyframes testiScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes testiScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .testi-marquee-card { width: 320px; padding: 30px; }
  .testimonial-double-marquee { gap: 20px; }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 30px;
  }
}

/* ─── BRANDS SECTION ─── */
.brands-section {
  background: #FDFBF7;
  /* Clean off-white background */
  padding: 120px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.brands-section .section-tag {
  color: var(--gold);
}

.brands-section .section-headline {
  color: #1A1A1A;
}

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

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-item {
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: #FFF;
  overflow: hidden;
}

.brand-item img {
  max-width: 140px;
  max-height: 50px;
  height: auto;
  width: auto;
  object-fit: contain;
  /* Force both white and colored SVGs to be black by default */
  filter: brightness(0);
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.brand-item.keep-original img {
  filter: none;
}

.brand-item span {
  position: absolute;
  bottom: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
  opacity: 0.4;
  transition: all 0.4s ease;
  font-weight: 600;
}

.brand-item:hover {
  background: #F9F7F2;
}

.brand-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.brand-item:hover span {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-item {
    height: 150px;
    padding: 25px;
  }

  .brand-item img {
    max-width: 100px;
  }
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--dark);
  padding: 240px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
}

.cta-bg-line:nth-child(2) {
  width: 850px;
  height: 850px;
}

.cta-section .section-tag {
  color: rgba(200, 169, 110, 0.5);
  justify-content: center;
  margin-bottom: 32px;
}

.cta-section .section-tag::before {
  background: rgba(200, 169, 110, 0.5);
}

.cta-section .section-headline {
  color: var(--text-light);
  margin-bottom: 36px;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.cta-section .btn-outline-light {
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
  padding: 100px 60px 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 80px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  margin-left: -32px;
}

.footer-brand .logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.5);
  margin-bottom: 28px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col a,
.footer-col li {
  font-size: 0.82rem;
  color: rgba(240, 234, 214, 0.5);
  transition: var(--transition-fast);
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(240, 234, 214, 0.3);
}

/* ─── SUBPAGE HERO ─── */
.page-hero {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 0 60px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245, 240, 232, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-top: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 900px) {
  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-hero-content {
  flex: 1 1 60%;
}

.page-hero-graphic {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 300px;
  align-items: center;
}

@media (max-width: 900px) {
  .page-hero-graphic {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
  }
}

/* ─── SERVICE NETWORK GRAPHIC ─── */
.service-network {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .service-network {
    transform: scale(0.8);
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .service-network {
    transform: scale(0.68);
  }
}

@media (max-width: 380px) {
  .service-network {
    transform: scale(0.58);
  }
}

.sn-center {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(200, 169, 110, 0.2), inset 0 0 20px rgba(200, 169, 110, 0.1);
  backdrop-filter: blur(4px);
}

.sn-center img {
  width: 55%;
  opacity: 0.95;
}

.sn-center::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  animation: snPulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.sn-lines-container {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 1;
}

.sn-line {
  position: absolute;
  top: 0; left: 0;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 169, 110, 0.5), transparent);
  transform-origin: 0% 50%;
}

.sn-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 30px;
  height: 4px;
  background: var(--text-light);
  border-radius: 2px;
  filter: blur(1.5px);
  animation: snDataTravel 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.sn-line:nth-child(2)::after { animation-delay: 0.4s; }
.sn-line:nth-child(3)::after { animation-delay: 1.1s; }
.sn-line:nth-child(4)::after { animation-delay: 2.2s; }
.sn-line:nth-child(5)::after { animation-delay: 0.9s; }
.sn-line:nth-child(6)::after { animation-delay: 1.6s; }

.sn-node-wrap {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
  position: absolute;
}

.sn-label {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.label-right { left: 18px; }
.label-left { right: 18px; text-align: right; }
.label-top { bottom: 18px; }
.label-bottom { top: 18px; }

@keyframes snDataTravel {
  0% { left: 10%; opacity: 0; }
  20% { opacity: 1; }
  60% { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

@keyframes snPulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.page-hero .section-headline {
  color: var(--text-light);
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .page-hero .section-headline span {
    white-space: normal !important;
  }
}

.page-hero .section-lead {
  color: rgba(240, 234, 214, 0.6);
}

.page-hero .section-tag {
  color: rgba(200, 169, 110, 0.7);
  margin-bottom: 36px;
}

.page-hero .section-tag::before {
  background: rgba(200, 169, 110, 0.7);
}

/* ─── CONTENT SECTIONS ─── */
.content-block {
  padding: 120px 60px;
  max-width: 100%;
}

.content-block.bg-dark {
  background: var(--dark);
}

.content-block.bg-cream {
  background: var(--cream);
}

.content-block.bg-sand {
  background: #0E0E0E;
}

.content-block-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
  margin-top: 70px;
}

.info-card {
  padding: 50px 40px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
  cursor: none;
}

.info-card:hover {
  background: rgba(200, 169, 110, 0.05);
}

.info-card .num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.info-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-light);
}

.info-card p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* Artist grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 70px;
}

/* ─── ARTIST PAGE ENHANCEMENTS ─── */
.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
  background: var(--dark-3);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.artist-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

/* Geometric Frame Accent */
.artist-card::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  z-index: 3;
  opacity: 0;
  transform: scale(1.1);
  transition: var(--transition-fast);
  pointer-events: none;
}

.artist-card:hover::before {
  opacity: 0.3;
  transform: scale(1);
}

/* Floating ID Tag */
.artist-tag-id {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  z-index: 4;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-left: 2px solid var(--gold);
}

.artist-card:hover .artist-tag-id {
  opacity: 1;
  transform: translateX(0);
}

.artist-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
}

.artist-card:hover .artist-overlay {
  transform: translateY(0);
  opacity: 1;
}

.artist-overlay h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.artist-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Decorative Background Texture for Sections */
.bg-texture-grid {
  background-image: radial-gradient(var(--border-dark) 1px, transparent 1px);
  background-size: 40px 40px;
}

.artist-header-accent {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 30px;
  display: block;
}

/* ─── REVEAL ANIMATIONS ─── */
/* ─── FLOATING ICONS (SVG DECORATORS) ─── */
.floating-icons-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ─── FLOATING LINE EMOJIS ─── */
.emoji-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.line-emoji {
  position: absolute;
  color: var(--gold);
  opacity: 0.35;
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

@keyframes floatIndividual {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -25px) rotate(8deg); }
  66% { transform: translate(-15px, 25px) rotate(-8deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Extended Scattering logic for higher density (up to 30 icons) */
.line-emoji:nth-child(1) { top: 5%; left: 5%; animation: floatIndividual 8s ease-in-out infinite; }
.line-emoji:nth-child(2) { top: 12%; left: 15%; animation: floatIndividual 12s ease-in-out infinite; }
.line-emoji:nth-child(3) { top: 8%; left: 25%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(4) { top: 18%; left: 35%; animation: floatIndividual 15s ease-in-out infinite; }
.line-emoji:nth-child(5) { top: 5%; left: 45%; animation: floatIndividual 9s ease-in-out infinite; }
.line-emoji:nth-child(6) { top: 15%; left: 55%; animation: floatIndividual 11s ease-in-out infinite; }
.line-emoji:nth-child(7) { top: 10%; left: 65%; animation: floatIndividual 14s ease-in-out infinite; }
.line-emoji:nth-child(8) { top: 20%; left: 75%; animation: floatIndividual 13s ease-in-out infinite; }
.line-emoji:nth-child(9) { top: 5%; left: 85%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(10) { top: 15%; left: 95%; animation: floatIndividual 12s ease-in-out infinite; }

.line-emoji:nth-child(11) { top: 40%; left: 8%; animation: floatIndividual 11s ease-in-out infinite; }
.line-emoji:nth-child(12) { top: 35%; left: 18%; animation: floatIndividual 14s ease-in-out infinite; }
.line-emoji:nth-child(13) { top: 45%; left: 28%; animation: floatIndividual 13s ease-in-out infinite; }
.line-emoji:nth-child(14) { top: 38%; left: 38%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(15) { top: 42%; left: 48%; animation: floatIndividual 12s ease-in-out infinite; }
.line-emoji:nth-child(16) { top: 35%; left: 58%; animation: floatIndividual 11s ease-in-out infinite; }
.line-emoji:nth-child(17) { top: 48%; left: 68%; animation: floatIndividual 14s ease-in-out infinite; }
.line-emoji:nth-child(18) { top: 40%; left: 78%; animation: floatIndividual 13s ease-in-out infinite; }
.line-emoji:nth-child(19) { top: 50%; left: 88%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(20) { top: 32%; left: 92%; animation: floatIndividual 12s ease-in-out infinite; }

.line-emoji:nth-child(21) { bottom: 5%; left: 10%; animation: floatIndividual 9s ease-in-out infinite; }
.line-emoji:nth-child(22) { bottom: 12%; left: 20%; animation: floatIndividual 15s ease-in-out infinite; }
.line-emoji:nth-child(23) { bottom: 8%; left: 30%; animation: floatIndividual 11s ease-in-out infinite; }
.line-emoji:nth-child(24) { bottom: 18%; left: 40%; animation: floatIndividual 13s ease-in-out infinite; }
.line-emoji:nth-child(25) { bottom: 5%; left: 50%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(26) { bottom: 15%; left: 60%; animation: floatIndividual 12s ease-in-out infinite; }
.line-emoji:nth-child(27) { bottom: 10%; left: 70%; animation: floatIndividual 14s ease-in-out infinite; }
.line-emoji:nth-child(28) { bottom: 20%; left: 80%; animation: floatIndividual 13s ease-in-out infinite; }
.line-emoji:nth-child(29) { bottom: 5%; left: 90%; animation: floatIndividual 10s ease-in-out infinite; }
.line-emoji:nth-child(30) { bottom: 15%; left: 98%; animation: floatIndividual 12s ease-in-out infinite; }

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    gap: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:first-child {
    grid-row: auto;
  }

  .artists-strip-inner {
    flex-direction: column;
  }

  .services-header,
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .services-section,
  .portfolio-section,
  .artists-strip,
  .cta-section,
  .content-block {
    padding-left: 30px;
    padding-right: 30px;
  }

  .stats-strip {
    padding: 0 30px;
  }

  .clients-header {
    padding: 0 30px;
  }

  .footer {
    padding: 80px 30px 40px;
  }

  .page-hero {
    padding: 0 30px 80px;
  }
}

@media (max-width: 768px) {
  /* Home portfolio grid mobile optimization */
  .home-portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .home-portfolio-grid .portfolio-item:nth-child(n+3) {
    display: none !important;
  }

  /* Global section spacing on mobile */
  .about-section,
  .services-section,
  .portfolio-section,
  .testimonials-section,
  .artist-carousel-section,
  .brands-section {
    padding: 60px 20px !important;
  }

  /* Compact Navbar */
  .navbar {
    padding: 16px 20px !important;
  }
  .navbar.scrolled {
    padding: 12px 20px !important;
  }
  .navbar .logo img {
    height: 28px !important;
  }
  .navbar .logo-text {
    font-size: 1.1rem !important;
    letter-spacing: 0.08em !important;
  }
  .navbar .logo {
    gap: 10px !important;
  }

  /* Stats strip */
  .stats-strip {
    padding: 0 20px !important;
  }
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    border: none !important;
  }
  .stat-cell {
    padding: 24px 16px !important;
    border: none !important;
    border-bottom: 1px solid var(--border-light) !important;
    text-align: center !important;
  }
  .stat-cell:nth-child(odd) {
    border-right: 1px solid var(--border-light) !important;
  }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) {
    border-top: 1px solid var(--border-light) !important;
  }
  .stat-num {
    font-size: 2.6rem !important;
    margin-bottom: 8px !important;
  }
  .stat-label {
    font-size: 0.65rem !important;
    letter-spacing: 0.1em !important;
  }

  /* Hero Section */
  .hero {
    min-height: 500px !important;
    height: 80vh !important;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
  }
  .hero-sub {
    font-size: 0.85rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 36px !important;
    padding: 0 10px !important;
  }

  .float-badge {
    right: 0 !important;
  }

  /* Scroll transform video wrap */
  .scroll-transform-inner {
    padding: 0 20px !important;
    gap: 0 !important;
  }
  .blueprint-tracker {
    display: none !important;
  }
  .sticky-video-wrap {
    height: 50vh !important;
  }
  .video-overlay-text {
    padding: 24px 20px 8% !important;
  }
  .video-overlay-text p {
    font-size: 0.9rem !important;
  }

  /* Artist carousel mobile height */
  .artist-carousel-grid {
    padding: 0 20px !important;
  }
  .artist-visual-stack {
    height: 400px !important;
  }

  /* Trust graphic container height limit */
  .trust-graphic-container {
    height: 300px !important;
    aspect-ratio: auto !important;
  }

  /* Custom cursor hiding and hover pointer resets */
  .cursor, .cursor-follower {
    display: none !important;
  }
  body, a, button, select, input, textarea, .portfolio-item, .service-card, .v-img, .portfolio-marquee-item {
    cursor: default !important;
  }
  a, button, select, input, textarea, [role="button"] {
    cursor: pointer !important;
  }
}

/* ─── MINI MARQUEE (FIXED) ─── */
.mini-marquee-section {
  background: var(--dark);
  padding: 40px 0;
  border-top: 1px solid var(--border-dark);
}
.mini-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.mini-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: miniMarqueeAnim 35s linear infinite;
}
.mini-marquee-track img {
  height: 22px;
  width: auto;
  opacity: 0.22;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.mini-marquee-track:hover { animation-play-state: paused; }
.mini-marquee-track img:hover { opacity: 0.7; }

@keyframes miniMarqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ARTIST CAROUSEL (FIXED) ─── */
.artist-carousel-section {
  background: var(--dark);
  padding: 160px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.artist-carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.artist-carousel-content {
  position: sticky;
  top: 160px;
}
.artist-carousel-content .section-tag { margin-bottom: 32px; }
.artist-carousel-content .section-headline { margin-bottom: 28px; }
.artist-carousel-content .section-lead { margin-bottom: 48px; max-width: 440px; }

.artist-visual-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  height: 700px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.v-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.v-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}
.v-img:hover { filter: grayscale(0%); }
.v-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.scroll-up { animation: scrollUpFix 25s linear infinite; }
.scroll-down { animation: scrollDownFix 25s linear infinite; }

@keyframes scrollUpFix {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDownFix {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@media (max-width: 1100px) {
  .artist-carousel-grid { grid-template-columns: 1fr; gap: 60px; }
  .artist-carousel-content { position: relative; top: 0; text-align: center; }
  .artist-carousel-content .section-lead { margin: 0 auto 40px; }
  .artist-visual-stack { height: 600px; }
}

/* ─── PORTFOLIO PAGE ─── */
.portfolio-page-section {
  padding: 160px 0 100px;
  background: var(--dark);
  overflow: hidden;
}

.portfolio-header {
  padding: 0 60px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-header .section-tag { color: var(--gold); justify-content: center; }
.portfolio-header .section-headline { color: var(--text-light); }

.portfolio-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.portfolio-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.portfolio-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: portfolioScroll 320s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.portfolio-marquee.reverse .portfolio-marquee-track {
  animation-direction: reverse;
}

.portfolio-marquee-item {
  width: 500px;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 40px; /* Rounded corners as requested */
  flex-shrink: 0;
  cursor: none;
}

.portfolio-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-marquee-item:hover img {
  transform: scale(1.15);
}

.portfolio-item-caption {
  display: none !important;
}

.portfolio-item-caption h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  color: #FFF;
}

.portfolio-item-caption span {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes portfolioScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Mobile portfolio marquee container setup (overridden below) */

/* ─── VIEW TOGGLE ─── */
.portfolio-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 6px;
  flex-shrink: 0;
  width: fit-content;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 32px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.view-btn.active {
  background: var(--gold);
  color: #111;
}
.view-btn svg { flex-shrink: 0; }

/* ─── MASONRY GRID VIEW ─── */
.portfolio-masonry-grid {
  display: none;
  columns: 4;
  column-gap: 20px;
  width: 100%;
  padding: 0 60px;
}
.portfolio-masonry-grid.visible {
  display: block;
}
.portfolio-carousel-container.hidden {
  display: none;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.masonry-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.masonry-item:hover img {
  transform: scale(1.06);
}
.masonry-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.masonry-item:hover .masonry-item-caption {
  opacity: 1;
}
.masonry-item-caption span {
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.masonry-item-caption h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
@media (max-width: 1100px) {
  .portfolio-masonry-grid { columns: 3; padding: 0 30px; }
}
@media (max-width: 768px) {
  .portfolio-header {
    align-items: center !important;
    text-align: center !important;
    padding: 0 20px !important;
    margin-bottom: 40px !important;
  }
  .portfolio-view-toggle {
    display: none !important;
  }
  .portfolio-masonry-grid {
    columns: 2 !important;
    padding: 0 20px !important;
  }
  .portfolio-carousel-container {
    display: none !important;
  }
}

/* =========================================
   LOCATIONS MAP (LEAFLET CSS OVERRIDES)
   ========================================= */
.locations-section {
  padding: 120px 5%;
  background: var(--dark);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container {
  width: 100%;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111; /* Fallback before tiles load */
  position: relative;
  z-index: 1; /* Keep leaflet controls below navbar */
}
.map-gesture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 10000;
}
.map-gesture-overlay.active {
  opacity: 1;
}
.map-gesture-overlay span {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 14px 28px;
  border-radius: 40px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

/* Custom Marker Styling */
.custom-gold-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  transition: transform 0.3s ease;
}
.custom-gold-marker:hover {
  transform: scale(1.2) translateY(-5px);
}

/* Custom Popup Styling */
.leaflet-popup-content-wrapper {
  background: var(--dark-grey) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(10px);
}

.leaflet-popup-tip {
  background: var(--dark-grey) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-top: none !important;
  border-left: none !important;
}

.leaflet-popup-content {
  margin: 20px !important;
}

.leaflet-popup-content h3 {
  color: var(--gold);
  margin: 0 0 8px 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.leaflet-popup-content p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.leaflet-container a.leaflet-popup-close-button {
  color: var(--gold) !important;
  padding: 8px !important;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: var(--cream) !important;
}

/* Map UI Overrides */
.leaflet-control-zoom a {
  background: var(--dark-grey) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover {
  background: var(--dark) !important;
  color: var(--cream) !important;
}
.leaflet-container .leaflet-control-attribution {
  background: rgba(18, 18, 18, 0.8) !important;
  color: rgba(255,255,255,0.5) !important;
  border-top-left-radius: 8px;
}
.leaflet-container .leaflet-control-attribution a {
  color: var(--gold) !important;
}

/* ─── CONTACT GRID (ABOUT PAGE) ─── */
.contact-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.contact-card-simple {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition);
}

.contact-card-simple:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.contact-card-simple h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-card-simple a,
.contact-card-simple p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
}

.contact-card-simple a:hover {
  color: var(--gold-light);
}

@media (max-width: 992px) {
  .contact-grid-simple {
    grid-template-columns: 1fr;
  }
}

/* ─── LIGHTBOX MODAL ─── */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  z-index: 99900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.portfolio-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-lightbox.active .portfolio-lightbox-content {
  transform: scale(1);
}
.portfolio-lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--border-light);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border-radius: 8px;
}
.portfolio-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--text-light);
  font-size: 2rem;
  cursor: none;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  line-height: 1;
}
.portfolio-lightbox-close:hover {
  color: var(--gold);
}
.portfolio-lightbox-caption {
  display: none;
}
.portfolio-lightbox-caption span {
  display: none;
}

/* ═══ WHATSAPP FLOATING BUTTON ═══ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  animation: wa-enter 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
  will-change: transform;
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  display: block;
  flex-shrink: 0;
}
.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(6px);
}
.whatsapp-fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-enter {
  from { opacity: 0; transform: scale(0.4) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-fab-tooltip { display: none; }
}

/* ==========================================
   ─── BLOG PAGE & INTERACTIVE MODAL ───
   ========================================== */
.blog-section {
  padding: 160px 60px 100px;
  background: var(--dark);
}
@media (max-width: 768px) {
  .blog-section {
    padding: 100px 20px 60px;
  }
}
.blog-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.05);
}
.blog-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}
.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.blog-meta span {
  color: rgba(245, 240, 232, 0.5);
}
.blog-card-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4;
  color: #FFF;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-content h3 {
  color: var(--gold);
}
.blog-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 24px;
  flex-grow: 1;
}
.read-more-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}
.blog-card:hover .read-more-btn {
  color: var(--gold);
}
.read-more-btn svg {
  transition: transform 0.3s ease;
}
.blog-card:hover .read-more-btn svg {
  transform: translateX(4px);
}

/* ─── BLOG MODAL ─── */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.blog-modal.active {
  opacity: 1;
  pointer-events: all;
}
.blog-modal-content {
  background: #141414;
  border: 1px solid var(--border-light);
  border-radius: 32px;
  width: 100%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}
.blog-modal.active .blog-modal-content {
  transform: translateY(0);
}
.blog-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.blog-modal-close:hover {
  background: var(--gold);
  color: #111;
  transform: rotate(90deg);
}
.blog-modal-body {
  padding: 60px;
}
@media (max-width: 768px) {
  .blog-modal-body {
    padding: 30px;
  }
  .blog-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}
.blog-modal-img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--border-light);
}
.blog-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #FFF;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .blog-modal-title {
    font-size: 1.6rem;
  }
}
.blog-modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
}
.blog-modal-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  color: #FFF;
  margin: 35px 0 15px;
  font-weight: 600;
}
.blog-modal-text p {
  margin-bottom: 20px;
}
.blog-modal-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #FFF;
}
.blog-modal-text ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.blog-modal-text li {
  margin-bottom: 10px;
  list-style-type: square;
}
.blog-modal-text strong {
  color: var(--gold);
}