* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  margin-top: 90px;
  /* clearance for fixed header */
  height: calc(100vh - 90px);
  background: #000;
  padding: 0;
  overflow: hidden;
}

.hero-full-video {
  display: block;
}

.hero-video-full {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
}

#changing-word {
  display: none;
}

.fade-out {
  opacity: 0;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
  }
}




/* Clients Section ***********************************************************/
.clients-section {
  background: #ffffff;
  padding: 80px 0;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.clients-eyebrow {
  color: #c38817;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.clients-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  width: max-content;
  animation: clients-scroll 18s linear infinite;
}

/* cards */
.client-logo {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 8px solid #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 1;
}

.client-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .clients-container {
    padding: 0 20px;
  }

  .clients-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .clients-track {
    gap: 30px;
    animation-duration: 14s;
  }

  .client-logo {
    width: 130px;
    height: 130px;
    border-width: 6px;
  }

}




/* About Section **********************************************************************/
.about-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #000000;
  padding: 50px 80px 50px 80px;
  color: #ffffff;
  text-align: center;
  margin-top: 0;
  /* ensures no gap from hero */
  margin-bottom: 0;

}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: #ffffff;
}

.about-subtitle {
  font-size: 34px;
  /* increased size */
  font-weight: 600;
  margin-bottom: 30px;
  /* reduced gap */
  color: #b8940f;
  /* darker gold highlight */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em;
}

.about-subtitle .word-group {
  display: inline-block;
  white-space: nowrap;
}

.about-subtitle .letter {
  display: inline-block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  color: #b8940f;
}

.about-subtitle .letter[data-letter=" "] {
  min-width: 0.3em;
}

.about-subtitle .letter.visible {
  opacity: 1;
}

.about-subtitle .letter.revealing {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  animation: letterReveal 0.3s ease-out forwards;
}

@keyframes letterReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0% 0 0);
  }
}

.about-subtitle .letter.visible:first-child {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
  color: #f5f5f5;
}

.about-btn {
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .about-subtitle {
    font-size: 24px;
    /* bigger than before */
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}


/* ===== GALLERY SECTION ===== ************************************************************/

/* Section */
.gallery-section {
  background: #000;
  min-height: 100vh;
  padding: 0px 0px;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
}

/* Moving Letters */
.gallery-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 30px;
}

.gallery-marquee .marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

.gallery-marquee span {
  font-size: 56px;
  font-weight: 900;
  margin-right: 80px;
  color: #1a1a1a;
  -webkit-text-stroke: 1px #000000;
}

/* Gallery Scroll Container */
.gallery-scroll-container {
  position: relative;
  width: 100%;
}

/* Horizontal Scroll Gallery */
.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  cursor: grab;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.gallery-track {
  display: inline-flex;
  gap: 60px;
  /* spacing between items */
}

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 360px;
  /* image width */
  height: 360px;
  /* image height */
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 75px;
  color: #fff;
  background: #ebba16;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Scrollbar hidden */
.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Gallery Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-left {
  left: 20px;
}

.gallery-arrow-right {
  right: 20px;
}

.gallery-arrow.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Signature Section *************************************************************/
.signature-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: #000;
  overflow: hidden;
}




.signature-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.signature-hero-tagline {
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  line-height: 1.8;
  font-weight: 100;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  text-align: center;
}

.signature-hero-main {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 76%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.signature-hero-logo {
  width: 260px;
  text-align: center;
}

.signature-hero-logo img {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.signature-hero-headline {
  margin-left: 60px;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.06) 44%,
      rgba(184, 148, 15, 0) 47%,
      rgba(184, 148, 15, 1) 50%,
      /* darker gold */
      rgba(184, 148, 15, 0) 53%,
      rgba(255, 255, 255, 0.06) 56%,
      rgba(255, 255, 255, 0.06) 100%);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headlineSweep 8s linear infinite;
}

@media (max-width: 1024px) {
  .signature-hero-tagline {
    top: 8%;
    font-size: 20px;
    white-space: normal;
    width: 90%;
    margin-bottom: 10px;
  }

  .signature-hero-main {
    flex-direction: column;
    align-items: center;
    top: 48%;
    width: 90%;
    margin-top: 0;
  }

  .signature-hero-logo {
    margin-bottom: 20px;
  }

  .signature-hero-headline {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(24px, 5vw, 36px);
    text-align: center;
    white-space: nowrap;
  }

  .signature-section {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* ✅ Shorter travel → no long disappearance */
@keyframes headlineSweep {
  0% {
    background-position: 75% 50%;
  }

  100% {
    background-position: 25% 50%;
  }
}

/* Reflective Gallery *************************************************************/
.reflective-gallery {
  --rg-font-color: #cccccc;
  --rg-background: #090909;
  --rg-whitespace: 10px;
  --rg-wall-rotation-max: 45deg;
  background: var(--rg-background);
  color: var(--rg-font-color);
  padding: 0;
  margin-top: -80px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  min-height: 750px;
}

@media (min-width: 0px) {
  .reflective-gallery {
    perspective: 250px;
  }
}

@media (min-width: 700px) {
  .reflective-gallery {
    perspective: 500px;
  }
}

@media (min-width: 1200px) {
  .reflective-gallery {
    perspective: 1000px;
  }
}

@media (min-width: 1600px) {
  .reflective-gallery {
    perspective: 2000px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    margin-bottom: -50px;
    padding-bottom: 0;
  }

  .reflective-gallery {
    margin-top: -50px;
    padding-top: 30px;
  }
}

@media (min-width: 375px) and (max-width: 768px) {
  .gallery-section {
    margin-bottom: -250px !important;
    padding-bottom: 0 !important;
  }

  .reflective-gallery {
    margin-top: -250px !important;
    padding-top: 5px !important;
  }

  .signature-section .signature-hero-tagline {
    top: 5% !important;
    margin-bottom: 5px !important;
  }

  .signature-section .signature-hero-main {
    top: 42% !important;
    margin-top: 0 !important;
  }

  .signature-section .signature-hero-logo {
    margin-bottom: 15px !important;
  }

  .signature-section .signature-hero-headline {
    margin-bottom: 0 !important;
  }

  .signature-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

#wall {
  position: relative;
  transform-origin: left center;
  width: 100%;
  height: 100%;
}

#wall .row {
  position: relative;
  display: flex;
  height: 250px;
  margin-bottom: var(--rg-whitespace);
}

#wall .row img {
  height: 100%;
  margin: calc(var(--rg-whitespace) / 2);
  object-fit: cover;
}

#wall .row .frame {
  position: relative;
  height: 100%;
}

#wall .row .frame .reflection {
  position: absolute;
  height: 100%;
  transform: rotateX(180deg) translateY(-10px);
  opacity: 0.25;
  overflow: hidden;
}

#wall .row .frame .reflection img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* What Can We Do For You Section *************************************************************/
:root {
  --services-bg: #000;
  --services-muted: #b3b3b3;
  --services-accent: #9b8f18;
  --services-card-border: rgba(255, 255, 255, 0.35);
  --services-card-radius: 28px;
  --services-container-max: 1200px;
}

.services-wrap {
  max-width: var(--services-container-max);
  margin: 0 auto 80px;
  padding: 0 40px;
  background: var(--services-bg);
}

@media (max-width: 1024px) {
  .services-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 40px !important;
  }
}

/* small top heading */
.services-kicker {
  text-align: center;
  color: var(--services-accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0;
  font-size: 28px;
}

/* big headline using Outfit (Cern-like) */
.services-hero-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 42px);
  margin: 8px 0 12px;
  line-height: 1.4;
  letter-spacing: 0px;
  color: #fff;
}

.services-hero-sub {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--services-muted);
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 48px;
}

/* cards grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 36px;
  align-items: stretch;
  margin-top: 20px;
}

.services-cards .service-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 920px) {
  .services-cards {
    grid-template-columns: 1fr;
  }

  .services-wrap {
    padding: 0 24px;
    margin-top: 20px;
  }
}

/* Service Card Flip Container */
.service-card-wrapper {
  perspective: 1000px;
  width: 100%;
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-inner {
  position: relative;
  width: 100%;
  min-height: 380px;
  height: 100%;
  flex: 1 1 auto;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.service-card-wrapper:hover .service-card-inner {
  transform: rotateY(180deg);
}

/* Mobile: flip on scroll position, not hover */
@media (max-width: 920px) {
  .service-card-wrapper:hover .service-card-inner {
    transform: rotateY(0deg) !important;
    /* Disable hover flip on mobile */
  }

  .service-card-wrapper.flip-active .service-card-inner {
    transform: rotateY(180deg) !important;
    /* Flip when active */
  }

  .service-card-wrapper:not(.flip-active) .service-card-inner {
    transform: rotateY(0deg) !important;
    /* Reset when not active */
  }
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-sizing: border-box;
}

.service-card-back {
  transform: rotateY(180deg);
}

.service-card {
  border: 1.8px solid #e5e5e5;
  border-radius: var(--services-card-radius);
  padding: 30px;
  padding-bottom: 30px;
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.service-card>div:first-child {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* Back side styling - white background with dark text */
.service-card-back {
  background: #ffffff !important;
  border-color: #000 !important;
}

.service-card-back h3 {
  color: #000 !important;
}

.service-card-back .service-desc {
  color: #333 !important;
}

.service-card-back .service-icon img {
  filter: invert(0) !important;
}

.service-card-back .service-see-more {
  background: #000 !important;
  color: #fff !important;
}

.service-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  filter: invert(1);
}

.service-card h3 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.02;
  color: #fff;
}

.service-desc {
  margin-top: 18px;
  color: #e5e5e5;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
}

.service-see-more {
  display: inline-block;
  margin-top: 5px;
  padding: 12px 30px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  align-self: flex-start;
}

.service-card-footer {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 1300px) {
  .service-card-wrapper {
    min-height: 380px;
  }

  .service-card-inner {
    min-height: 380px;
  }

  .service-card-front,
  .service-card-back {
    min-height: 380px;
  }

  .service-card {
    border-radius: 36px;
    padding: 36px;
    padding-bottom: 36px;
    min-height: 380px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

/* split row */
.services-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 72px;
}

.services-side-hero {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-side-hero .services-side-lines {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--services-accent);
  text-align: left;
  line-height: 0.95;
}

.services-side-hero .services-side-lines div {
  font-size: clamp(34px, 6.8vw, 64px);
  letter-spacing: 4px;
  margin: 6px 0;
}

@media (max-width: 920px) {
  .services-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-side-hero {
    grid-column: span 1;
  }

  .services-side-hero .services-side-lines {
    text-align: center;
  }
}

/* ======= Minimal override: preserve original signature layout, only set gap ======= */

/* Do NOT change height/positioning of .signature-section so the original layout remains intact.

   Only add bottom padding to create the required gap. */

.signature-section {

  /* Remove any height / min-height overrides you previously added.

       Keep the original layout rules intact by only adding padding. */

  padding-bottom: 50px !important;
  /* creates gap below signature */

  /* Do NOT change height, display or positioning here (leave existing rules from main CSS). */

}

/* Desktop: reduce bottom gap significantly */

@media (min-width: 769px) {

  .signature-section {

    padding-bottom: 0 !important;
    /* minimal gap on desktop */

    margin-bottom: 0 !important;

  }

  .services-wrap {

    margin-top: 0 !important;

    padding-top: 0 !important;

  }

}

/* Remove extra top margin coming from services-wrap that increases the gap */

.services-wrap {

  margin-top: 0 !important;

  margin-bottom: 40px !important;
  /* optional: keep some bottom breathing room */

}

/* ===== Mobile: stack tagline, centered logo, then subtagline (no overlap) ===== */

@media (max-width: 768px) {



  /* make the signature section flow normally and keep safe padding */

  .signature-section {

    position: relative !important;

    height: auto !important;

    min-height: auto !important;

    padding-top: 20px !important;

    padding-bottom: 24px !important;

    overflow: visible !important;

    box-sizing: border-box !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

  }



  /* Tagline at the top */

  .signature-hero-tagline {

    order: 0 !important;

    position: relative !important;

    top: auto !important;

    left: auto !important;

    transform: none !important;

    margin: 0 0 14px 0 !important;

    padding: 0 !important;

    text-align: center !important;

    width: 100% !important;

    max-width: 92% !important;

    line-height: 1.2 !important;

    font-size: clamp(18px, 4.6vw, 26px) !important;

    color: rgba(255, 255, 255, 0.65) !important;

    white-space: normal !important;

    word-break: break-word !important;

    z-index: 3 !important;

  }



  /* Hero container for logo and headline */

  .signature-hero {

    order: 1 !important;

    position: relative !important;

    width: 100% !important;

    max-width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

  }



  /* Force the hero wrapper to behave as a vertical stack and center contents */

  .signature-hero-main {

    position: relative !important;
    /* cancel any absolute positioning on mobile */

    transform: none !important;

    top: auto !important;

    bottom: auto !important;

    left: auto !important;

    right: auto !important;

    display: flex !important;

    flex-direction: column !important;
    /* stack: headline -> logo -> subheadline */

    align-items: center !important;
    /* horizontal center */

    justify-content: center !important;

    gap: 14px !important;
    /* spacing between elements (tweak if needed) */

    width: 100% !important;

    max-width: 100% !important;

    margin: 0 auto !important;

    padding: 0 16px !important;

    box-sizing: border-box !important;

    z-index: 2 !important;

  }



  /* Primary tagline above the logo (headline) */

  .signature-hero-tagline {

    order: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    text-align: center !important;

    width: 100% !important;

    max-width: 92% !important;

    line-height: 1.2 !important;

    font-size: clamp(18px, 4.6vw, 26px) !important;

    color: rgba(255, 255, 255, 0.65) !important;
    /* exact desktop color */

    font-family: 'Montserrat', sans-serif !important;

    font-weight: 100 !important;

    font-style: italic !important;

    letter-spacing: 0.04em !important;

    white-space: normal !important;

    word-break: break-word !important;

    z-index: 3 !important;

    position: relative !important;

  }



  /* Logo block centered below the headline */

  .signature-hero-logo {

    order: 1 !important;

    display: block !important;

    margin: 0 auto !important;
    /* center horizontally */

    padding: 0 !important;

    width: auto !important;

    max-width: 56% !important;
    /* controls logo visual size on phones; adjust 40-70% as needed */

    height: auto !important;

    text-align: center !important;

    z-index: 3 !important;

    position: relative !important;

    box-sizing: border-box !important;

  }



  /* If logo is an <img> inside the logo container, ensure it scales */

  .signature-hero-logo img {

    display: block !important;

    max-width: 100% !important;

    height: auto !important;

    margin: 0 auto !important;

    vertical-align: middle !important;

  }



  /* Subtagline (see it, shoot it, sell it) below the logo */

  .signature-hero-headline {

    order: 2 !important;

    margin: 0 auto !important;

    padding: 0 !important;

    text-align: center !important;

    width: 100% !important;

    max-width: 92% !important;

    font-size: clamp(24px, 5vw, 36px) !important;

    font-weight: 800 !important;

    letter-spacing: 0.02em !important;

    line-height: 1.25 !important;

    white-space: normal !important;

    word-wrap: break-word !important;

    overflow-wrap: break-word !important;

    z-index: 3 !important;

    position: relative !important;

    box-sizing: border-box !important;

    /* Animation gradient - same as desktop */

    background-image: linear-gradient(90deg,

        rgba(255, 255, 255, 0.06) 0%,

        rgba(255, 255, 255, 0.06) 44%,

        rgba(184, 148, 15, 0) 47%,

        rgba(184, 148, 15, 1) 50%,
        /* darker gold */

        rgba(184, 148, 15, 0) 53%,

        rgba(255, 255, 255, 0.06) 56%,

        rgba(255, 255, 255, 0.06) 100%) !important;

    background-size: 400% !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    color: transparent !important;

    animation: headlineSweep 8s linear infinite !important;

  }



  /* Remove residual spacing that might come from children */

  .signature-hero-main * {

    box-sizing: border-box !important;

  }



  /* Keep services section close below without pushing too far */

  .services-wrap {

    margin-top: 8px !important;

  }



  /* Safety: if something still sits absolutely, hide its height to prevent overlap */

  .signature-section>*[style*="position: absolute"] {

    position: static !important;

    transform: none !important;

    top: auto !important;

    left: auto !important;

    right: auto !important;

    bottom: auto !important;

  }

}

/* ===== Auto-scrolling Services Row Section ===== */
:root {
  --auto-scroll-bg: #f5f5f5;
  --auto-scroll-border: rgba(0, 0, 0, 0.15);
  --auto-scroll-accent: #b8940f;
  --auto-scroll-card-size: 320px;
  --auto-scroll-gap: 56px;
  --auto-scroll-pixels-per-second: 240;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  :root {
    --auto-scroll-pixels-per-second: 0;
  }
}

.auto-scroll-section {
  background: var(--auto-scroll-bg);
  color: #1a1a1a;
  padding: 36px 28px;
  max-width: 100%;
  box-sizing: border-box;
}

.auto-scroll-page {
  max-width: 100%;
  padding: 0;
}

.auto-scroll-viewport {
  width: 100%;
  overflow: hidden;
  padding: 4px 12px;
  box-sizing: border-box;
}

.auto-scroll-viewport:focus {
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 6px;
}

.auto-scroll-row {
  display: flex;
  gap: var(--auto-scroll-gap);
  align-items: center;
  will-change: transform;
}

.auto-scroll-card {
  flex: 0 0 var(--auto-scroll-card-size);
  height: var(--auto-scroll-card-size);
  min-width: var(--auto-scroll-card-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--auto-scroll-border);
  background: transparent;
  padding: 24px;
  box-sizing: border-box;
  user-select: none;
  transition: transform 0.25s ease;
}

.auto-scroll-viewport:hover .auto-scroll-card {
  transform: translateY(-3px);
}

.auto-scroll-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auto-scroll-count {
  font-family: "Montserrat", "Outfit", sans-serif;
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -1px;
  font-size: clamp(44px, 7.8vw, 72px);
  margin: 0;
  color: #1a1a1a;
  text-align: center;
}

.auto-scroll-label {
  margin-top: 16px;
  font-family: "Outfit", "Montserrat", sans-serif;
  font-weight: 150;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--auto-scroll-accent);
  text-align: center;
  line-height: 1.4;
}

.auto-scroll-viewport.no-scroll .auto-scroll-row {
  justify-content: center;
  gap: var(--auto-scroll-gap);
}

@media (max-width: 600px) {
  :root {
    --auto-scroll-card-size: 240px;
    --auto-scroll-gap: 24px;
    --auto-scroll-pixels-per-second: 120;
  }

  .auto-scroll-label {
    font-size: clamp(20px, 4vw, 28px);
  }
}

/* ===== Footer Section ===== */
:root {
  --footer-bg: #000;
  --footer-header-bg: #1b1b1b;
  --footer-yellow: #c6a313;
  --footer-white: #ffffff;
  --footer-muted: #dcdcdc;
}

.footer-section {
  background: var(--footer-bg);
  color: var(--footer-white);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.footer-top {
  background: var(--footer-header-bg);
  padding: 26px 56px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--footer-muted);
}

.footer-stage {
  display: grid;
  grid-template-columns: 58% 1px 42%;
  gap: 0;
  align-items: start;
  padding: 80px 64px;
  min-height: 520px;
}

/* vertical divider */
.footer-divider {
  background: #2f2f2f;
  width: 1px;
  height: 100%;
  justify-self: center;
}

/* left section */
.footer-left {
  padding-right: 48px;
}

.footer-lead-line {
  font-size: 84px;
  font-weight: 900;
  line-height: 0.95;
  color: var(--footer-yellow);
  margin: 0 0 30px 0;
}

.footer-lead-line .nowrap {
  white-space: nowrap;
  display: block;
}

.footer-contact-block {
  margin-top: 46px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 26px;
  font-weight: 400;
}

.footer-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--footer-white);
  font-size: 22px;
  background: transparent;
  color: var(--footer-white);
}

/* right section */
.footer-right {
  padding-left: 48px;
  padding-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* reduced gap between office & services */
.footer-right-inner {
  width: 100%;
  display: grid;
  grid-template-columns: max-content max-content;
  /* columns size to content */
  column-gap: 22px;
  /* base gap between columns */
  align-items: start;
  justify-content: flex-start;
}

.footer-col-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* reduced line height for Office & Services */
.footer-office p,
.footer-services p {
  margin: 4px 0;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--footer-white);
}

.footer-office {
  max-width: 250px;
}

/* THIS IS THE KEY: move Services left without moving Office.
   Increase the negative value to push Services further left; decrease (or make 0) to move back. */
.footer-services {
  margin-left: 0px;
  /* <-- tweak this value: try -20px, -36px, -50px depending how close you want */
}

/* prevent wrapping for Social Media Management */
.footer-services p {
  white-space: nowrap;
}

/* social icons */
.footer-social-row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.footer-social-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-yellow);
  color: #fff;
  color: #fff;
  font-size: 26px;
}

.footer-social-icon a,
.footer-social-icon i {
  color: #fff !important;
}

/* responsiveness */
@media (max-width: 1100px) {
  .footer-stage {
    grid-template-columns: 1fr 1px 1fr;
    padding: 48px 30px;
  }

  .footer-lead-line {
    font-size: 56px;
  }

  .footer-office p,
  .footer-services p,
  .footer-contact-item {
    font-size: 20px;
  }

  .footer-right-inner {
    column-gap: 12px;
  }

  .footer-services {
    margin-left: -18px;
    /* reduce negative offset on medium screens */
  }
}

@media (max-width: 800px) {
  .footer-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-divider {
    display: none;
  }

  .footer-right {
    padding-left: 0;
  }

  .footer-right-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .footer-lead-line {
    font-size: 44px;
  }

  .footer-services {
    margin-left: 0;
    /* no overlap on narrow screens */
  }

  .footer-services p {
    white-space: normal;
  }
}