/* ==========================================================================
  style.css
   Dark industrial luxury agency theme
   ========================================================================== */

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

:root {
  /* ── Blacks & Darks ── */
  --black:          #080808;
  --off-black:      #111111;
  --dark:           #1c1c1c;
  --mid:            #2d2d2d;

  /* ── Grays ── */
  --gray-dark:      #3a3a3a;
  --gray:           #6b6b6b;
  --gray-light:     #a8a8a8;
  --gray-pale:      #d6d6d6;

  /* ── Whites ── */
  --white:          #ffffff;
  --off-white:      #f5f5f5;
  --bone:           #ede9e3;
  --cream:          #f9f6f0;

  /* ── Oranges ── */
  --orange:         #eb7d00;
  --orange-light:   #ff9d38;
  --orange-deep:    #c46200;
  --orange-muted:   #d4884a;

  /* ── Aliases — keep existing CSS working ── */
  --gold:           #eb7d00;
  --gold-light:     #ff9d38;
  --accent:         #c46200;
  --text-muted:     #a8a8a8;

  /* ── Off-orange: warm muted text for dark backgrounds ── */
  --off-orange:     #c4a882;

  --font-display:   'Orbitron', system-ui, sans-serif;
  --font-condensed: 'JetBrains Mono', monospace;
  --font-body:      'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-height:     90px;
  --section-pad:    50px;
  --side-pad:       60px;
  --max-width:      1400px;

  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:    cubic-bezier(0.77, 0, 0.175, 1);
}

/* ─── BASE ────────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body.js-ready {
  cursor: none;
}

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

a { color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }


/* ==========================================================================
   SITE LOGO
   ========================================================================== */
.site-logo {
  position: absolute;
  top: 6px;
  left: 16px;
  z-index: 1000;
  display: block;
  width: 200px;
  transition: opacity 0.3s var(--ease-out);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-logo:hover {
  opacity: 0.8;
}

/* ── Top Navigation Bar ── */
.top-nav {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(8,8,8,0.65);
  padding: 9px 32px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.top-nav-link {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color 0.25s;
}
.top-nav-link:hover { color: #eb7d00; }

@media (max-width: 1024px) {
  .top-nav { gap: 24px; padding: 8px 22px; }
}
@media (max-width: 768px) {
  .top-nav { display: none; }
}

/* ==========================================================================
   CURSOR
   ========================================================================== */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--orange);
  transition: width 0.2s, height 0.2s, background 0.2s;
  z-index: 9999;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  z-index: 9998;
}

/* Cursor grows on interactive elements */
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 16px;
  height: 16px;
  background: var(--orange-light);
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px;
  height: 56px;
  border-color: var(--orange);
}

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* No italics in headings */
h1 em, h2 em, h3 em {
  font-style: normal;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.section {
  padding: var(--section-pad) var(--side-pad);
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Buttons */
.btn-primary {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover { color: var(--orange); }
.btn-ghost:hover svg { transform: translateX(6px); }

/* Scroll fade-in animation */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-black);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139, 58, 42, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    rgba(10, 10, 10, 0.55);
}

/* Subtle grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad);
  margin-top: 0;
  max-width: 1000px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
  text-align: left;
}

.hero-title .line-clip,
.hero-title .line-inner {
  text-align: left;
  display: block;
}
.hero-title em { font-weight: bold; color: var(--orange); }

.hero-desc {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 2.1;
  letter-spacing: 0.09em;
  word-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-badges {
  position: absolute;
  right: var(--side-pad);
  top: 80px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.hero-badges img {
  width: 78px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease-out);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  background: rgba(255,255,255,0.08);
  padding: 4px;
  border-radius: 6px;
}

.hero-badges img:hover {
  opacity: 1;
}

.hero-badges-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */

/* Section container */
.scroll-section#about-us {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  padding: 440px var(--side-pad) 60px;
  display: flex;
  align-items: flex-start;
}

/* ── Animation base states ── */

/* Stage 1: tag + watermark start offset left */
.anim-stage-1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stage 2: foreground card starts further left */
.anim-stage-2 {
  opacity: 0;
  transform: translateX(-150px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Revealed: .revealed added once by JS, both stages lock permanently ── */
#about-us.revealed .anim-stage-1 {
  opacity: 1;
  transform: translateX(0);
}

#about-us.revealed .anim-stage-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* ── About Us tag — top-left corner ── */
.animate-left-tag {
  position: absolute;
  top: var(--section-pad);
  left: var(--side-pad);
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.animate-left-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Tower watermark — stacked lines below About Us tag ── */
.about-tower-text {
  position: absolute;
  top: calc(var(--section-pad) + 30px);
  left: var(--side-pad);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-tower-text span {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 52px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  letter-spacing: 0.04em;
  line-height: 1.5;
  opacity: 0.45;
}

/* ── Giant hollow watermark — fills section height in background ── */
.giant-hollow-text {
  position: absolute;
  top: 50%;
  left: var(--side-pad);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-size: clamp(30px, 22vh, 220px);
  font-weight: 900;
  line-height: 1.0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(235, 125, 0, 0.45);
  letter-spacing: 0.03em;
}

/* Override transform to preserve vertical centering alongside the slide */
.giant-hollow-text.anim-stage-1 {
  transform: translateY(-50%) translateX(-50px);
}
#about-us.revealed .giant-hollow-text.anim-stage-1 {
  transform: translateY(-50%) translateX(0);
}

/* ── Foreground split card — sits above the watermark ── */
/* Flexbox card — image auto-heights to match text */
.about-main-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 48px;
  width: 95%;
  max-width: 1200px;
  margin: 0;
}

/* Right column: no box, sits on black background */
.about-card-text-box {
  flex: 1;
  background: none;
  padding: 0 var(--side-pad) 0 0;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.5vh, 18px);
}

.about-accent-bar {
  width: 40px;
  height: 3px;
  background: var(--orange);
  position: relative;
  display: flex;
  align-items: center;
}

.about-accent-pulse {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

.about-accent-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%       { opacity: 0.6; transform: translateY(-50%) scale(0.8); }
}

@keyframes pulse-ring {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.2); }
}

.about-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}

.about-lead strong {
  color: var(--orange);
  font-weight: 700;
}

.about-rule {
  border: none;
  border-top: 1px solid rgba(235, 125, 0, 0.18);
  margin: 2px 0;
}

.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--bone);
  line-height: 1.7;
  opacity: 0.88;
}

/* Stats row */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(235, 125, 0, 0.14);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-number sup {
  font-size: 0.55em;
  vertical-align: super;
  opacity: 0.85;
}

.about-stat-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.about-stat-label-2 {
  font-family: var(--font-condensed);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 2px;
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(235, 125, 0, 0.2);
  flex-shrink: 0;
  margin: 0 24px;
}

/* CTA button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 13px 32px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  align-self: flex-start;
}

.about-cta-btn::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s var(--ease-out);
}

.about-cta-btn:hover {
  background: var(--orange);
  color: var(--black);
}

.about-cta-btn:hover::after {
  transform: translateX(5px);
}

/* ==========================================================================
   CAPABILITIES & REACH SECTION
   ========================================================================== */
.cap-section {
  position: relative;
  background: var(--black);
  padding: var(--section-pad) var(--side-pad);
  overflow: hidden;
}

/* Subtle grid texture */
.cap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235,125,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235,125,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cap-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
  z-index: 2;
}
.cap-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Layout ── */
.cap-top-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cap-bottom-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* ── Base card ── */
.cap-card {
  background: var(--off-black);
  border: 1px solid rgba(235,125,0,0.1);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
}
.cap-card:hover {
  border-color: rgba(235,125,0,0.28);
}

.cap-card-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0.8;
}

/* ── Excellence card ── */
.cap-card-header {
  margin-bottom: 36px;
}

.cap-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.cap-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap-pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(235,125,0,0.1);
  transition: background 0.2s;
  cursor: default;
}
.cap-pillar:last-child { border-bottom: none; }
.cap-pillar:hover .cap-pillar-icon { color: var(--orange); transform: scale(1.12); }
.cap-pillar:hover .cap-pillar-text { color: var(--white); }

.cap-pillar-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--orange);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.cap-pillar-icon svg { width: 100%; height: 100%; }

.cap-pillar-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  opacity: 0.9;
}

/* ── Facilities card ── */
.cap-facilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.cap-facilities-icon {
  width: clamp(100px, 14vw, 160px);
  margin-bottom: 16px;
}
.cap-facilities-icon svg { width: 100%; height: auto; }

.cap-facilities-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cap-facilities-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cap-facilities-unit {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}

.cap-facilities-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}

/* ── Map card ── */
.cap-map-card { padding: 44px 44px; }

.cap-map-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.cap-map-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cap-map-svg {
  width: 100%;
  max-width: 340px;
}

.cap-map-locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cap-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cap-location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.6;
}
.cap-location-dot--primary {
  width: 10px;
  height: 10px;
  opacity: 1;
  box-shadow: 0 0 8px rgba(235,125,0,0.5);
  margin-top: 4px;
}

.cap-location-name {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cap-location-detail {
  display: block;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

/* ── Metrics card ── */
.cap-metrics-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cap-metrics-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.cap-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cap-metric {
  position: relative;
}

.cap-metric-value {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cap-metric-unit {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--orange-muted);
  margin-left: 6px;
}

.cap-metric-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 6px;
  margin-bottom: 10px;
}

.cap-metric-bar {
  height: 2px;
  background: rgba(235,125,0,0.15);
  width: 100%;
  border-radius: 1px;
  overflow: hidden;
}

.cap-metric-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--orange-light));
  border-radius: 1px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cap-metric-bar-fill.animated {
  width: var(--pct);
}

.cap-metrics-note {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(235,125,0,0.1);
}

/* ── Map pin pulse animation ── */
.cap-map-pin circle:first-child {
  animation: map-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes map-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.3); }
}

/* ==========================================================================
   LIGHT SECTION
   ========================================================================== */
.section-light {
  position: relative;
  height: 100vh;
  background: var(--off-white);
  overflow: hidden;
  padding: clamp(20px, 4vh, 52px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.section-light-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.section-light-blob--1 {
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, rgba(235, 125, 0, 0.35), transparent 70%);
  top: -20%;
  left: -15%;
}

.section-light-blob--2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(ellipse, rgba(255, 157, 56, 0.25), transparent 70%);
  bottom: -10%;
  right: -5%;
}

.section-light-blob--3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(ellipse, rgba(196, 98, 0, 0.18), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-section {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

/* ── Left: light gray panel ── */
.services-left {
  flex: 0 0 38%;
  background: var(--off-white);
  position: relative;
  padding: 80px var(--side-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* tag override: static inside flex column */
.services-left .animate-left-tag {
  position: absolute !important;
  top: 36px;
  left: var(--side-pad);
}

.services-left-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(45px, 3.2vw, 44px);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
}

.services-title em {
  color: var(--orange);
  font-style: normal;
}

.services-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 20px);
  color: #555;
  line-height: 1.8;
  max-width: 400px;
}

/* ── Right: dark panel with bg images + list ── */
.services-right {
  flex: 1;
  position: relative;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.srv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
}

.srv-bg.active { opacity: 1; }

.srv-bg[data-bg="sheet-metal"] {
  background-size: 200%;
  background-position: center center;
}

.srv-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.72);
  z-index: 1;
}

/* ── Service list ── */
.services-list {
  position: relative;
  z-index: 2;
  list-style: none;
  width: 100%;
  padding: 0 var(--side-pad);
}

.srv-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  text-decoration: none;
}

.srv-num {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
  width: 28px;
}

.srv-info { flex: 1; }

.srv-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  line-height: 1.1;
}

.srv-item:hover .srv-name { color: var(--orange); }

.srv-tagline {
  font-family: var(--font-body);
  font-size: clamp(20px, 0.85vw, 13px);
  color: rgb(255, 255, 255);
  line-height: 1.5;
  margin-top: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s var(--ease-out), opacity 0.3s;
}

.srv-item:hover .srv-tagline {
  max-height: 60px;
  opacity: 1;
}

.srv-arrow {
  font-size: 18px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.srv-item:hover .srv-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   INDUSTRIES SLIDER SECTION
   ========================================================================== */
.industries-section {
  background: var(--white);
  min-height: 100vh;
  padding: var(--section-pad) 0 var(--section-pad) var(--side-pad);
}

/* Side-by-side layout */
.industries-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 60vh;
}

/* Left column */
.industries-left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Override absolute positioning so the tag flows in the column */
.industries-left .animate-left-tag {
  position: static;
}

.industries-statement {
  font-family: var(--font-display);
  font-size: clamp(25px, 1.0vw, 30px);
  color: var(--gray-light);
  line-height: 1.5;
}

/* Right column: slider + controls stacked */
.industries-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.industries-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.industries-track {
  display: flex;
  will-change: transform;
}

.ind-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 70vh;
  overflow: hidden;
}

.ind-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.ind-slide:hover .ind-slide-bg { transform: scale(1.04); }

.ind-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

.ind-slide-content {
  position: absolute;
  left: 36px;
  bottom: 40px;
  right: 36px;
  z-index: 2;
}

.ind-slide-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ind-slide-desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

.ind-learn-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 14px 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.ind-learn-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.ind-learn-btn:hover::after { transform: translateX(0); }
.ind-learn-btn span { position: relative; z-index: 1; }

/* Controls — below the slide, full slide width */
.ind-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0 0;
}

.ind-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(235,125,0,0.4);
  background: none;
  color: var(--orange);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.ind-nav-btn:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.ind-dots {
  display: flex;
  gap: 8px;
  flex: 1;
}

.ind-dot {
  flex: 1;
  height: 3px;
  background: rgba(235,125,0,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.ind-dot.active {
  background: var(--orange);
}

.section-light-layout {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 0;
  gap: 0;
}

.section-light-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 16px);
  padding: 0 16px 0 var(--side-pad);
  width: 55%;
  height: 100%;
}

/* ── OEP Panel ── */
.oep-panel {
  width: 45%;
  padding: 0 var(--side-pad) 0 clamp(16px, 2vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.8vh, 24px);
}

.oep-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: center;
}

.oep-items {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.6vh, 20px);
}

.oep-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1.2vw, 18px);
}

.oep-item-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 700;
  color: #555;
  line-height: 1.4;
  text-align: center;
  flex: 1;
}

.oep-icon {
  flex-shrink: 0;
  width: clamp(36px, 5vh, 52px);
  height: clamp(36px, 5vh, 52px);
}

.section-light-label {
  font-family: var(--font-condensed);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.section-light-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange-deep);
  flex-shrink: 0;
}

.map-iframe {
  width: 100%;
  flex: 1;
  border: none;
  background: transparent;
}

/* ==========================================================================
   HORIZONTAL TIMELINE
   ========================================================================== */
.htl-section {
  position: relative;
  z-index: 2;
  padding: 18px var(--side-pad) 24px;
}

.htl-label {
  margin-bottom: 20px;
}

.htl-track {
  position: relative;
  display: flex;
  --htl-arm: 72px;
}

/* The animated horizontal rail */
.htl-rail {
  position: absolute;
  /* vertically centred on the dots: top of upper arm + half dot cell */
  top: calc(var(--htl-arm) + 12px);
  left: 12.5%;   /* centre of first item (quarter of 50%) */
  right: 12.5%;  /* centre of last item  */
  height: 1px;
  background: linear-gradient(
    to right,
    var(--orange-deep) 0%,
    rgba(196, 98, 0, 0.22) 60%,
    rgba(196, 98, 0, 0.08) 100%
  );
  transform-origin: left center;
  z-index: 1;
}

.htl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Upper and lower arms — equal fixed height keeps dots aligned */
.htl-arm {
  height: var(--htl-arm);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  text-align: center;
  width: 100%;
  position: relative;
}

.htl-arm--top {
  justify-content: flex-end;
  padding-bottom: 12px;
}

/* Vertical tick from year label down to dot */
.htl-arm--top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, rgba(196,98,0,0.3), rgba(196,98,0,0));
}

.htl-arm--bot {
  justify-content: flex-start;
  padding-top: 12px;
}

/* Vertical tick from dot down to year label */
.htl-arm--bot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, rgba(196,98,0,0), rgba(196,98,0,0.3));
}

.htl-arm--empty::after,
.htl-arm--empty::before { display: none; }

/* Dot row */
.htl-dot-cell {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.htl-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--orange), 0 0 14px rgba(235, 125, 0, 0.35);
  flex-shrink: 0;
}

/* Year labels */
.htl-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(12px, 1.1vw, 15px);
  color: var(--orange-deep);
  line-height: 1;
  margin-bottom: 7px;
  display: block;
  letter-spacing: 0.04em;
}

/* Milestone descriptions */
.htl-text {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.75vw, 12px);
  color: #5a5a5a;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   GROWTH / CHART SECTION
   ========================================================================== */
.growth-section {
  background: var(--off-white);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.016) 28px,
    rgba(0,0,0,0.016) 29px
  );
  height: 100vh;
  padding: clamp(14px, 2vh, 32px) var(--side-pad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.growth-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 18px);
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
}

/* ── Full-width header row ── */
.growth-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.growth-logo {
  height: clamp(30px, 4.5vh, 56px);
  width: auto;
  opacity: 0.88;
  filter: brightness(0.15);
}

/* ── Body: chart + timeline ── */
.growth-body {
  display: flex;
  gap: clamp(20px, 3.5vw, 56px);
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.growth-chart-col {
  flex: 1.4;
  display: flex;
  flex-direction: column;
}

.growth-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 0;
}

.growth-big-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.growth-header-tower {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.growth-header-tower span {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--orange);
  letter-spacing: 0.04em;
  line-height: 1.4;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.growth-header-tower span:nth-child(1) { transition-delay: 0.1s; }
.growth-header-tower span:nth-child(2) { transition-delay: 0.25s; }

.growth-section.anim-active .growth-header-tower span {
  opacity: 0.7;
  transform: translateX(0);
}

/* ── Bar chart ── */
.growth-chart-area {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: clamp(6px, 0.8vh, 14px);
}

.growth-bars-container {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(6px, 0.8vw, 14px);
}

.bar-group {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3px, 0.4vh, 6px);
}

/* Icon slot above each bar */
.bar-float-icon {
  height: clamp(24px, 3.5vh, 46px);
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bar-icon-emoji {
  font-size: clamp(1rem, 1.8vh, 1.6rem);
  line-height: 1;
}

.bar-icon-badge {
  font-size: clamp(7px, 0.75vh, 10px);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  padding: 2px 4px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.bar-icon-iso {
  color: #1565C0;
  border: 1.5px solid #1565C0;
}

.bar-icon-asme {
  color: #1565C0;
  border: 1.5px solid #1565C0;
  font-size: clamp(8px, 0.85vh, 11px);
  letter-spacing: 0.08em;
}

/* bar-inner fills the remaining height in each bar-group column */
.bar-inner {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.growth-bar {
  width: 80%;
  height: var(--bh);
  transform: scaleY(0);
  transform-origin: bottom;
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(4px, 0.6vh, 10px);
}

.bar-solid { background: #4DB8E8; }
.bar-highlight { background: #2196C9; }

.bar-projected {
  background: transparent;
  border: 2.5px dashed #e53935;
  border-bottom: none;
}

.bar-pct {
  font-family: var(--font-body);
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 700;
  color: #fff;
}

.bar-val {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 600;
  color: #333;
}

.bar-val.projected-val { color: #e53935; }

.bar-yr {
  font-family: var(--font-body);
  font-size: clamp(9px, 0.8vw, 12px);
  color: #999;
}

.growth-axis {
  height: 2px;
  background: #ccc;
  width: 100%;
  margin-top: 2px;
  transform: scaleX(0);
  transform-origin: left;
}

/* ── Timeline ── */
.growth-timeline-col {
  --tl-gap: clamp(24px, 6.5vh, 80px);
  flex: 1;
  display: flex;
  flex-direction: column;

  justify-content: center;
  gap: var(--tl-gap);
  padding-bottom: 18vh;
}

.tl-item {
  display: grid;
  grid-template-columns: 130px 34px 1fr;
  gap: 0 16px;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tl-item:nth-child(1) { transition-delay: 0.3s; }
.tl-item:nth-child(2) { transition-delay: 0.5s; }
.tl-item:nth-child(3) { transition-delay: 0.7s; }
.tl-item:nth-child(4) { transition-delay: 0.9s; }

.tl-item:not(.tl-item--last)::after {
  content: '';
  position: absolute;
  left: 163px;
  top: 30px;
  bottom: calc(-1 * var(--tl-gap, 44px));
  width: 2px;
  background: rgba(235,125,0,0.25);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
}

.tl-item:nth-child(1)::after { transition-delay: 0.55s; }
.tl-item:nth-child(2)::after { transition-delay: 0.75s; }
.tl-item:nth-child(3)::after { transition-delay: 0.95s; }

/* Active state — set via JS with IntersectionObserver */
.growth-section.anim-active .tl-item {
  opacity: 1;
  transform: none;
}

.growth-section.anim-active .tl-item:not(.tl-item--last)::after {
  transform: scaleY(1);
}

.tl-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding-top: 2px;
  flex-wrap: wrap;
}

.tl-year {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}

.tl-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
}

.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tl-item:nth-child(1) .tl-dot { transition-delay: 0.35s; }
.tl-item:nth-child(2) .tl-dot { transition-delay: 0.55s; }
.tl-item:nth-child(3) .tl-dot { transition-delay: 0.75s; }
.tl-item:nth-child(4) .tl-dot { transition-delay: 0.95s; }

.growth-section.anim-active .tl-dot {
  transform: scale(1);
}

.tl-text {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.2vw, 20px);
  color: #555;
  line-height: 1.6;
  padding-top: 4px;
}

/* ==========================================================================
   ESG SCROLLYTELLING SECTION
   ========================================================================== */
.esg-section {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  --phase-color: #4ade80;
}

/* ── LEFT PANEL — Giant section-height letters ── */
.esg-left {
  flex: 0.7;
  background: #060d06;
  overflow: hidden;
  position: relative;
}

.esg-letters {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.esg-letter-row {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.esg-letter-row + .esg-letter-row {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Staircase landing positions */
.esg-letter-row:nth-child(1) { padding-left: 4%; }
.esg-letter-row:nth-child(2) { padding-left: 20%; }
.esg-letter-row:nth-child(3) { padding-left: 36%; }

.esg-letter-row span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30vh;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px;
  letter-spacing: 0.04em;
  opacity: 0.45;
  display: block;
  user-select: none;
  pointer-events: none;
}

.esg-phase-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.esg-phase-letter {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vh, 52px);
  font-weight: 900;
  color: var(--phase-color);
  line-height: 1;
  letter-spacing: 0.06em;
  transition: color 0.5s ease;
}

.esg-phase-name {
  font-family: var(--font-condensed);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--phase-color);
  opacity: 0.65;
  transition: color 0.5s ease;
  margin-top: 8px;
}

/* HUD */
.esg-hud {
  position: absolute;
  bottom: 36px;
  left: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 2;
}
.esg-hud-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.esg-hud-label {
  font-family: var(--font-condensed);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(235,125,0,0.5);
  width: 88px;
  flex-shrink: 0;
}
.esg-hud-track {
  flex: 1;
  height: 2px;
  background: rgba(235,125,0,0.12);
  border-radius: 1px;
}
.esg-hud-fill {
  height: 100%;
  border-radius: 1px;
  animation: hudPulse 3s ease-in-out infinite;
}
.esg-hud-row:nth-child(1) .esg-hud-fill { background: #22c55e; }
.esg-hud-row:nth-child(2) .esg-hud-fill { background: var(--orange); animation-delay: 0.5s; }
.esg-hud-row:nth-child(3) .esg-hud-fill { background: #22c55e; animation-delay: 1s; }
@keyframes hudPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.esg-hud-val {
  font-family: var(--font-condensed);
  font-size: 9px;
  color: rgba(235,125,0,0.55);
  width: 28px;
  text-align: right;
}

/* Corner labels */
.esg-corner {
  position: absolute;
  font-family: var(--font-condensed);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.esg-corner--tl { top: 20px; left: 20px; color: rgba(34,197,94,0.45); }
.esg-corner--br { bottom: 20px; right: 20px; color: rgba(235,125,0,0.45); }

/* ── RIGHT PANEL colour accents ── */
.esg-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #eb7d00, #22c55e);
  z-index: 3;
}

.esg-right::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── RIGHT PANEL ── */
.esg-right {
  flex: 1.3;
  background: #060d06;
  position: relative;
  overflow: hidden;
}

.esg-right-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.5);
  object-fit: cover;
  z-index: 0;
}

.esg-right-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Slides */
.esg-slide {
  position: absolute;
  inset: 0;
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.esg-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.esg-slide-tag {
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.esg-slide-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Giant intro word — two lines, fits right panel width */
.esg-intro-big {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 88px);
  font-weight: 900;
  color: #0fac07f6;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.esg-slide-body {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.05vw, 20px);
  color: #ffffff;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.esg-scroll-cue {
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: rgba(27, 235, 0, 0.55);
  animation: esgCue 2s ease-in-out infinite;
}
@keyframes esgCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* E/S/G slides */
.esg-big-letter {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 130px);
  font-weight: 900;
  color: var(--lc, var(--orange));
  line-height: 0.85;
  margin-bottom: 12px;
}

.esg-slide-cat {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff94;
  margin-bottom: 32px;
}

.esg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.esg-list li {
  font-family: var(--font-display);
  font-size: clamp(15px, 1vw, 20px);
  color: #fffdfd;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.esg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--lc, var(--orange));
}

/* Progress pips */
.esg-pips {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.esg-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  transition: background 0.3s, transform 0.3s;
}
.esg-pip.active {
  background: var(--orange);
  transform: scale(1.5);
}

.esg-back-to-top {
  position: absolute;
  bottom: 28px;
  left: clamp(32px, var(--side-pad), 80px);
  z-index: 3;
  margin-top: 0;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--off-white);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  transition: color 0.25s var(--ease-out);
  flex-shrink: 0;
}
.back-to-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.back-to-top:hover::after { transform: translateX(0); }
.back-to-top span { position: relative; z-index: 1; }

/* Back-to-top pinned to top-right of the locations section */
#light-section .back-to-top {
  position: absolute;
  top: 16px;
  right: var(--side-pad);
  margin-top: 0;
  z-index: 10;
  padding: 10px 20px;
  font-size: 10px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  :root {
    --side-pad: 40px;
    --section-pad: 90px;
  }
}

/* ==========================================================================
   MACHINERY SECTION
   ========================================================================== */

.machinery-section {
  background: #f8f6f6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--section-pad) var(--side-pad) 0;
  position: relative;
}

.mach-header {
  position: relative;
  padding-top: 48px;
  margin-bottom: 24px;
  max-width: 700px;
  flex-shrink: 0;
}

.machinery-section .animate-left-tag {
  position: absolute !important;
  top: 0;
  left: 0;
}

.mach-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.mach-title-outline {
  color: transparent;
  -webkit-text-stroke: 2px #858585b9;
}

.mach-title em {
  color: var(--orange);
  font-style: normal;
}

.mach-subtitle {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(14px, 0.95vw, 20px);
  color: #888;
  line-height: 1.8;
  max-width: 750px;
}

.mach-cta-row {
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Two-column category layout */
.mach-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(235,125,0,0.1);
}

.mach-cat { display: flex; flex-direction: column; }

.mach-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mach-cat-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

.mach-cat-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mach-list li {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  color: #666;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mach-list li strong {
  color: #bbb;
  font-weight: 600;
}

/* ── Image slideshow ── */
.mach-slides-wrap {
  padding: 0;
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.mach-slides-track {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.mach-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.mach-slide.active { opacity: 1; }

.mach-slides-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  flex-shrink: 0;
}

.mach-btn {
  background: none;
  border: 1px solid rgba(235,125,0,0.4);
  color: var(--orange);
  font-size: 18px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mach-btn:hover {
  background: rgba(235,125,0,0.12);
  border-color: var(--orange);
}

.mach-dots { display: flex; gap: 8px; }

.mach-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(206, 146, 57, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.mach-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mach-categories { grid-template-columns: 1fr; }
  .mach-slides-track { min-height: 200px; }
}

@media (max-width: 768px) {
  :root {
    --side-pad: 28px;
    --section-pad: 80px;
  }

  .hero-content { padding: 0 var(--side-pad) 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-badges  { display: none; }
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #060606;
}

/* top band — logo + nav with column dividers */
.footer-top {
  display: flex;
  align-items: center;
  position: relative;
}

.footer-brand {
  padding: 28px 52px;
  display: flex;
  align-items: center;
  z-index: 1;
  flex-shrink: 0;
}

.footer-brand img {
  height: 72px;
  width: auto;
}

.footer-col-div {
  display: none;
}

.footer-nav-wrap {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  pointer-events: none;
}

.footer-nav-wrap a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.22s;
  pointer-events: auto;
}

.footer-nav-wrap a:hover { color: #eb7d00; }

/* bottom band — info + services */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.footer-info {
  grid-column: span 2;
  padding: 28px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-company-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #eb7d00;
}

.footer-address,
.footer-email,
.footer-phone {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.75;
}

.footer-email a,
.footer-phone {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email a:hover { color: #eb7d00; }

.footer-services-col {
  grid-column: 8 / span 3;
  padding: 28px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.footer-services-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-services-col a {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.22s, padding-left 0.22s;
  display: inline-block;
}

.footer-services-col a:hover {
  color: #eb7d00;
  padding-left: 6px;
}

/* copyright bar */
.footer-copy {
  padding: 12px 52px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .footer-top     { grid-template-columns: 1fr; }
  .footer-brand   { grid-column: 1; border-right: none; padding: 40px 32px 24px; }
  .footer-col-div { display: none; }
  .footer-nav-wrap { grid-column: 1; justify-content: flex-start; padding: 0 32px 40px; gap: 28px; flex-wrap: wrap; }
  .footer-bottom  { grid-template-columns: 1fr; }
  .footer-info    { grid-column: 1; border-right: none; padding: 28px 32px; }
  .footer-services-col { grid-column: 1; border-left: none; padding: 0 32px 48px; }
  .footer-copy    { padding: 18px 32px; flex-direction: column; gap: 4px; }
}
/* ─── LANGUAGE SWITCHER ──────────────────────────────────────────────────── */
.lang-switcher {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 500;
}

.lang-current {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #eb7d00;
  background: rgba(8,8,8,0.65);
  border: 1px solid rgba(235,125,0,0.3);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.lang-current:hover,
.lang-switcher.open .lang-current {
  border-color: rgba(235,125,0,0.7);
}
.lang-current svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: rgba(8,8,8,0.92);
  border: 1px solid rgba(235,125,0,0.3);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  min-width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 14px;
  text-align: left;
  transition: color 0.2s, background 0.2s;
  width: 100%;
}
.lang-btn:hover { color: #ccc; background: rgba(235,125,0,0.08); }
.lang-btn.active { color: #eb7d00; }

@media (max-width: 600px) {
  .lang-switcher { top: 16px; right: 16px; }
}

/* ==========================================================================
   TABLET & MOBILE RESPONSIVE — section stacking
   ========================================================================== */

/* ── Tablet (iPad and similar): up to 1024px ── */
@media (max-width: 1024px) {
  /* Services: stack panels vertically */
  .services-section {
    flex-direction: column;
    min-height: auto;
  }
  .services-left {
    flex: none;
    width: 100%;
    padding: 80px var(--side-pad) 52px;
  }
  .services-right {
    flex: none;
    width: 100%;
    min-height: 60vh;
  }

  /* ESG: stack panels vertically */
  .esg-section {
    flex-direction: column;
    height: auto;
  }
  .esg-left {
    flex: none;
    height: 240px;
  }
  .esg-right {
    flex: none;
    min-height: 65vh;
  }

  /* Growth: stack chart and timeline */
  .growth-inner {
    flex-direction: column;
    gap: 40px;
  }
  .growth-bars-container {
    height: 45vh;
  }
  .bar-inner {
    height: 38vh;
  }

  /* Light section (map + OEP): stack */
  .section-light {
    height: auto;
  }
  .section-light-layout {
    flex-direction: column;
    height: auto;
  }
  .section-light-inner {
    width: 100%;
    height: 55vh;
    padding: 20px var(--side-pad);
  }
  .oep-panel {
    width: 100%;
    padding: 24px var(--side-pad);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .oep-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    width: 100%;
  }
  .oep-item {
    width: calc(50% - 10px);
    justify-content: flex-start;
  }

  /* Industries: stack left label above slider */
  .industries-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .industries-left {
    flex: none;
    width: 100%;
  }
  .industries-right-col {
    width: 100%;
  }

  /* Machinery: allow height to grow past 100vh if needed */
  .machinery-section {
    height: auto;
    min-height: 100vh;
  }
  .mach-slides-track {
    min-height: 280px;
  }
}

/* ── Mobile: up to 768px ── */
@media (max-width: 768px) {
  /* About section: reduce large top padding */
  .scroll-section#about-us {
    padding-top: 180px;
  }
  .about-tower-text span {
    font-size: clamp(32px, 9vw, 60px);
  }
  .about-stats-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .about-stat-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  /* Growth timeline text */
  .tl-text {
    font-size: 14px;
    line-height: 1.7;
  }
  .tl-year {
    font-size: 18px;
  }

  /* ESG: smaller left panel */
  .esg-left {
    height: 180px;
  }
  .esg-letter-row span {
    font-size: 18vh;
  }

  /* Industries slide: use a more mobile-friendly aspect ratio */
  .ind-slide {
    aspect-ratio: 4 / 3;
    max-height: 55vh;
  }

  /* Services left: tighter padding */
  .services-left {
    padding: 60px var(--side-pad) 40px;
  }

  /* OEP: single column on small phones */
  .oep-item {
    width: 100%;
  }

  /* Machinery section */
  .mach-slides-track {
    min-height: 220px;
  }

  /* Horizontal timeline: collapse to vertical stack */
  .htl-track {
    flex-direction: column;
    gap: 0;
  }
  .htl-rail { display: none; }
  .htl-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(196,98,0,0.12);
  }
  .htl-arm--top, .htl-arm--bot {
    height: auto !important;
    padding: 0 !important;
    justify-content: flex-start !important;
  }
  .htl-arm--empty { display: none; }
  .htl-dot-cell {
    height: auto;
    padding-top: 4px;
  }
  .htl-arm::after { display: none; }
}

@media (max-width: 600px) {
  /* ── About: card sits above the tower watermark ── */
  .about-card-text-box {
    position: relative;
    z-index: 2;
    background: var(--black);
  }

  /* ── Growth: expand section and stack chart + timeline ── */
  .growth-section {
    height: auto;
    overflow: visible;
    padding-bottom: 40px;
  }
  .growth-body {
    flex-direction: column;
  }
  .growth-bars-container {
    height: 240px;
    overflow: hidden;
  }
  .growth-bar {
    max-height: 100%;
  }
  .growth-timeline-col {
    padding-bottom: 0;
  }
  .tl-item {
    grid-template-columns: 72px 28px 1fr;
  }
  .tl-item:not(.tl-item--last)::after {
    left: 86px;
  }

  /* ── ESG: taller left panel so E/S/G letters are fully visible ── */
  .esg-left {
    height: 300px;
  }
  .esg-letter-row span {
    font-size: 12vh;
  }
}
