/* Fonts imported via HTML */

:root {
  --font-headings: 'Bodoni Moda', serif;
  --font-body: 'Work Sans', sans-serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --brand-gold: #D4AF37;
  --brand-cyan: #00CED1;
  --dark-bg: #0F0F0F;
  --dark-bg-alt: #1A1A1A;
  --card-bg: #141414;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --bg-primary: #FAFAF8;
  --bg-secondary: #F5F3EF;
  --bg-card: #FFFFFF;
  --cream-bg: #FAF9F6;
  --light-cream: #F5F5DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-bg);
  color: #111;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .brand-name {
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none;
}

.hero-title {
  font-style: italic;
}

.brand-right a {
  font-family: var(--font-body) !important;
  letter-spacing: 0.2em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.gold-text {
  color: var(--brand-gold);
}

img {
  max-width: 100%;
  height: auto;
}

.cyan-text {
  color: var(--brand-cyan) !important;
}

.split-text span {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.15em;
  padding: 0.1em 0.15em 0.1em 0; /* Added horizontal padding to prevent clipping */
}

.split-text span em {
  display: block;
  transform: translateY(120%);
  transition: transform 0.9s ease;
  transition-delay: inherit;
  will-change: transform;
}

.split-text span:last-child em {
  color: var(--brand-gold);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream-bg);
  z-index: 999;
  animation: fadeOut 1.2s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==================== */
/* NAVBAR - DESKTOP     */
/* ==================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s var(--ease-strong);
}

@media (min-width: 1024px) {
  .navbar {
    position: absolute;
    top: 30px;
    right: 30px;
    left: auto;
    width: fit-content;
    max-width: 90%;
    padding: 0 30px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* Restore border */
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
}

/* .navbar.scrolled {
  top: 15px;
  width: 85%;
  height: 70px;
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
} */

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-pop);
}

.logo:hover {
  transform: scale(1.05);
}

.brand-left {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-center {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #111;
}

.brand-tagline {
  font-size: 13px;
  color: #555;
}

.brand-sub {
  font-size: 11px;
  color: #777;
}

.brand-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand-right a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-cyan);
  position: relative;
  transition: all 0.3s ease;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-right a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-cyan));
  transition: width 0.4s var(--ease-soft);
}

.brand-right a:hover::after,
.brand-right a.active::after {
  width: 100%;
}

.brand-right a:hover,
.brand-right a.active {
  color: var(--brand-gold);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.brand-logo-fixed {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1001;
  display: block;
}

.brand-logo-fixed .logo {
  height: 60px;
  /* Increased size for better visibility */
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  display: block;
}

.hero-scroll {
  text-decoration: none;
  cursor: pointer;
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */

.hero {
  height: 100vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #000;
}

@media (min-width: 1024px) {
  .hero {
    height: 100vh;
  }
}


/* 1. Background Blur Layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-layer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.4);
  transform: scale(1.15);
  /* Slightly larger start */
  opacity: 0;
  transition: opacity 1.8s var(--ease-soft), transform 8s linear;
  /* Continuous slow movement */
}

.hero-bg-layer img.active {
  opacity: 1;
  transform: scale(1.05);
  /* Slow zoom out effect while active */
}

/* 2. Main Image Layer (No Crop) */
.hero-main-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Subtle overlay to ensure text readability */
.hero-main-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

.hero-main-layer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.1);
  /* Start zoomed in */
  transition:
    opacity 1.5s var(--ease-soft),
    filter 1.5s ease-out,
    transform 7s ease-out;
  /* Slow continuous zoom out */
}

.hero-main-layer img.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition: opacity 3s var(--ease-soft), filter 2s ease-out, transform 8s ease-out;
  /* Extended luxury fade */
}

/* Content sits on top */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5% 100px;
  pointer-events: none;
  /* Let clicks pass through to image if needed, but mostly for text selection */
}

.hero-text {
  max-width: 900px;
  transition: opacity 3s ease-in-out;
  opacity: 0;
  pointer-events: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Enhance readability over images */
}

.hero-text.visible {
  opacity: 1;
}

.hero-text.hidden {
  opacity: 0;
}

.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  /* Sophisticated small footprint */
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(35px, 6vw, 75px);
    /* Further reduced for luxury */
    line-height: 1.05;
  }
}

.hero-title span {
  display: block;
}

.gold-segment {
  color: var(--brand-cyan);
}

.cyan-segment {
  color: var(--brand-gold);
}

.hero-subtitle {
  font-family: 'Bodoni Moda', serif;
  font-size: 18px;
  /* Sophisticated small footprint */
  line-height: 1.8;
  color: #FFFFFF;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  color: var(--brand-cyan);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand-gold), transparent);
  animation: scrollLine 2s infinite;
}

.hero-scroll span {
  font-family: 'Bodoni Moda', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .hero-scroll span {
    font-family: 'Bodoni Moda', serif;
    font-size: 16px;
    letter-spacing: 0.5em;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==================== */
/* SECTIONS - DESKTOP   */
/* ==================== */

.section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 100px;
  }
}

.section-divider {
  height: 2px;
  width: 100%;
  background-color: var(--brand-cyan);
  opacity: 1;
  margin: 0;
}

.golden-separator {
  width: 100%;
  height: 2px;
  background-color: var(--brand-cyan);
  border: none;
  margin: 0;
}

.section h2,
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.01em !important; /* Reduced for better serif kerning consistency */
  color: var(--brand-gold);
  line-height: 1.1;
  display: table;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-transform: none; /* Changed from uppercase to allow natural casing */
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  font-kerning: normal;
}

.section h2::after,
.section-title::after {
  display: none !important;
}

.section p,
.section-intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: 18px;
  color: var(--brand-gold);
  line-height: 1.8;
}

#about {
  position: relative;
  background-color: #EFECE5;
  /* Lighter sand matching the scheme */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.section.dark {
  background: var(--dark-bg);
  color: #fff;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section.dark h2 {
  color: #fff;
}

#contact .split-text span:first-child em {
  color: var(--brand-cyan);
}

/* =====================
   FOOTER (FIXED)
 ===================== */
.footer {
  background: #000;
  color: #fff;
  padding: 6rem 5% 2rem;
  border-top: 1px solid rgba(191, 149, 63, 0.3);
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #888;
  line-height: 1.6;
  max-width: 350px;
}

.footer-links h4,
.footer-social h4 {
  color: #BF953F;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 1.2rem;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.footer-links ul li a:hover {
  color: #BF953F;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  height: 30px;
  filter: invert(1);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 1;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #555;
  font-size: 0.8rem;
}

/* ==================== */
/* VIDEO SHOWCASE - NEW */
/* ==================== */

.video-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.video-section.video-showcase {
  height: 55vh;
  min-height: 350px;
}

@media (min-width: 1024px) {
  .video-section.video-showcase {
    height: 90vh;
    min-height: 550px;
    max-height: 950px;
  }
}

.video-showcase-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.showcase-video.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Reduced Cinematic Vignette */
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Material Hotspots */
.hotspot-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hotspot:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: scale(1.2);
}

.hotspot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.8);
    animation: hotspot-pulse 2s infinite;
}

@keyframes hotspot-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Material Dialogue Box */
.material-dialogue {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 20px;
    z-index: 3000;
    max-width: 400px;
    width: 90%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.material-dialogue.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.material-dialogue h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}

.material-dialogue p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.material-dialogue .close-dialogue {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.material-dialogue .close-dialogue:hover {
    opacity: 1;
}

.dialogue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dialogue-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  max-width: 320px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  opacity: 0.8;
}

.video-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--brand-gold);
  margin-bottom: 12px;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-description {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.video-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.video-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: none;
}

.video-nav-btn:hover {
  background: var(--brand-gold);
  color: #000;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: rotate(90deg);
}

.video-nav-btn svg {
  width: 20px;
  height: 20px;
}

.video-dots {
  display: flex;
  gap: 12px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--brand-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 0 4px;
  box-shadow: none;
}

.video-dot.active {
  background: var(--brand-gold);
  box-shadow: 0 0 10px var(--brand-gold);
  transform: scale(1.2);
  width: 8px;
}

.video-dot:hover {
  background: var(--brand-gold);
  transform: scale(1.2);
}


/* ==================== */
/* SERVICES SECTION     */
/* ==================== */

.services {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s var(--ease-pop);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.card-number {
  position: absolute;
  top: 32px;
  right: 8px;
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  pointer-events: none;
  transition: all 0.6s var(--ease-soft);
  z-index: 1;
}

.service-card:hover .card-number {
  color: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px; /* Matched to process card */
  font-weight: 700;
  font-style: normal; /* Removed italic */
  margin-bottom: 20px;
  color: var(--brand-gold);
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid var(--brand-cyan); /* Unified thickness */
  padding-bottom: 4px; /* Matched padding */
  position: relative;
  z-index: 2;
  letter-spacing: normal; /* Removed negative spacing */
}

.services-grid .service-card:first-child h3 {
  transform: translateX(-6px);
}

.service-card h3::after {
  display: none; /* Removed old pseudo-element line */
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  font-style: normal; /* Removed italic */
  font-weight: normal; /* Removed bold-ish weight */
}

/* STAGGERED IMAGE GRID */
.service-images {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.service-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.5s var(--ease-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Creating the asymmetrical staggered look */
.service-images img:nth-child(even) {
  transform: translateY(20px);
}

.service-images img:nth-child(odd) {
  transform: translateY(-10px);
}

.service-images img:hover {
  transform: scale(1.1) translateY(0) !important;
  z-index: 5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ==================== */
/* REFERENCES SECTION   */
/* ==================== */

.references {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  padding: 100px 0;
}

.reference-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reference-grid {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.reference-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  background: #eee;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s var(--ease-pop);
}

.reference-item.tall {
  grid-row: span 2;
  height: 672px;
  /* 320 * 2 + 32 gap */
}

.reference-item.wide {
  grid-column: span 2;
}

.reference-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}

.reference-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease-soft);
  z-index: 2;
}

.ref-category {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.ref-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.reference-item:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.15);
}

.reference-item:hover img {
  transform: scale(1.1);
}

.reference-item:hover .reference-info {
  transform: translateY(0);
  opacity: 1;
}

/* Entrance Animation Stagger */
.reference-item.show:nth-child(2) {
  transition-delay: 0.1s;
}

.reference-item.show:nth-child(3) {
  transition-delay: 0.2s;
}

.reference-item.show:nth-child(4) {
  transition-delay: 0.3s;
}

/* ==================== */
/* CLIENTS SECTION      */
/* ==================== */

.clients {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  text-align: center;
  overflow: hidden;
  /* Hide overflow from marquee */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients .section-title {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.clients .section-title::after {
  display: none !important;
}

.clients-subtitle {
  margin-top: 48px;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
  color: var(--brand-gold) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.95;
  position: relative;
  display: table;
  padding-bottom: 8px;
}

.clients-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-cyan);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /* Add fade masks */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
  /* Animation for 2 sets (Direct Clients) - moves 50% */
  animation: scroll-half 60s linear infinite;
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .marquee-track {
    gap: 120px;
    padding: 30px 0;
  }
}

/* Indirect Clients has 3 sets, needs different scroll distance */
.clients .marquee-container:nth-of-type(2) .marquee-track {
  animation: scroll-half 60s linear infinite reverse;
  /* Reverse direction for variety */
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-half {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-third {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .clients-grid {
    gap: 50px;
  }
}

.client-item img {
  height: 60px;
  /* Slightly larger premium size */
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* No grayscale as per user request */
  opacity: 0.85;
  /* Slight opacity for elegance */
  filter: contrast(1.05);
  /* Enhance visual pop */
}

.client-item:hover img {
  transform: scale(1.15);
  opacity: 1;
}

.client-item span {
  display: none;
  /* Hide any text spans if they existed */
}

/* ==================== */
/* ABOUT STORY SECTION  */
/* ==================== */

.about-story {
  padding: 120px 0;
  background-color: #EAE6DA;
  /* Intensified sand matching services-hero */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.story-content {
  max-width: 600px;
}

.about-story .section-title {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.about-story .section-title::after {
  display: none !important;
}

.story-lead {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-cyan) !important;
  margin-bottom: 24px;
  font-weight: 600;
}

.story-main-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  /* Clean contrast on beige */
  margin-bottom: 24px;
}

.story-visuals {
  position: relative;
  height: 600px;
}

.parallax-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 1s var(--ease-soft);
}

.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1 {
  width: 70%;
  height: 400px;
  top: 0;
  right: 0;
  z-index: 1;
}

.img-2 {
  width: 60%;
  height: 350px;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 8px solid var(--bg-secondary);
}

/* Stats Section */
.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1400px;
  margin: 100px auto 0;
  padding: 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
}

/* Scroll Animations */
.parallax-img.show.img-1 {
  transform: translateY(-20px);
}

.parallax-img.show.img-2 {
  transform: translateY(30px);
}

#about-story {
  scroll-margin-top: 100px;
}

/* ==================== */
/* CONTACT SECTION - NEW */
/* ==================== */

#contact {
  background-color: #EAE6DA;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  color: #111;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

#contact.show {
  opacity: 1;
  transform: translateY(0);
}

#contact .material-symbols-outlined {
  color: #00CED1;
}

.contact-form {
  margin-top: 48px;
  max-width: 520px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 0;
  margin-bottom: 8px;
  color: #111;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--brand-gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 24px;
  padding: 16px 40px;
  border: none;
  background: var(--brand-gold);
  color: #000;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #e5c44a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* ==================== */
/* CONTACT INFO - NEW   */
/* ==================== */

.contact-info-section {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  color: #111;
  padding: 100px 80px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-info-section.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-info-section .section-title {
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.contact-info-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 500px;
}

.contact-info-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(24px) translateZ(0); /* Hardware accelerate */
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity; /* Hint browser */
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-gold), #c9a227);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  color: #000;
}

.contact-card h4 {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-card-content {
  font-size: 24px;
  line-height: 1.6;
  color: #111;
}

.contact-card a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-card a:hover {
  color: var(--brand-gold);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-person-name {
  font-weight: 500;
  color: #555;
  min-width: 70px;
}

.contact-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-cta-text {
  font-size: 24px;
  font-weight: 600;
  color: #111;
}

.contact-cta-text span {
  color: var(--brand-gold);
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--brand-gold);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  background: #e5c44a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

/* Legacy support */
.contact-info {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-block {
  background: var(--card-bg);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.contact-block.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-block h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.contact-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.contact-block a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--brand-gold);
}

/* ==================== */
/* SERVICES PAGE        */
/* ==================== */

.services-hero {
  padding-top: 200px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
  background-color: #EAE6DA;
  /* Slightly deeper sand for stronger effect */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.services-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .services-hero h1 {
    font-size: 16px;
  }
}

.services-main-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--brand-gold);
}

.services-main-title span {
  color: var(--brand-gold);
}

.services-hero-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #000;
}

.services-process {
  position: relative;
  padding: 120px 80px;
  background-color: #F7F5F0;
  /* Clean sand base */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  overflow: hidden;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 60px 40px;
  border-radius: 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s var(--ease-pop);
  display: flex;
  flex-direction: column;
  transform: translateZ(0); /* Hardware accelerate */
  will-change: transform, box-shadow; /* Hint browser */
}

.service-process-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
}

.service-process-card:hover .service-process-icon {
  transform: scale(1.1) rotate(-5deg);
  color: #c5a02b;
  /* Slightly deeper gold on hover */
}

.process-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  transition: all 0.6s var(--ease-soft);
}

.service-process-card:hover .process-number {
  color: rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.service-process-icon {
  margin-bottom: 32px;
  color: var(--brand-gold);
  width: 48px;
  height: 48px;
  transition: all 0.6s var(--ease-soft);
}

.service-process-icon svg {
  width: 100%;
  height: 100%;
}

.service-process-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brand-gold);
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid var(--brand-cyan);
  padding-bottom: 4px;
}

.service-process-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.services-section-header {
  max-width: 680px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.services-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
  order: -1;
}

.services-section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brand-gold);
  display: inline-block;
  width: fit-content;
  padding-bottom: 15px;
}

.services-section-title span {
  color: var(--brand-gold);
}

.services-section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
}

/* ==================== */
/* STRENGTHS SECTION    */
/* ==================== */

.our-strengths-section {
  padding: 140px 80px;
  background-color: #F3F0E8;
  /* Slightly varied sand for depth */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  color: #111;
}

.our-strengths-section h2 {
  text-align: center;
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 120px;
  color: var(--brand-gold);
  line-height: 1.1;
}

.strength-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 160px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.strength-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.strength-text {
  padding: 0 40px;
}

.strength-text h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
  color: var(--brand-gold);
  border-bottom: 1px solid var(--brand-cyan);
  display: inline-block;
  width: fit-content;
  padding-bottom: 8px;
}

.strength-highlight {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-cyan) !important;
  margin-top: 12px;
}

.strength-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

.strength-img {
  position: relative;
  z-index: 1;
}

.strength-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  transition: all 0.5s var(--ease-pop);
}

.strength-block:hover .strength-img img {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.2);
}

/* Overlapping decorative element */
.strength-img::after {
  content: none;
  display: none;
}

.strength-block.reverse .strength-img::after {
  content: none;
  display: none;
}

.strength-block:hover .strength-img::after {
  display: none;
}

/* REMOVED: Scoped override for cyan text in services - users want cyan numbers */
/* .services-page .cyan-text {
  color: #000 !important;
} */

/* ==================== */
/* GALLERY PAGE         */
/* ==================== */

.gallery-body {
  background-color: #EFECE5;
  /* Updated sand to match other sections */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  min-height: 100vh;
}

.gallery-page {
  padding-top: 110px;
  position: relative;
  z-index: 1;
}

.portfolio-controls-container {
  max-width: 900px;
  margin: 40px auto 60px;

  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
  top: auto;
  z-index: 100;
}

.filter-container,
.dropdown-container {
  background-color: rgba(255, 255, 255, 0.45);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  width: fit-content;
}

.filter-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.4s var(--ease-soft);
}

.filter-btn.active {
  background: var(--brand-gold);
  color: white;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.filter-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

/* ==================== */
/* PORTFOLIO CONTROLS   */
/* ==================== */

.portfolio-controls-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* SEARCH CONTAINER */
.search-container {
  position: relative;
  width: 280px;
}

.search-container input {
  width: 100%;
  padding: 14px 45px 14px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  color: var(--brand-gold);
  font-family: 'Bodoni Moda', serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  transition: all 0.4s var(--ease-soft);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-container input:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
  transform: translateY(-2px);
}

.search-container input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
}

.search-container .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gold);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-container input:focus+.search-icon {
  opacity: 1;
}

/* ==================== */
/* PREMIUM DROPDOWN     */
/* ==================== */

.gallery-company-select {
  position: relative;
  width: fit-content;
  z-index: 101;
  /* Higher than filters */
}

.selected-company {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-gold);
  padding: 16px 48px 16px 32px;
  background: rgba(255, 255, 255, 0.9);
  min-width: 300px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.selected-company:hover {
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
  transform: translateY(-2px);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s var(--ease-strong);
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}

.dropdown-options.show {
  max-height: 400px;
  /* Scrollable area */
  opacity: 1;
  visibility: visible;
  padding: 12px 0;
  overflow-y: auto;
}

/* Custom Scrollbar for dropdown */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: var(--brand-gold);
}

.dropdown-item {
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #000;
  padding-left: 36px;
  border-left-color: var(--brand-gold);
}

.dropdown-item.active {
  background: var(--brand-gold);
  color: #fff;
  border-left-color: transparent;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 8px;
  height: 8px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  transition: transform 0.4s var(--ease-pop);
  margin-top: -3px;
}

.gallery-company-select.active .select-arrow {
  transform: translateY(-50%) rotate(225deg);
  margin-top: 3px;
}

/* Gallery Image Item (Curated) */
.gallery-image-item {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-pop) forwards;
}

.gallery-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}

.gallery-image-item:hover img {
  transform: scale(1.05);
}

.gallery-image-item .fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-image-item:hover .fullscreen-btn {
  opacity: 1;
}

.gallery-image-item.hide {
  display: none;
}

/* ==================== */
/* PROJECT OVERLAY      */
/* ==================== */

.project-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 0;
  z-index: 20000;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-strong);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.project-overlay.active {
  transform: translateY(0);
}

.project-overlay-header {
  position: relative;
  top: 0;
  width: 100%;
  background: transparent !important;
  padding: 40px 5%;
  text-align: center;
  z-index: 20005;
  margin-bottom: 20px;
  pointer-events: none;
}

.project-header-inner {
  display: inline-block;
  background: var(--brand-gold);
  padding: 10px 40px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  pointer-events: auto;
}

.project-overlay-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-soft);
  z-index: 20010;
  font-family: 'Bodoni Moda', serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.project-overlay-close::before {
  content: '×';
  font-size: 32px;
  font-weight: 400;
  margin-top: -4px;
}

.project-overlay-close svg {
  display: none;
}

.project-overlay-close:hover {
  background: var(--brand-gold);
  color: #000;
  transform: scale(1.05);
}

.project-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-back-btn:hover {
  color: var(--brand-gold);
  gap: 8px;
  /* Move text closer/icon moves */
}

.project-back-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.project-back-btn:hover svg {
  transform: translateX(-4px);
}

.project-overlay-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: #000 !important;
  font-style: italic;
  margin-bottom: 0px;
  line-height: 1.1;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.3s var(--ease-pop);
}

.project-overlay.active .project-overlay-title {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay-content {
  padding: 60px 5%;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.project-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

@media (max-width: 1200px) {
  .project-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Initial State for Staggered Reveal: Consolidated base styles */
.project-img-wrapper.reveal-ready {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 1.2s var(--ease-strong), transform 1.2s var(--ease-strong), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Revealed State: Cinematic Slide & Fade */
.project-img-wrapper.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-overlay-grid .project-item {
  aspect-ratio: 16 / 10;
}

.project-img-wrapper {
  width: 100%;
  height: 100%;
}

.project-img-wrapper img,
.project-img-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.5s var(--ease-soft);
  display: block;
}

.project-img-wrapper .media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-img-wrapper:hover .media-overlay {
  opacity: 1;
}

.media-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0b1f26;
  background: var(--brand-gold);
  padding: 6px 10px;
  border-radius: 999px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-img-wrapper:hover .play-overlay {
  opacity: 1;
}

.play-overlay .play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay .play-button svg {
  width: 28px;
  height: 28px;
  color: var(--brand-cyan);
}

.project-img-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  /* Golden Glow Selection */
  border-color: rgba(212, 175, 55, 0.4);
}

.project-img-wrapper:hover img {
  transform: scale(1.08);
  /* Sophisticated Zoom on content */
}


/* Expand Button (Luxurious Style) */
.project-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
}

.project-img-wrapper:hover .project-expand-btn {
  opacity: 1;
  transform: translateY(0);
}

.project-expand-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #000;
  transform: scale(1.1);
}


.project-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 40%);
  opacity: 0.5;
  transition: opacity 0.6s ease;
  pointer-events: none;
  /* Allow clicking video controls */
}

.project-overlay-info {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 700;
  display: block;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .project-overlay-grid {
    grid-template-columns: 1fr;
  }

  .project-overlay-title {
    font-size: 20px;
  }
}

/* Original Gallery Select - Hide Native parts but keep container for layout if needed, 
   but we rewrote the CSS above to override. 
   Deleting or Overwriting old block below to avoid conflict */

.gallery-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  transition: all 0.6s var(--ease-soft), border-color 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .gallery-card.wide {
    grid-column: span 1;
  }
}

.gallery-card.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card.hide {
  display: none;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft), opacity 0.5s ease;
}

.gallery-card video {
  opacity: 0.85;
}

.gallery-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover img,
.gallery-card:hover video {
  transform: scale(1.05);
  opacity: 1;
}

/* Video Badge */
.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #fff;
  font-size: 12px;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-soft);
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.card-info {
  transform: translateY(20px);
  transition: transform 0.6s var(--ease-soft);
  width: 100%;
}

.gallery-card:hover .card-info {
  transform: translateY(0);
}

.card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.card-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  color: #fff;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

.view-project-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  box-shadow: none;
}

.view-project-btn:hover {
  background: var(--brand-gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ==================== */
/* PURE PROJECT MODE    */
/* ==================== */

.project-mode .card-info,
.project-mode .view-project-btn {
  display: none !important;
}

.gallery-lightbox.project-view-active .lightbox-view-project {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== */
/* LIGHTBOX             */
/* ==================== */

.service-lightbox,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  /* Increased to stay above project-overlay (20000) */
  backdrop-filter: blur(10px);
}

.service-lightbox.show {
  display: grid;
  place-items: center;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 90vw;
  max-height: 85vh;
}

.gallery-lightbox .lightbox-image {
  max-width: 95vw !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-soft);
}

.gallery-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-view-project {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-soft);
  z-index: 10;
  pointer-events: none;
}

.gallery-lightbox.active .lightbox-view-project {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition-delay: 0.3s;
}

.service-lightbox button.lightbox-close,
.gallery-lightbox button.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-soft);
  z-index: 30010;
  font-family: 'Bodoni Moda', serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.service-lightbox button.lightbox-close::before,
.gallery-lightbox button.lightbox-close::before {
  content: '×';
  font-size: 32px;
  font-weight: 400;
  margin-top: -4px;
}

.service-lightbox button.lightbox-close svg,
.gallery-lightbox button.lightbox-close svg {
  display: none;
}

.service-lightbox button.lightbox-close:hover,
.gallery-lightbox button.lightbox-close:hover {
  background: var(--brand-gold);
  color: #000;
  transform: scale(1.05);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30010;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s var(--ease-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
  background: var(--brand-gold);
  color: #000;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .service-lightbox button,
  .gallery-lightbox button.lightbox-close {
    top: 20px;
    right: 20px;
  }
}

/* Removed conflicting legacy lightbox-close styles to ensure Velvet & Gold design applies */
/* Legacy overrides removed to support Velvet & Gold design */

.service-lightbox .lightbox-image {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-lightbox .lightbox-nav {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-lightbox .lightbox-prev {
  top: 50%;
  left: calc(50% - 40vw - 40px);
  right: auto;
  transform: translateY(-50%);
  z-index: 30040;
}

.service-lightbox .lightbox-next {
  top: 50%;
  left: calc(50% + 40vw + 40px);
  right: auto;
  transform: translateY(-50%);
  z-index: 30040;
}

@media (max-width: 768px) {
  .service-lightbox .lightbox-prev {
    left: calc(50% - 45vw - 24px);
  }

  .service-lightbox .lightbox-next {
    left: calc(50% + 45vw + 24px);
  }
}
  
.journey-header h2 {
  display: table;
  margin: 0 auto 16px;
  position: relative;
  padding-bottom: 15px;
}

.journey-header h2::after {
  display: none !important;
}


/* ==================== */
/* FOOTER - DESKTOP     */

.footer-nav {
  background-color: #EAE6DA;
  /* Mastery textured sand */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  padding: 100px 40px 50px;
  border-top: 2px solid var(--brand-cyan);
  box-shadow: 0 -10px 30px rgba(0, 206, 209, 0.1);
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 24px;
  display: block;
}

.footer-nav .contact-icon svg,
.footer-nav .contact-icon svg path,
.footer-nav .contact-icon svg circle,
.footer-nav .contact-icon svg polyline {
  stroke: var(--brand-cyan) !important;
}

.footer-nav .contact-item .contact-icon svg *,
.footer-nav .contact-item .contact-icon svg {
  stroke: var(--brand-cyan) !important;
  fill: none !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  color: #111;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.footer-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand-gold);
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.footer-cta-btn:hover {
  background: var(--brand-cyan);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
}

.footer-links {
  color: #111;
}

.footer-links h4 {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--brand-gold);
    position: relative;
    display: inline-block;
  }

  .footer-logo-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px; /* Limit width to force paragraph style */
  }

  .contact-icon {
    flex-shrink: 0;
    margin-top: 4px; /* Move icon down to align with text */
    color: var(--brand-cyan);
    font-weight: bold;
    font-size: 16px;
  }

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: var(--brand-cyan);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  font-size: 15px;
  color: #333 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-cyan) !important;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 2px solid var(--brand-cyan);
  text-align: center;
}

.copyright {
  font-size: 13px;
  letter-spacing: 1px;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-text {
  font-size: 11px;
  color: #444;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.whatsapp {
  display: none !important;
}

@media (max-width: 900px) {

  /* GLOBAL MOBILE FIXES */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* NAVBAR MOBILE */
  .navbar {
    height: auto;
    min-height: 50px;
    padding: 8px 0;
    position: fixed;
    top: 12px;
    right: 12px;
    left: auto;
    width: auto;
    max-width: calc(100% - 24px);
    z-index: 10001;
    background: transparent;
    backdrop-filter: none;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    order: 1;
    z-index: 10002;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
  }

  /* MOBILE MENU STYLES */
  .mobile-menu {
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    display: none !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 9998;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: #ffffff;
    color: var(--brand-gold);
  }

  /* LOGO MOBILE */
  .brand-logo-fixed {
    top: 12px;
    left: 12px;
    height: 40px;
    width: auto;
    z-index: 10001;
  }

  .brand-logo-fixed .logo {
    height: 40px;
    width: auto;
  }

  /* HERO MOBILE */
  .hero {
    height: 60vh;
    min-height: 380px;
    padding-top: 0;
  }

  .hero-content {
    padding: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: -0.02em;
  }

  .hero-title span {
    display: block;
    margin-bottom: 4px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-scroll {
    bottom: 60px !important;
    gap: 8px;
    opacity: 0.6;
  }

  .scroll-line {
    height: 35px !important;
  }

  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  /* VIDEO SECTION MOBILE */
  .video-section.video-showcase {
    height: 50vh;
    min-height: 320px;
  }

  .video-content {
    bottom: 60px;
    top: auto;
    left: 16px;
    right: 16px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    z-index: 5;
  }

  .video-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--brand-gold);
  }

  .video-title {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1.2;
    font-weight: 700;
  }

  .video-description {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .video-controls {
    bottom: 20px;
    right: 16px;
    left: auto;
    gap: 10px;
    z-index: 10;
  }

  .video-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--brand-gold);
  }

  .video-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .video-dot {
    width: 6px;
    height: 6px;
    margin: 0 2px;
  }

  /* SECTIONS MOBILE */
  .section {
    padding: 40px 16px;
    text-align: left;
  }

  .section h2,
  .section-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    word-wrap: break-word;
  }

  .section p,
  .section-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
  }

  .section-divider {
    margin: 0 16px;
    height: 1px;
  }

  /* SERVICES GRID MOBILE */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .service-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }

  .service-card h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 15px;
    color: var(--brand-gold);
    display: inline-block;
    width: fit-content;
    border-bottom: 1px solid var(--brand-cyan);
    padding-bottom: 4px;
    letter-spacing: normal;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: normal;
  }

  .card-number {
    font-size: 32px;
    top: 16px;
    right: 16px;
  }

  .service-images {
    gap: 10px;
    margin-top: auto;
  }

  .service-images img {
    border-radius: 12px;
    aspect-ratio: 1;
  }

  .service-images img:nth-child(even),
  .service-images img:nth-child(odd) {
    transform: translateY(0) !important;
  }

  /* REFERENCE GRID MOBILE */
  .reference-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .reference-item {
    height: 200px;
    border-radius: 12px;
  }

  .reference-item.tall {
    grid-row: span 1;
    height: 200px;
  }

  .reference-item.wide {
    grid-column: span 1;
  }

  .reference-info {
    padding: 16px;
    opacity: 1;
    transform: translateY(0);
  }

  .ref-title {
    font-size: 16px;
  }

  .ref-category {
    font-size: 10px;
  }

  /* CLIENTS MARQUEE MOBILE OPTIMIZATION */
  .marquee-track {
    gap: 20px;
    padding: 16px 0;
    /* Hardware acceleration to prevent freeze */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
  }

  .client-item {
    transform: translateZ(0); /* Promote to layer */
  }

  .client-item img {
    height: 40px;
    max-width: 120px; /* Reduce max-width for better fit */
    /* Remove heavy filters on mobile if needed */
    filter: none;
    transition: none; /* Disable hover transition on scroll */
  }

  .clients-subtitle {
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  /* ABOUT STORY MOBILE COMPACT */
  .story-container {
    flex-direction: column;
    gap: 16px; /* Reduced gap */
    padding: 0 16px;
  }

  .story-content {
    max-width: 100%;
  }

  .story-main-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px; /* Reduced margin */
    color: #444;
  }

  .story-lead {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px; /* Reduced margin */
  }

  .story-visuals {
    height: 180px; /* Reduced height */
    position: relative;
    margin-bottom: 0;
  }

  .parallax-img {
    position: absolute !important;
    border-radius: 8px; /* Smaller radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: none !important;
  }

  .img-1 {
    width: 65% !important;
    height: 120px !important;
    top: 0;
    right: 0;
    z-index: 1;
  }

  .img-2 {
    width: 60% !important;
    height: 100px !important;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 2px solid var(--bg-secondary) !important;
  }

  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
    gap: 12px;
    padding: 0 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .stat-item {
    padding: 16px 0; /* Reduced padding */
    border-right: none;
    border-bottom: none;
    text-align: left;
  }

  .stat-number {
    font-size: 24px; /* Reduced size */
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* CONTACT SECTION MOBILE COMPACT */
  #contact {
    padding: 30px 16px; /* Reduced padding */
  }

  #contact h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .contact-form {
    max-width: 100%;
    margin-top: 20px; /* Reduced margin */
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 0; /* Reduced padding */
    font-size: 15px;
    margin-bottom: 16px; /* Reduced margin */
  }

  .contact-form button {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    margin-top: 8px;
  }

  /* CONTACT INFO MOBILE */
  .contact-info-section {
    padding: 40px 16px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .contact-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card h4 {
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
  }

  .contact-card-content {
    font-size: 17px;
    line-height: 1.6;
  }

  .contact-person {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .contact-person-name {
    font-size: 12px;
  }

  .contact-cta {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .contact-cta-text {
    font-size: 16px;
  }

  .contact-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  /* GALLERY PAGE MOBILE */
  .gallery-page {
    padding-top: 70px !important;
  }

  .gallery-page .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .gallery-page .section-intro {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .portfolio-controls-container {
    flex-direction: column;
    gap: 12px;
    margin: 20px auto;
    padding: 0 16px;
  }

  .filter-container,
  .dropdown-container {
    width: 100%;
    padding: 12px 16px;
    border-radius: 24px;
  }

  .gallery-filters {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .selected-company {
    font-size: 13px;
    padding: 12px 16px;
    min-width: 100%;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    padding: 0 16px;
  }

  .gallery-card {
    height: 180px;
    border-radius: 12px;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

  .card-overlay {
    padding: 16px;
  }

  .card-info {
    transform: translateY(0);
  }

  .card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .card-category {
    font-size: 9px;
  }

  .view-project-btn {
    padding: 8px 16px;
    font-size: 10px;
  }

  /* Removed old Project Overlay styles - replaced by unified luxurious overlay above */

  /* LIGHTBOX MOBILE */
  .service-lightbox button,
  .gallery-lightbox button {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5); /* Added background for visibility */
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-lightbox .lightbox-close,
  .gallery-lightbox .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    z-index: 10003;
  }

  .service-lightbox .lightbox-prev,
  .gallery-lightbox .lightbox-prev {
    left: 10px; /* Increased from 8px */
    width: 44px; /* Increased touch target */
    height: 44px;
    z-index: 10003; /* Ensure on top */
  }

  .service-lightbox .lightbox-next,
  .gallery-lightbox .lightbox-next {
    right: 10px; /* Increased from 8px */
    width: 44px; /* Increased touch target */
    height: 44px;
    z-index: 10003; /* Ensure on top */
  }

  .service-lightbox.show,
  .gallery-lightbox.active {
    overflow: hidden;
  }

  .lightbox-container {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    max-width: none !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    padding: 0 !important;
  }

  .service-lightbox .lightbox-image,
  .gallery-lightbox .lightbox-image {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* SERVICES PAGE MOBILE */
  .services-hero {
    padding: 100px 16px 40px;
    text-align: left;
  }

  .services-main-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .services-hero-text {
    font-size: 13px;
    max-width: 100%;
  }

  .services-process {
    padding: 40px 16px;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-process-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .service-process-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .service-process-card p {
    font-size: 13px;
  }

  .process-number {
    font-size: 28px;
    top: 12px;
    right: 12px;
  }

  .service-process-icon {
    margin-bottom: 12px;
    width: 32px;
    height: 32px;
  }

  /* STRENGTHS MOBILE */
  .our-strengths-section {
    padding: 40px 16px;
  }

  .our-strengths-section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .strength-block,
  .strength-block.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-text h3 {
    font-size: clamp(14px, 4.8vw, 18px);
    margin-bottom: 12px;
    white-space: nowrap;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .strength-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .strength-text .strength-highlight {
    display: inline;
    margin-top: 0;
    letter-spacing: normal;
    text-transform: none;
  }

  .strength-text .strength-highlight {
    display: block;
    margin-top: 12px;
  }

  .strength-img img {
    height: auto;
    max-height: 300px;
    border-radius: 12px;
  }

  /* FOOTER MOBILE COMPACT */
  .footer-nav {
    background-color: #EAE6DA;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
    padding: 60px 16px;
    border-top: 1px solid var(--brand-cyan);
  }

  .footer-brand .logo {
    height: 48px;
    margin-bottom: 20px;
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-logo-text {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-item {
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .footer-links h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
  }

  .disclaimer-box {
    padding: 16px;
  }

  /* WHATSAPP BUTTON MOBILE */
  .whatsapp {
    display: none;
  }

  .whatsapp img {
    width: 56px;
    height: 56px;
  }

  /* ENSURE NO HORIZONTAL SCROLL */
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* TEXT READABILITY */
  body {
    font-size: 14px;
  }

  /* HIDE SEPARATORS ON MOBILE */
  .golden-separator,
  .section-divider {
    display: none !important;
  }

  /* PREVENT DOUBLE TAP ZOOM DELAYS */
  button,
  a {
    touch-action: manipulation;
  }

}

/* TABLET OPTIMIZATION (601px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card h3 {
    font-size: 16px;
    font-style: normal;
    border-bottom: 2px solid var(--brand-cyan);
    padding-bottom: 4px;
    display: inline-block;
    width: fit-content;
  }

  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2,
  .section-title {
    font-size: 32px;
  }

  .section p {
    font-size: 15px;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1400px) {
  .navbar {
    padding: 0 100px;
  }

  .section {
    padding: 120px 120px;
  }

  .hero-content {
    padding-left: 120px;
  }

  .video-content {
    left: 120px;
  }

  .video-controls {
    right: 120px;
  }

  .services-hero {
    padding-left: 120px;
    padding-right: 120px;
  }

  .services-process {
    padding: 120px 120px;
  }

  .our-strengths-section {
    padding: 120px 120px;
  }

  .contact-info-section {
    padding: 120px 120px;
  }
}

/* Fix for mobile fullscreen lightbox */
body.lightbox-open .mobile-menu-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .service-lightbox .lightbox-container {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    justify-content: center;
  }

  .service-lightbox .lightbox-image {
    width: 100vw;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    transform: none !important;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: block;
  }

  .service-lightbox.active .lightbox-image {
    transform: none !important;
  }
}

/* ==================== */
/* GLOBAL PRESENCE (MAP) SECTION */
/* ==================== */

/* MAP SPECIFIC STYLES */
.map-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

#globeViz {
  width: 100%;
  height: 100%;
}

.map-ui-overlay {
  position: absolute;
  top: 120px;
  /* Below navbar */
  left: 5%;
  pointer-events: none;
  z-index: 10;
}

.map-title {
  color: var(--brand-gold);
  font-family: 'Bodoni Moda', serif;
  margin: 0;
  font-size: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.map-subtitle {
  color: var(--brand-cyan);
  font-family: 'Lato', sans-serif;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.7s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Tooltip Style for Globe */
.scene-tooltip {
  font-family: 'Lato', sans-serif !important;
  background: rgba(10, 10, 10, 0.9) !important;
  color: #fff !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  font-size: 0.9rem !important;
  border: 1px solid var(--brand-gold, #d4af37) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PREVIEW MODAL (Mini Gallery) */
.project-preview-modal {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 380px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  backdrop-filter: blur(15px);
  padding: 1.5rem;
  border-radius: 12px;
  display: none;
  z-index: 100;
  color: #111;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-preview-modal.active {
  display: block;
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.preview-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  margin: 0;
  color: var(--brand-gold, #d4af37);
}

.preview-location {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-preview {
  background: none;
  border: none;
  color: #999;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.close-preview:hover {
  color: #111;
}

.preview-media {
  width: 100%;
  height: 220px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.preview-media img,
.preview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-full-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--brand-gold, #d4af37);
  color: var(--brand-gold, #d4af37);
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-full-btn:hover {
  background: var(--brand-gold, #d4af37);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .map-title {
    font-size: 2rem;
  }

  .project-preview-modal {
    width: 90%;
    right: 5%;
    bottom: 5%;
  }

  .map-ui-overlay {
    top: 100px;
    width: 90%;
  }
}

.preview-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: 'Lato', sans-serif;
}

/* ==================== */
/* LEGACY PAGE STYLES   */
/* ==================== */

/* HERO PARALLAX SECTIONS */
.parallax-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  /* Fallback for white text */
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  /* Removed to fix stuttering on some browsers */
  overflow: hidden;
}

.bg-1 {
  background-image: url('assetts/the-legacy/hero/hero1.jpeg');
}

.bg-2 {
  background-image: url('assetts/the-legacy/hero/hero2.jpeg');
}

.bg-2 .hero-content-box h2 {
  color: var(--brand-cyan) !important;
}

.bg-2 .hero-content-box p,
.bg-2 .hero-content-box .cyan-text {
  color: #fff !important;
}

.bg-3 {
  background-image: url('assetts/the-legacy/hero/hero3.jpeg');
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.legacy-page .parallax-overlay {
  display: none;
}

.legacy-page .parallax-section .hero-content-box p,
.legacy-page .parallax-section .hero-content-box .cyan-text {
  color: #fff !important;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
}

.legacy-page .parallax-section .hero-content-box h2 {
  color: var(--brand-cyan) !important;
}

.hero-content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.hero-content-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content-box h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 4rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.hero-content-box p {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

/* STICKY DOTS */
.sticky-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  transform: scale(1.2);
}

/* JOURNEY SECTION */
.thread-wrapper {
  position: relative;
  background-color: #EAE6DA;
  /* Matches .about-story background */
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.05);
  padding: 100px 20px;
  overflow: hidden;
}

.journey-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.journey-header h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 3.5rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.journey-header p {
  color: #888;
  font-size: 1.1rem;
}

.thread-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#goldLine {
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 2;
}

.story-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 150px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.story-section.visible {
  opacity: 1;
}

.story-section:nth-child(even) {
  flex-direction: row-reverse;
}

.story-content-box {
  width: 45%;
  background: #ffffff;
  /* White background for light theme */
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-content-box .year {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  color: var(--brand-gold);
  opacity: 0.3;
  /* Slightly increased opacity */
  margin-bottom: -1rem;
}

.story-content-box h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  color: var(--brand-gold);
  /* Brand gold text */
  margin-bottom: 1rem;
}

.story-content-box p {
  color: #555;
  /* Dark gray text */
  line-height: 1.6;
}

.img-box {
  width: 45%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.img-box:hover img {
  transform: scale(1.05);
}

.node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #EAE6DA;
  /* Match section bg */
  border: 4px solid var(--brand-gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* HERO SECTION MOBILE */
  .parallax-section {
    height: 70vh;
    /* Reduced height for better mobile view */
  }

  .hero-content-box {
    padding: 1.5rem;
  }

  .hero-content-box h2 {
    font-size: 2.2rem;
    /* Scaled down from 4rem */
    margin-bottom: 0.8rem;
  }

  .hero-content-box p {
    font-size: 1rem;
    /* Scaled down from 1.2rem */
    line-height: 1.5;
  }

  /* JOURNEY SECTION MOBILE */
  .thread-wrapper {
    padding: 60px 15px;
    /* Reduced vertical padding */
  }

  .journey-header {
    margin-bottom: 50px;
  }

  .journey-header h2 {
    font-size: 2.5rem;
    /* Scaled down from 3.5rem */
  }

  .journey-header p {
    font-size: 1rem;
  }

  .story-section {
    margin-bottom: 80px;
    /* Reduced gap between stories */
    gap: 20px;
  }

  .story-section,
  .story-section:nth-child(even) {
    flex-direction: column;
  }

  .story-content-box {
    width: 100%;
    padding: 25px;
    /* Reduced padding */
  }

  .story-content-box .year {
    font-size: 2.5rem;
  }

  .story-content-box h2 {
    font-size: 1.6rem;
  }

  .img-box {
    width: 100%;
    height: 240px;
    /* Smaller images for mobile */
  }

  .node {
    display: none;
  }

  #threadSvg {
    display: none;
  }

  /* MAP SECTION MOBILE */
  .map-section {
    padding: 60px 0;
  }

  .map-title {
    font-size: 2.2rem;
  }

  .map-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .project-preview-modal {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 20px;
    padding: 20px;
  }

  .map-ui-overlay {
    top: 80px;
    width: 100%;
    padding: 0 15px;
  }

  .sticky-dots {
    display: none;
  }
}


/* =====================
   PROJECT OVERLAY GRID
===================== */
#projectOverlayGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 40px 0;
  width: 100%;
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background-color: #222;
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-img-wrapper.revealed {
  opacity: 1;
  transform: translateY(0);
}

.project-img-wrapper img,
.project-img-wrapper video {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  transition: transform 0.7s ease;
}

.project-img-wrapper:hover img,
.project-img-wrapper:hover video {
  transform: scale(1.05);
}

.project-expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 10;
  color: #000;
}

.project-img-wrapper:hover .project-expand-btn {
  opacity: 1;
  transform: scale(1);
}

.project-overlay-grid #projectOverlayGrid,
#projectOverlayGrid .project-item,
#projectOverlayGrid .project-img-wrapper {
  aspect-ratio: 16 / 10;
}

#projectOverlayGrid .project-img-wrapper img,
#projectOverlayGrid .project-img-wrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

.project-expand-btn:hover {
  background: #fff;
  transform: scale(1.1);
}


/* Placeholder for missing images */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #999;
  font-family: 'Lato', sans-serif;
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* Behind overlay */
}

.gallery-placeholder-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.gallery-placeholder-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.project-empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #888;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== */
/* CATEGORY IMAGE FILTER STYLES */
/* ==================== */

/* Image Overlay for Category Filtered Images */
.gallery-image-item .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-image-item:hover .image-overlay {
  opacity: 1;
}

.gallery-image-item .image-company-label {
  font-family: 'Bodoni Moda', serif;
  font-size: 16px;
  font-style: italic;
  color: #fff;
  display: block;
}

/* Category filtered items specific styling */
.gallery-category-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-soft), border-color 0.3s ease;
}

.gallery-category-item:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   SECTORS & CLIENTS SECTION
   ========================================== */
/* ==========================================
   SECTORS & CLIENTS SECTION (v3 ARTISAN LUXURY)
   ========================================== */
.sectors-section {
  position: relative;
  padding: 140px 5%;
  background-color: #f9f8f4;
  /* Fine-art paper base */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  color: #1a1a1a;
  min-height: 100vh;
  overflow: hidden;
}

.sectors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sectors-main-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-gold);
  margin-bottom: 100px;
  letter-spacing: -2px;
  text-align: center;
}

.sectors-grid {
  display: flex;
  flex-direction: column;
  gap: 12vh;
}

.sector-row {
  position: relative;
}

.sector-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--brand-cyan);
  margin-bottom: 20px;
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid var(--brand-cyan);
  padding-bottom: 4px;
}

.sector-heading::after {
  display: none;
}

.client-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  padding: 0;
}

.client-list li {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  position: relative;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  color: #D4AF37 !important; /* Explicit Brand Gold Hex forced */
}

.client-list li a {
  color: #D4AF37 !important; /* Explicit Brand Gold Hex forced */
  text-decoration: none;
  display: block;
  font-weight: 700; /* Added weight for prominence */
}

/* Artisan Ink-Bleed Effect */
.client-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.8s ease, height 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  filter: blur(20px);
}

.client-list li:hover a {
  color: var(--brand-cyan) !important;
}

.client-list li:hover {
  transform: scale(1.05) translateX(5px);
}

.client-list li:hover::before {
  width: 280px;
  height: 140px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .sectors-main-title {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .client-list {
    gap: 20px 30px;
  }

  .client-list li {
    font-size: 20px;
  }

  .client-list li:hover::before {
    width: 200px;
    height: 100px;
  }
}

/* Hero Slide Titles */
.hero-slide-title {
  position: absolute;
  bottom: 120px;
  right: 5%;
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  color: var(--brand-cyan);
  text-align: right;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .hero-slide-title {
    font-size: 30px;
    bottom: 140px;
  }
}
