/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
html {
  overflow-x: clip;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: clip;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-normal);
}

/* ==========================================================================
   Typography
   ========================================================================== */
.section-num {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.1;
}

/* ==========================================================================
   Layout & Sections
   ========================================================================== */
section {
  padding: var(--section-padding);
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  box-sizing: border-box;
}

/* Override for sections that should flow naturally */
#trust,
#team,
#our-dna,
#core-values,
#company-profile {
  height: auto;
}

/* CTA & Footer: 1 full-height section (100vh) where CTA fills remaining space above footer */
#cta {
  height: calc(var(--vh, 1vh) * 100);
  min-height: calc(var(--vh, 1vh) * 100);
}

#inside-craft {
  min-height: calc(var(--vh, 1vh) * 100);
  height: auto;
}

.section-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Safe vertical alignment for team content */
#team .section-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  min-height: 100%;
}


/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-premium {
  background: var(--accent-gold);
  color: #FFF;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  display: inline-block;
  cursor: pointer;
}

.btn-premium:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  color: #FFF;
  box-shadow: none;
}

.btn-outline-premium {
  background: transparent;
  color: var(--text-main);
  padding: 12px 28px;
  border: 1px solid rgba(230, 230, 240, 0.3);
  border-radius: var(--radius-sm, 6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  display: inline-block;
  cursor: pointer;
}

.btn-outline-premium:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: var(--text-main);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.9);
  padding: 30px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.hero-nav.scrolled {
  position: fixed;
  background: rgba(15, 15, 16, 0.95);
  backdrop-filter: blur(12px);
  padding: 20px 80px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 24px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.nav-logo img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition-fast);
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--text-main);
}

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

/* ==========================================================================
   Hamburger Toggle Button (Accessible & Animated)
   ========================================================================== */
.nav-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  z-index: 1001;
  outline: none;
  transition: transform 0.2s ease;
}

.hamburger-line {
  display: block;
  height: 2px;
  background-color: var(--accent-gold, #C5A880);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-1 {
  width: 24px;
}

.line-2 {
  width: 18px;
}

.line-3 {
  width: 22px;
}

/* Active Hamburger (Morphs into 'X') */
.nav-toggle-btn.active {
  z-index: 1060;
}

.nav-toggle-btn.active .line-1 {
  width: 24px;
  transform: translateY(8px) rotate(45deg);
  background-color: #ffffff;
}

.nav-toggle-btn.active .line-2 {
  opacity: 0;
  transform: translateX(10px);
}

.nav-toggle-btn.active .line-3 {
  width: 24px;
  transform: translateY(-8px) rotate(-45deg);
  background-color: #ffffff;
}

/* ==========================================================================
   Mobile Navigation Drawer Overlay (Full-Screen Dark Luxury Glass)
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 11, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: env(safe-area-inset-top, 20px) 24px max(24px, env(safe-area-inset-bottom, 24px)) 24px;
  overflow-y: auto;
  touch-action: pan-y;
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  padding-top: 10px;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  margin-bottom: 20px;
}

.drawer-brand img {
  height: 22px;
  width: auto;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: auto 0;
  padding: 20px 0;
}

.drawer-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.drawer-link-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold, #C5A880);
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  opacity: 0.85;
}

.drawer-link-text {
  font-size: 20px;
  font-weight: 400;
  color: #EDEDED;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.drawer-link-item:hover .drawer-link-text,
.drawer-link-item:active .drawer-link-text {
  color: var(--accent-gold, #C5A880);
  transform: translateX(6px);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-drawer-cta {
  background: var(--accent-gold, #C5A880);
  color: #0A0B0E;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: background 0.2s ease;
}

.btn-drawer-cta:hover {
  background: #E5B869;
}

.drawer-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13.5px;
  padding: 10px;
  transition: color 0.2s ease;
}

.drawer-wa-link:hover {
  color: #25D366;
}

/* Hero Video Mobile Floating Play Badge */
.hero-video-badge {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.hero-video-badge:hover,
.hero-video-badge:active {
  background: rgba(197, 168, 128, 0.9);
  color: #0A0B0E;
  border-color: var(--accent-gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 15, 16, 0.95) 0%, rgba(15, 15, 16, 0.70) 50%, rgba(15, 15, 16, 0.20) 100%),
    radial-gradient(ellipse at center, transparent 10%, rgba(15, 15, 16, 0.98) 60%, rgba(15, 15, 16, 1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease 0.2s;
}

.hero-h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero-h1-line {
  opacity: 0;
  transform: translateY(25px);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
  max-width: 600px;
}


.hero-cta {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.8s ease 0.8s;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.8s ease 1.2s;
}

.scroll-hint-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(230, 230, 240, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.hero-micro-item {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero GSAP initial states handled in JS */

/* ==========================================================================
   Section 02: Our DNA
   ========================================================================== */
#our-dna {
  background: var(--primary-bg);
  color: #EDEDED;
  position: relative;
  overflow: visible;
}

.our-dna-left {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  max-width: 420px;
  margin-bottom: 40px;
  z-index: 10;
}

.hwt-progress-menu {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
}

.hwt-menu-item {
  margin-bottom: 1.5rem;
  opacity: 0.4;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hwt-menu-item:last-child {
  margin-bottom: 0;
}

.hwt-menu-item.active {
  opacity: 1;
  transform: translateX(4px);
}

.hwt-menu-item a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.hwt-menu-item a:hover {
  color: var(--accent-gold);
}

.hwt-menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(216, 207, 195, 0.35);
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hwt-menu-item.active .hwt-menu-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(196, 147, 45, 0.4);
  transform: scale(1.2);
}

.our-dna-right {
  position: relative;
  width: 100%;
}

.hwt-step-section {
  margin-bottom: 140px;
  scroll-margin-top: 140px;
  position: relative;
}

.hwt-step-section:last-child {
  margin-bottom: 0;
}

.hwt-step-meta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hwt-step-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #EDEDED;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hwt-step-section p {
  color: #A0A0A5;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hwt-image-wrapper {
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: #080809;
}

.hwt-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hwt-image-wrapper:hover img {
  transform: scale(1.04);
}

/* Responsive adjustments for Our DNA Section */
@media (max-width: 991px) {
  .our-dna-left {
    position: relative;
    top: 0;
    max-width: 100%;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
  }

  .hwt-progress-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1.5rem;
  }

  .hwt-menu-item {
    margin-bottom: 0;
  }

  .hwt-step-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
  }

  .hwt-step-section h3 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Section 03: Our Approach
   ========================================================================== */
#our-approach {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Section 05: Inside the Craft
   ========================================================================== */
#inside-craft {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Section 06: Our Team
   ========================================================================== */
#team {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast) ease;
  padding: 0;
  outline: none;
}

.ss-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.ss-btn svg {
  display: block;
}

.ss-btn:active {
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden !important;
}

.itc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.itc-controls {
  display: flex;
  gap: 12px;
  z-index: 5;
  position: relative;
}

.itc-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.itc-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* ── Grid Layouts for 6 Gallery Pages (24-Column Mathematical Precision) ── */

.itc-grid-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(3, 195px);
  gap: 14px;
}

/* Page 1 (Layout Sample 1: 9 Boxes — 3 Top + Big Right Hero + 2 Mid + 3 Bottom) */
.page-1 .c1 { grid-column: 1 / 5; grid-row: 1; }
.page-1 .c2 { grid-column: 5 / 9; grid-row: 1; }
.page-1 .c3 { grid-column: 9 / 13; grid-row: 1; }
.page-1 .c4 { grid-column: 1 / 7; grid-row: 2; }
.page-1 .c5 { grid-column: 7 / 13; grid-row: 2; }
.page-1 .c6 { grid-column: 13 / 25; grid-row: 1 / 3; } /* Hero Big Right */
.page-1 .c7 { grid-column: 1 / 9; grid-row: 3; }
.page-1 .c8 { grid-column: 9 / 17; grid-row: 3; }
.page-1 .c9 { grid-column: 17 / 25; grid-row: 3; }

/* Page 2 (Layout Sample 2: 8 Boxes — 3 Top + 3 Right Stack + 2 Bottom Large) */
.page-2 .c1 { grid-column: 1 / 7; grid-row: 1; }
.page-2 .c2 { grid-column: 7 / 13; grid-row: 1; }
.page-2 .c3 { grid-column: 13 / 19; grid-row: 1; }
.page-2 .c4 { grid-column: 19 / 25; grid-row: 1; }
.page-2 .c5 { grid-column: 19 / 25; grid-row: 2; }
.page-2 .c6 { grid-column: 19 / 25; grid-row: 3; }
.page-2 .c7 { grid-column: 1 / 10; grid-row: 2 / 4; }
.page-2 .c8 { grid-column: 10 / 19; grid-row: 2 / 4; }

/* Page 3 (Layout Sample 3: 8 Boxes — 3 Top + Tall Right + Big Bottom-Left) */
.page-3 .c1 { grid-column: 1 / 7; grid-row: 1; }
.page-3 .c2 { grid-column: 7 / 13; grid-row: 1; }
.page-3 .c3 { grid-column: 13 / 19; grid-row: 1; }
.page-3 .c4 { grid-column: 19 / 25; grid-row: 1 / 3; } /* Tall Right */
.page-3 .c5 { grid-column: 1 / 10; grid-row: 2 / 4; }   /* Big Bottom-Left */
.page-3 .c6 { grid-column: 10 / 19; grid-row: 2; }       /* Mid Wide */
.page-3 .c7 { grid-column: 10 / 17; grid-row: 3; }        /* Bottom Mid */
.page-3 .c8 { grid-column: 17 / 25; grid-row: 3; }       /* Bottom Right */

/* Page 4 (Layout Sample 4: 10 Boxes — Left Stack + Top Wide + Right Stack + 2 Bottom) */
.page-4 .c1 { grid-column: 1 / 5; grid-row: 1; }
.page-4 .c2 { grid-column: 1 / 8; grid-row: 2; }
.page-4 .c3 { grid-column: 1 / 8; grid-row: 3; }
.page-4 .c4 { grid-column: 5 / 14; grid-row: 1; }
.page-4 .c5 { grid-column: 14 / 20; grid-row: 1; }
.page-4 .c6 { grid-column: 20 / 25; grid-row: 1; }
.page-4 .c7 { grid-column: 20 / 25; grid-row: 2; }
.page-4 .c8 { grid-column: 8 / 15; grid-row: 2 / 4; }
.page-4 .c9 { grid-column: 15 / 25; grid-row: 3; }
.page-4 .c10 { grid-column: 15 / 20; grid-row: 2; }

/* Page 5 (Layout Sample 5: 8 Boxes — Workshop Precision Craft) */
.page-5 .c1 { grid-column: 1 / 7; grid-row: 1; }
.page-5 .c2 { grid-column: 7 / 13; grid-row: 1; }
.page-5 .c3 { grid-column: 13 / 19; grid-row: 1; }
.page-5 .c4 { grid-column: 19 / 25; grid-row: 1 / 3; }
.page-5 .c5 { grid-column: 1 / 10; grid-row: 2 / 4; }
.page-5 .c6 { grid-column: 10 / 19; grid-row: 2; }
.page-5 .c7 { grid-column: 10 / 17; grid-row: 3; }
.page-5 .c8 { grid-column: 17 / 25; grid-row: 3; }

/* Page 6 (Layout Sample 6: 8 Boxes — Mirrored Bento Showcase) */
.page-6 .c1 { grid-column: 1 / 7; grid-row: 1 / 3; } /* Tall Left Hero */
.page-6 .c2 { grid-column: 7 / 13; grid-row: 1; }
.page-6 .c3 { grid-column: 13 / 19; grid-row: 1; }
.page-6 .c4 { grid-column: 19 / 25; grid-row: 1; }
.page-6 .c5 { grid-column: 7 / 16; grid-row: 2; }
.page-6 .c6 { grid-column: 16 / 25; grid-row: 2 / 4; }
.page-6 .c7 { grid-column: 1 / 10; grid-row: 3; }
.page-6 .c8 { grid-column: 10 / 16; grid-row: 3; }

/* ── Solid Color Placeholders Styling ──────────────────────────────── */
.itc-cell.is-placeholder {
  background: #0A101D;
  border: 1px solid rgba(196, 147, 45, 0.25);
  border-radius: var(--radius-sm, 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
  user-select: none;
}

.itc-cell.is-placeholder:hover {
  background: #141E34;
  border-color: var(--accent-gold, #C4932D);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.itc-ph-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 147, 45, 0.12);
  border: 1px solid rgba(196, 147, 45, 0.45);
  color: var(--accent-gold, #C4932D);
  font-family: var(--font-sans), sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.itc-ph-folder {
  font-size: 0.72rem;
  font-family: var(--font-mono, monospace);
  color: rgba(216, 207, 195, 0.65);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.itc-ph-title {
  font-size: 0.78rem;
  color: var(--text-main, #D8CFC3);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.itc-ph-file {
  font-size: 0.66rem;
  color: rgba(196, 147, 45, 0.7);
  font-family: var(--font-mono, monospace);
  margin-top: 5px;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Page-3 Stat Card Styling ─────────────────────────────────────────── */
.itc-card-stat {
  background: var(--surface-color, #0A0F1A);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px;
}

.itc-stat-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.itc-stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}

.itc-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4px 0 0;
}

/* ── Page-3 Tall Hero Badges ──────────────────────────────────────────── */
.itc-tall-hero {
  position: relative;
}

.itc-badge-top,
.itc-badge-bottom {
  position: absolute;
  z-index: 3;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm, 6px);
  padding: 14px 16px;
  max-width: 200px;
}

.itc-badge-top {
  top: 16px;
  right: 16px;
}

.itc-badge-top .itc-stat-number {
  font-size: 1.6rem;
}

.itc-badge-top .itc-stat-label {
  font-size: 0.7rem;
}

.itc-badge-bottom {
  bottom: 50px;
  left: 16px;
}

.itc-badge-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* Hover zoom and premium glow border — mirrors .roster-showcase behaviour */

.itc-cell {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

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

.itc-cell:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.95);
}

.itc-cell:hover {
  border-color: var(--accent-gold);
}

.itc-overlay {
  display: none;
}

/* Craft Modal (Medium Size Glassmorphic Image Modal) */
.craft-modal-box {
  max-width: 720px !important;
  padding: 0 !important;
  overflow: hidden;
  background: var(--primary-bg) !important;
  border: 1px solid rgba(196, 147, 45, 0.3) !important;
  box-shadow: none !important;
  border-radius: var(--radius-sm, 6px) !important;
}

.craft-modal-body img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.craft-modal-caption {
  padding: 24px 30px;
  background: #0D0D0E;
  border-top: 1px solid var(--border-color);
}

.craft-modal-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 4px;
}

.craft-modal-caption h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
}

/* ==========================================================================
   Section 07: Team
   ========================================================================== */
#team {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
  padding: 70px 80px 40px;
}

@media (min-width: 992px) {
  #team {
    min-height: calc(var(--vh, 1vh) * 100);
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  #team .section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.team-header-sticky {
  position: sticky;
  top: 70px;
  background: var(--primary-bg);
  z-index: 10;
  padding-top: 12px;
  padding-bottom: 10px;
  margin-top: -12px;
}

.roster-container {
  display: flex;
  gap: 40px;
  margin-top: 16px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.roster-list-col {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}

.roster-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roster-showcase-col {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.roster-item {
  display: flex;
  align-items: center;
  padding: 0 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  min-height: 0;
}

.roster-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.roster-num {
  font-size: 11px;
  font-family: monospace;
  color: var(--accent-gold);
  margin-right: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.roster-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-grow: 1;
}

.roster-item.active .roster-name,
.roster-item:hover .roster-name {
  color: var(--text-main);
  transform: translateX(10px);
}

.roster-role-short {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.roster-item.active .roster-role-short,
.roster-item:hover .roster-role-short {
  opacity: 1;
  color: var(--accent-gold);
}

/* Cinematic Showcase Card */
.roster-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--primary-bg);
  box-shadow: none;
  transition: all 0.4s ease;
}

.roster-showcase:hover {
  box-shadow: none;
  border-color: var(--accent-gold);
}

.roster-glow {
  display: none;
}

#activeRosterCard {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.roster-img-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.roster-showcase:hover .roster-img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.95);
}

.roster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.98) 0%, rgba(10, 10, 11, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 3;
}

.roster-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.roster-name-big {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.roster-quote {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  max-width: 95%;
  position: relative;
}

.roster-quote::before {
  content: '“';
  font-size: 42px;
  color: var(--accent-gold);
  position: absolute;
  top: -24px;
  left: -8px;
  opacity: 0.2;
  font-family: serif;
}

/* ==========================================================================
   Secondary Extended Team Carousel & Cards
   ========================================================================== */
.team-extended-section {
  margin-top: 20px;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.team-extended-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 20px;
}

.team-extended-badge {
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
}

.team-extended-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.3px;
  margin: 0;
}

.team-carousel-nav {
  display: flex;
  gap: 10px;
}

.team-carousel-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-carousel-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0a0a0b;
  transform: translateY(-2px);
}

.team-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.team-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.team-carousel-wrapper.is-dragging {
  cursor: grabbing;
}

.team-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 4px 10px 4px;
  will-change: transform;
}

.team-card-item {
  position: relative;
  width: 120px;
  flex-shrink: 0;
  background: #121214;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.team-card-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 18px rgba(212, 175, 55, 0.12);
}

.team-card-media {
  width: 100%;
  height: 110px;
  position: relative;
  overflow: hidden;
  background: #16161a;
}

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

.team-card-item:hover .team-card-media img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}

/* Dark gradient overlay badge — matches roster-overlay style */
.team-card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.97) 0%, rgba(10, 10, 11, 0.5) 70%, transparent 100%);
  padding: 18px 8px 7px;
  z-index: 2;
  transition: padding-bottom 0.3s ease;
}

.team-card-item:hover .team-card-badge {
  padding-bottom: 10px;
}

.team-card-name {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1px 0;
  line-height: 1.2;
  letter-spacing: -0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-card-role {
  font-size: 9px;
  font-weight: 500;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
  line-height: 1.2;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Outdated CTA styles removed - Centralized in Section 10 at the bottom of stylesheet */

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-overlay.open {
  display: flex;
  background: rgba(0, 0, 0, 0.82);
}

.modal-box {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm, 6px);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  margin: 0 24px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  position: relative;
  box-shadow: none;
}

.modal-box.contact-modal-box {
  max-width: 920px;
  padding: 0 !important;
  border-radius: var(--radius-sm, 6px) !important;
  overflow: hidden;
  border: 1px solid var(--border-color) !important;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent-gold);
  border: none;
  border-radius: var(--radius-sm, 6px);
  color: #ffffff;
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.25s, transform 0.25s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent-gold-hover);
  transform: scale(1.08);
}

.modal-split-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 560px;
}

.modal-form-side {
  flex: 1.25;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.modal-map-side {
  flex: 0.85;
  position: relative;
  border-left: none;
  display: block;
}

.modal-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: none;
}

.modal-tab-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0 14px;
  cursor: pointer;
  position: relative;
  font-family: var(--font-sans);
  transition: color 0.3s ease;
}

.modal-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modal-tab-btn.active {
  color: var(--text-main);
}

.modal-tab-btn.active::after {
  transform: scaleX(1);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #121214;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm, 6px);
  color: var(--text-main);
  font-size: 13.5px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-family: var(--font-sans);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3A3A3E;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: #1a1a1d;
  border-color: var(--accent-gold);
  box-shadow: none;
}

.form-group textarea {
  resize: none;
  height: 80px;
  line-height: 1.6;
}

.form-group select {
  color: var(--text-dim);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23808085' stroke-width='1.5'%3E%3Cpath d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 32px;
}

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

.modal-submit-actions {
  display: block;
  margin-top: 20px;
}

.btn-submit-main {
  width: 100%;
  background: var(--accent-gold);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm, 6px);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  box-shadow: none;
}

.btn-submit-main:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: none;
}

.form-note {
  font-size: 10.5px;
  color: #3A3A3E;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.modal-map-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--primary-bg);
}

.modal-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(110%) brightness(95%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.modal-map-container:hover iframe {
  opacity: 0.9;
}

.modal-map-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-map-center-pin svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
  animation: pinBounce 2s infinite ease-in-out;
}

.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 14px;
  height: 7px;
  background: rgba(196, 147, 45, 0.4);
  border-radius: 50%;
  z-index: -1;
  animation: pulseShadow 2s infinite ease-in-out;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseShadow {

  0%,
  100% {
    transform: translate(-50%, 50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, 50%) scale(1.6);
    opacity: 0.15;
  }
}

.modal-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 15, 16, 0.98) 40%, rgba(15, 15, 16, 0.6) 80%, rgba(15, 15, 16, 0));
  padding: 24px;
  pointer-events: none;
}

.modal-map-tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.modal-map-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.modal-map-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.4;
}

/* Map switcher inside contact modal */
.map-switcher {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm, 6px);
  padding: 4px;
  box-shadow: none;
}

.map-switch-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
}

.map-switch-btn:hover {
  color: #ffffff;
}

.map-switch-btn.active {
  background: var(--accent-gold);
  color: #ffffff;
  box-shadow: none;
}

@media (max-width: 768px) {
  .modal-box.contact-modal-box {
    max-width: 520px;
    margin: 16px;
  }

  .modal-split-container {
    flex-direction: column;
    min-height: auto;
  }

  .modal-map-side {
    display: none;
  }

  .modal-submit-actions {
    grid-template-columns: 1fr;
  }

  .modal-form-side {
    padding: 32px 20px 24px;
  }
}

/* success state */
.success-state {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: var(--accent-gold);
}

.success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.success-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Section 08: Numbers
   ========================================================================== */
/* ==========================================================================
   Section 08 & 09: Numbers & Trust (Combined Orbit Layout)
   ========================================================================== */
.combined-impact-section {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
  padding: 95px 0 65px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--vh, 1vh) * 100);
  height: auto;
  box-sizing: border-box;
}

/* Concentric Orbiting System */
.orbit-tracks-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 20%, #000 80%, rgba(0, 0, 0, 0.1) 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 20%, #000 80%, rgba(0, 0, 0, 0.1) 92%, transparent 100%);
  transform-origin: center center;
  transition: transform var(--transition-slow);
}

.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  box-sizing: border-box;
  transform-origin: center center;
}

/* Orbit Track Diameters */
.orbit-track-1 {
  width: 1000px;
  height: 1000px;
}

.orbit-track-2 {
  width: 1400px;
  height: 1400px;
}

.orbit-track-3 {
  width: 1800px;
  height: 1800px;
}

/* Rotation Keyframes */
@keyframes orbit-clockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-counter-clockwise {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes counter-rotate-clockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes counter-rotate-counter-clockwise {
  from {
    transform: rotate(-360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Apply slow speed movement to orbits */
.orbit-track-1 {
  animation: orbit-clockwise 60s linear infinite;
}

.orbit-track-1 .orbit-icon {
  animation: counter-rotate-clockwise 60s linear infinite;
}

.orbit-track-2 {
  animation: orbit-counter-clockwise 80s linear infinite;
}

.orbit-track-2 .orbit-icon {
  animation: counter-rotate-counter-clockwise 80s linear infinite;
}

.orbit-track-3 {
  animation: orbit-clockwise 110s linear infinite;
}

.orbit-track-3 .orbit-icon {
  animation: counter-rotate-clockwise 110s linear infinite;
}

/* Individual Track Hover Pause state */
.orbit-track.paused,
.orbit-track.paused .orbit-icon {
  animation-play-state: paused !important;
}

/* Orbit Icon Holder (angular placements) */
.orbit-icon-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

/* Placement - Inner (Radius 500px - 5 Icons) */
.orbit-holder-1-1 {
  transform: rotate(0deg) translate(500px);
}

.orbit-holder-1-2 {
  transform: rotate(72deg) translate(500px);
}

.orbit-holder-1-3 {
  transform: rotate(144deg) translate(500px);
}

.orbit-holder-1-4 {
  transform: rotate(216deg) translate(500px);
}

.orbit-holder-1-5 {
  transform: rotate(288deg) translate(500px);
}

/* Placement - Middle (Radius 700px - 7 Icons) */
.orbit-holder-2-1 {
  transform: rotate(0deg) translate(700px);
}

.orbit-holder-2-2 {
  transform: rotate(51deg) translate(700px);
}

.orbit-holder-2-3 {
  transform: rotate(103deg) translate(700px);
}

.orbit-holder-2-4 {
  transform: rotate(154deg) translate(700px);
}

.orbit-holder-2-5 {
  transform: rotate(206deg) translate(700px);
}

.orbit-holder-2-6 {
  transform: rotate(257deg) translate(700px);
}

.orbit-holder-2-7 {
  transform: rotate(309deg) translate(700px);
}

/* Placement - Outer (Radius 900px - 9 Icons) */
.orbit-holder-3-1 {
  transform: rotate(0deg) translate(900px);
}

.orbit-holder-3-2 {
  transform: rotate(40deg) translate(900px);
}

.orbit-holder-3-3 {
  transform: rotate(80deg) translate(900px);
}

.orbit-holder-3-4 {
  transform: rotate(120deg) translate(900px);
}

.orbit-holder-3-5 {
  transform: rotate(160deg) translate(900px);
}

.orbit-holder-3-6 {
  transform: rotate(200deg) translate(900px);
}

.orbit-holder-3-7 {
  transform: rotate(240deg) translate(900px);
}

.orbit-holder-3-8 {
  transform: rotate(280deg) translate(900px);
}

.orbit-holder-3-9 {
  transform: rotate(320deg) translate(900px);
}

/* Double Rotator to negate static placement angle and keep icon globally upright */
.orbit-icon-rotator {
  position: absolute;
  width: 0;
  height: 0;
}

/* Rotators - Inner */
.orbit-holder-1-1 .orbit-icon-rotator {
  transform: rotate(0deg);
}

.orbit-holder-1-2 .orbit-icon-rotator {
  transform: rotate(-72deg);
}

.orbit-holder-1-3 .orbit-icon-rotator {
  transform: rotate(-144deg);
}

.orbit-holder-1-4 .orbit-icon-rotator {
  transform: rotate(-216deg);
}

.orbit-holder-1-5 .orbit-icon-rotator {
  transform: rotate(-288deg);
}

/* Rotators - Middle */
.orbit-holder-2-1 .orbit-icon-rotator {
  transform: rotate(0deg);
}

.orbit-holder-2-2 .orbit-icon-rotator {
  transform: rotate(-51deg);
}

.orbit-holder-2-3 .orbit-icon-rotator {
  transform: rotate(-103deg);
}

.orbit-holder-2-4 .orbit-icon-rotator {
  transform: rotate(-154deg);
}

.orbit-holder-2-5 .orbit-icon-rotator {
  transform: rotate(-206deg);
}

.orbit-holder-2-6 .orbit-icon-rotator {
  transform: rotate(-257deg);
}

.orbit-holder-2-7 .orbit-icon-rotator {
  transform: rotate(-309deg);
}

/* Rotators - Outer */
.orbit-holder-3-1 .orbit-icon-rotator {
  transform: rotate(0deg);
}

.orbit-holder-3-2 .orbit-icon-rotator {
  transform: rotate(-40deg);
}

.orbit-holder-3-3 .orbit-icon-rotator {
  transform: rotate(-80deg);
}

.orbit-holder-3-4 .orbit-icon-rotator {
  transform: rotate(-120deg);
}

.orbit-holder-3-5 .orbit-icon-rotator {
  transform: rotate(-160deg);
}

.orbit-holder-3-6 .orbit-icon-rotator {
  transform: rotate(-200deg);
}

.orbit-holder-3-7 .orbit-icon-rotator {
  transform: rotate(-240deg);
}

.orbit-holder-3-8 .orbit-icon-rotator {
  transform: rotate(-280deg);
}

.orbit-holder-3-9 .orbit-icon-rotator {
  transform: rotate(-320deg);
}

/* Orbit Brand Icon Element */
.orbit-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  margin-left: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 16px;
  box-shadow: none;
  transition: border-color var(--transition-normal), transform var(--transition-fast) cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
}

.orbit-icon.fade-out {
  opacity: 0;
  pointer-events: none;
}

.orbit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-filter: grayscale(100%) brightness(1.2);
  filter: grayscale(100%) brightness(1.2);
  transition: filter var(--transition-normal), -webkit-filter var(--transition-normal), transform var(--transition-normal);
}

.orbit-icon:hover {
  border-color: var(--accent-gold);
  box-shadow: none;
  transform: scale(1.28);
  background: #18181b;
}

.orbit-icon:hover img {
  -webkit-filter: grayscale(0%) brightness(1.3);
  filter: grayscale(0%) brightness(1.3);
  transform: scale(1.08);
}

/* Text-Only Orbit Logo Styles */
.orbit-icon.text-only {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.orbit-icon-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  transition: color var(--transition-normal);
}

.orbit-icon:hover .orbit-icon-text {
  color: var(--accent-gold);
}

/* Center Content & Stats */
.orbit-center-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto 30px;
  pointer-events: auto;
}

.combined-headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.combined-sub-headline {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 400;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}

.stat-card {
  flex: 1;
  min-width: 180px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-6px);
}

.num-val {
  font-size: 68px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.num-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Bottom Row: Loyal Clients (Static Centered Layout) */
.loyal-clients-section {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  padding-bottom: 45px;
  background: var(--primary-bg);
}

.loyal-clients-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--primary-bg));
  pointer-events: none;
}

.client-logo-img {
  height: 18px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: filter var(--transition-normal), transform var(--transition-normal);
}

.client-pill:hover .client-logo-img {
  filter: grayscale(0) brightness(1.3);
  transform: scale(1.05);
}

.loyal-clients-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-weight: 600;
}

.loyal-static-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.loyal-clients-static-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm, 6px);
  transition: all var(--transition-normal);
  opacity: 0.55;
  cursor: default;
  white-space: nowrap;
}

.client-pill:hover {
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(196, 147, 45, 0.25);
  transform: translateY(-1px);
}

.client-pill-inner {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-main);
  transition: color var(--transition-normal);
}

.client-pill-inner.small {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.client-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-gold);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity var(--transition-normal);
}

.client-pill:hover .client-dot {
  opacity: 1;
}

/* Responsiveness & Scaling */
@media (max-width: 1400px) {
  .orbit-tracks-mask {
    transform: scale(0.8);
  }

  .hero-nav {
    padding: 30px 40px;
  }

  .hero-nav.scrolled {
    padding: 20px 40px;
  }
}

@media (max-width: 1200px) {
  .orbit-tracks-mask {
    transform: scale(0.68);
  }
}

@media (max-width: 992px) {
  .orbit-tracks-mask {
    transform: scale(0.52);
  }

  .combined-impact-section {
    min-height: 750px;
    padding: 80px 0 40px;
  }
}

@media (max-width: 768px) {
  .orbit-tracks-mask {
    display: none;
  }

  .combined-impact-section {
    height: auto;
    min-height: auto;
    padding: 80px 24px 60px;
  }

  .orbit-center-content {
    margin-bottom: 40px;
    padding: 0;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .stat-card {
    width: 100%;
  }

  .loyal-clients-section {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 0;
    background: transparent;
  }

  .loyal-clients-section::before {
    display: none;
  }
}

/* ==========================================================================
   Section 10: CTA (Redesigned with Form Card & Contact Row)
   ========================================================================== */
/* ==========================================================================
   Section 10: CTA (Redesigned with Form Card & Contact Row)
   - Streamlined Compact Layout for Single-Screen Alignment with Footer
   ========================================================================== */
.section-cta {
  background: var(--primary-bg);
  padding: 0;
  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.cta-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 80px 80px 24px;
  box-sizing: border-box;
  height: 100%;
}

.cta-content-wrapper .section-content {
  width: 100%;
  max-width: var(--container-max-width, 1320px);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-card {
  flex: 1;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(rgba(10, 10, 11, 0.45), rgba(10, 10, 11, 0.75)), url('../assets/img/cta_bg.webp') no-repeat center center / cover;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid var(--border-color);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 40px;
  align-items: stretch;
  box-shadow: none;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

/* Left Side: Typography and Column texts */
.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta-heading {
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -1.5px;
  text-align: left;
}

.cta-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  max-width: 480px;
}

.cta-desc-1,
.cta-desc-2 {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: left;
}

.cta-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cta-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm, 6px);
  transition: all var(--transition-fast) ease-in-out;
}

.cta-meta-item i {
  color: var(--accent-gold, #C5A880);
  font-size: 13px;
}

.cta-meta-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold, #C5A880);
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  margin: 12px 0;
}

/* Right Side: Accent Card wrapper */
.cta-right {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  align-self: center;
  height: 50%;
  min-height: 200px;
}

.cta-accent-card {
  background: var(--accent-gold);
  border-radius: var(--radius-sm, 6px);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  height: 100%;
  box-shadow: none;
  box-sizing: border-box;
}

.cta-accent-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.cta-accent-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.cta-accent-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cta-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.cta-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.cta-accent-btn {
  background: #0A0B0E;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm, 6px);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast) ease-in-out;
  box-shadow: none;
  white-space: nowrap;
  text-align: center;
}

.cta-accent-btn:hover {
  background: #ffffff;
  color: #0A0B0E;
  transform: translateY(-2px);
  box-shadow: none;
}

.cta-accent-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Footer (Streamlined for 1-Screen Alignment with CTA)
   ========================================================================== */
.footer-wrapper {
  background: var(--primary-bg);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.footer-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer-content {
  padding: 16px 40px 12px;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}

.footer-brand-side {
  flex: 1.1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-desc {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 10px;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-socials a {
  color: var(--text-dim);
  font-size: 13px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm, 6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  color: #ffffff;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-back-top {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm, 6px);
  transition: all var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.btn-back-top:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-links-side {
  flex: 1.9;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-link-col {
  flex: 1;
}

.footer-heading {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bg-graphics {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-lines {
  width: 100%;
  height: 100%;
}

/* Footer Address Column */
.footer-col-address {
  flex: 1.5 !important;
  min-width: 220px;
}

.footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-address-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  transition: all var(--transition-fast);
  padding: 2px 0;
}

.footer-address-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.footer-address-label i {
  font-size: 10px;
}

.footer-address-text {
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-dim);
  margin: 0;
  text-align: left;
  transition: all var(--transition-fast);
}

.footer-address-item:hover .footer-address-text {
  color: #ffffff;
}

.footer-address-item:hover .footer-address-label {
  transform: translateX(4px);
}

.location-map-link {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1px;
}

.location-map-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  transform: translateY(-1px);
}

.location-map-link i {
  font-size: 9px;
  transition: transform var(--transition-fast);
}

.location-map-link:hover i {
  transform: translate(2px, -2px);
}

.footer-bottom {
  background: var(--surface-color);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 8px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: #F5C137;
  opacity: 0.6;
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity var(--transition-fast);
}

.footer-bottom p:hover {
  opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .section-cta {
    height: auto !important;
    min-height: 100vh !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .cta-content-wrapper {
    padding: 80px 24px 20px !important;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 50px;
  }

  .cta-left {
    gap: 40px;
  }

  .cta-right {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    align-self: auto;
    width: 100%;
  }

  .cta-accent-card {
    max-width: 100%;
    height: auto;
  }

  .footer-content {
    padding: 60px 40px;
    flex-direction: column;
    gap: 60px;
  }

  .footer-brand-side {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-desc {
    text-align: center;
  }

  .footer-links-side {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cta-card {
    padding: 48px 32px;
  }

  .cta-heading {
    font-size: 48px;
  }

  .cta-accent-card {
    padding: 28px;
    gap: 30px;
  }

  .footer-links-side {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-link-col {
    min-width: 140px;
    flex: 1 1 auto;
  }
}

@media (max-width: 576px) {
  .section-cta {
    padding: 40px 20px;
  }

  .cta-card {
    padding: 36px 20px;
    gap: 40px;
  }

  .cta-heading {
    font-size: 36px;
  }

  .cta-accent-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-accent-btn {
    width: 100%;
    text-align: center;
  }


  .footer-content {
    padding: 48px 24px;
  }

  .footer-links-side {
    flex-direction: column;
    gap: 40px;
  }

  .footer-link-col {
    width: 100%;
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a:hover {
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 991px) {
  :root {
    --section-padding: 100px 40px;
  }

  section {
    height: auto !important;
  }

  .hwt-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .oa-item {
    border-bottom: 1px solid var(--border-color);
  }

  .itc-grid-page {
    grid-template-rows: repeat(3, 160px);
  }

  .roster-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .roster-list-col,
  .roster-showcase-col {
    max-width: 100%;
    width: 100%;
  }

  .hero-nav {
    padding: 20px 40px;
  }

  .hero-nav.scrolled {
    padding: 15px 40px;
  }
}

/* Global Anti-Overflow & Base Standards */
html,
body {
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track,
  .marquee-row,
  .bg-lines {
    animation: none !important;
  }
}

/* ==========================================================================
   3-Tier Responsive Breakdown
   ========================================================================== */

/* Tier 3 & 2 Transition (max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-nav {
    padding: 20px 32px;
  }

  .nav-links {
    display: flex !important;
    gap: 20px;
  }

  .nav-link-item {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .nav-toggle-btn {
    display: none !important;
  }
}

/* Tablet & Mobile Shared Tweaks */
@media (max-width: 991px) {
  :root {
    --section-padding: 80px 32px;
  }

  section {
    height: auto !important;
  }

  .hwt-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .oa-item {
    border-bottom: 1px solid var(--border-color);
  }

  .itc-grid-page {
    grid-template-rows: 240px 240px;
  }

  .roster-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .roster-list-col,
  .roster-showcase-col {
    max-width: 100%;
    width: 100%;
  }

  .hero-nav {
    padding: 20px 32px;
  }

  .hero-nav.scrolled {
    padding: 15px 32px;
  }
}

/* Tier 1: Phone (< 768px) */
@media (max-width: 767.98px) {
  :root {
    --section-padding: 70px 20px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-toggle-btn {
    display: flex !important;
  }

  .hero-video-badge {
    display: flex;
  }

  #hero {
    min-height: 100svh;
    height: 100svh;
    padding: 0 20px;
  }

  .hero-h1 {
    font-size: clamp(2rem, 7.5vw, 3.2rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em;
  }

  .hero-sub {
    font-size: 14px !important;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 28px !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-premium,
  .btn-outline-premium {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: var(--radius-sm, 6px);
  }

  .itc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .itc-controls {
    align-self: flex-end;
  }

  .itc-grid-page {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }

  .itc-grid-page .itc-cell {
    grid-column: 1 / 7 !important;
    grid-row: auto !important;
    height: 240px;
  }

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

  .oa-item {
    border-right: none;
  }

  .tw-viewport {
    height: 400px;
  }

  .tw-content {
    left: 20px;
    bottom: 30px;
  }

  .num-val {
    font-size: 48px;
  }

  .hero-content {
    padding-top: 40px;
  }

  /* Fullscreen Sheet Modal on Phone */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .contact-modal-box {
    width: 100% !important;
    max-width: 100% !important;
    height: 94svh !important;
    max-height: 94svh !important;
    border-radius: 16px 16px 0 0 !important;
    margin: 0 !important;
    padding: 24px 20px max(24px, env(safe-area-inset-bottom)) 20px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
  }

  .modal-split-container {
    flex-direction: column !important;
    min-height: auto;
    gap: 28px;
  }

  .modal-form-side {
    padding: 0 !important;
  }

  .modal-map-side {
    height: 240px;
    min-height: 240px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
  }

  .modal-tabs {
    width: 100%;
    justify-content: space-around;
  }

  .modal-tab-btn {
    flex: 1;
    text-align: center;
  }

  .form-row-2col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Anti auto-zoom iOS Safari: 16px font-size */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: 13px 14px !important;
  }

  .btn-submit-main {
    height: 52px !important;
    font-size: 15px !important;
    border-radius: var(--radius-sm, 6px);
  }

  .craft-modal-box {
    max-height: 85svh !important;
    width: 95% !important;
    padding: 16px !important;
  }

  /* Extended Team Carousel on Mobile */
  .team-extended-section {
    margin-top: 32px;
    padding-top: 24px;
  }

  .team-extended-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .team-extended-title {
    font-size: 17px;
  }

  .team-card-item {
    width: 145px;
  }

  .team-card-media {
    height: 170px;
  }

  .team-card-badge {
    padding: 18px 10px 8px;
  }

  .team-card-name {
    font-size: 12px;
  }

  .team-card-role {
    font-size: 9px;
  }
}

/* ==========================================================================
   Height-Based Spacing Adjustments for Laptop Screens (e.g. 768px, 800px, 900px height)
   ========================================================================== */
@media (min-width: 992px) and (max-height: 880px) {
  :root {
    --section-padding: 75px 60px;
  }

  #inside-craft {
    padding: 80px 60px 40px !important;
    min-height: calc(var(--vh, 1vh) * 100);
    height: auto;
  }

  #inside-craft .section-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }

  .itc-header {
    margin-bottom: 20px;
  }

  .itc-header .section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 0;
  }

  .itc-slider-wrapper {
    margin-top: 15px !important;
  }

  .itc-grid-page {
    grid-template-rows: repeat(3, clamp(115px, 14.5vh, 150px));
    gap: 10px;
  }

  #team {
    padding: 55px 60px 30px !important;
    min-height: calc(var(--vh, 1vh) * 100);
    height: calc(var(--vh, 1vh) * 100);
    align-items: stretch;
  }

  .team-header-sticky {
    top: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: -8px;
  }

  .team-header-sticky .section-title {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 0;
  }

  .roster-container {
    margin-top: 10px;
    gap: 30px;
  }

  .roster-item {
    padding: 0;
  }

  .roster-name {
    font-size: 14px;
  }

  .roster-showcase {
    min-height: 0;
  }

  .roster-name-big {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .roster-overlay {
    padding: 16px;
  }

  .team-extended-section {
    margin-top: 14px;
    padding-top: 12px;
  }

  .team-extended-header {
    margin-bottom: 8px;
  }

  .team-carousel-track {
    padding: 2px 4px 8px;
  }

  .combined-impact-section {
    min-height: calc(var(--vh, 1vh) * 100);
    height: auto;
    padding: 75px 0 35px;
  }

  .orbit-tracks-mask {
    transform: scale(0.62);
  }

  .orbit-center-content {
    margin-bottom: 16px;
    padding: 0 20px;
  }

  .combined-headline {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .combined-sub-headline {
    font-size: 12.5px;
    margin-bottom: 18px;
    max-width: 520px;
  }

  .num-val {
    font-size: 46px;
  }

  .num-label {
    font-size: 10px;
  }

  .loyal-clients-section {
    padding-top: 12px;
    padding-bottom: 20px;
  }

  .loyal-clients-label {
    margin-bottom: 8px;
    font-size: 9.5px;
  }

  .client-pill {
    padding: 6px 18px;
  }

  .client-logo-img {
    height: 15px;
    max-width: 75px;
  }

  .section-cta {
    padding: 0 !important;
    min-height: calc(var(--vh, 1vh) * 100);
    height: calc(var(--vh, 1vh) * 100);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }

  .cta-content-wrapper {
    padding: 70px 60px 20px !important;
    height: 100%;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-card {
    padding: 42px 40px;
    gap: 28px;
  }

  .cta-left {
    gap: 14px;
  }

  .cta-desc-1,
  .cta-desc-2 {
    font-size: 11.5px;
  }

  .cta-right {
    min-height: 160px;
  }

  .cta-accent-card {
    padding: 14px 18px;
    gap: 10px;
  }

  .cta-accent-text {
    font-size: 11.5px;
  }

  .cta-stat-num {
    font-size: 20px;
  }

  .footer-content {
    padding: 12px 40px 8px !important;
    gap: 24px;
  }

  .footer-desc {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-address-text {
    font-size: 10px;
  }

  .approach-panels-container {
    height: 65vh;
  }

  .approach-panels-container.has-active .process-panel.is-active {
    padding: 30px;
  }

  .panel-active-content .active-identity .step-number-active {
    font-size: 3.5rem;
  }

  .panel-active-content .active-identity .step-title-active {
    font-size: 1.15rem;
  }

  .panel-active-content .active-divider {
    margin: 0 20px;
  }

  .panel-active-content .step-desc-active {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
}

/* Extra Height-Based Spacing Adjustments for Compact Laptop Screens (Height <= 720px) */
@media (min-width: 992px) and (max-height: 720px) {
  #inside-craft {
    padding: 70px 40px 20px !important;
  }

  .itc-grid-page {
    grid-template-rows: repeat(3, 105px);
    gap: 8px;
  }

  .itc-slider-wrapper {
    margin-top: 10px !important;
  }

  #team {
    padding: 70px 40px 30px !important;
  }

  .roster-container {
    margin-top: 10px;
    gap: 20px;
  }

  .roster-showcase {
    min-height: 240px;
  }

  .combined-impact-section {
    padding: 65px 0 20px;
  }

  .orbit-tracks-mask {
    transform: scale(0.52);
  }

  .combined-headline {
    font-size: 26px;
  }

  .num-val {
    font-size: 38px;
  }

  .section-cta {
    padding: 0 !important;
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .cta-content-wrapper {
    padding: 55px 30px 12px !important;
  }

  .cta-card {
    padding: 24px 24px !important;
    gap: 18px !important;
  }

  .cta-heading {
    font-size: 24px !important;
  }

  .footer-content {
    padding: 8px 30px 6px !important;
    gap: 16px !important;
  }
}

/* Utilities */
.roster-sticky-active {
  font-weight: 700 !important;
  color: var(--text-main) !important;
  font-size: 19px !important;
}