/* ============================================================
   JIMCAN CONSTRUCTION — DESIGN SYSTEM v2
   Premium CSS | Barlow Condensed + DM Sans | Industrial Palette
   ============================================================ */

/* ============================================================
   LAYER 1: PRIMITIVE TOKENS
   ============================================================ */
:root {
  /* Color Primitives */
  --clr-black:        #080909;
  --clr-charcoal-950: #0E1012;
  --clr-charcoal-900: #141618;
  --clr-charcoal-800: #1B1F22;
  --clr-charcoal-700: #242A2D;
  --clr-charcoal-600: #2E3538;
  --clr-charcoal-500: #3A4245;
  --clr-steel-500:    #4A5056;
  --clr-steel-400:    #6B7280;
  --clr-steel-300:    #9CA3AF;
  --clr-steel-200:    #D1D5DB;
  --clr-steel-150:    #E4E7EB;
  --clr-steel-100:    #EDEEF0;
  --clr-steel-50:     #F5F6F7;
  --clr-white:        #FFFFFF;

  /* Accent A — Safety Orange */
  --clr-orange-700:   #C43D00;
  --clr-orange-600:   #DC4400;
  --clr-orange-500:   #F05200;
  --clr-orange-400:   #FF6520;
  --clr-orange-100:   #FFF1EB;

  /* Accent B — Industrial Brass */
  --clr-brass-600:    #8B6520;
  --clr-brass-500:    #A87A28;
  --clr-brass-400:    #C49A3C;
  --clr-brass-300:    #D4B060;
  --clr-brass-100:    #FBF4E3;

  /* Spacing (4pt grid) */
  --sp-1:  4px;   --sp-2:  8px;   --sp-3:  12px;
  --sp-4:  16px;  --sp-5:  20px;  --sp-6:  24px;
  --sp-7:  28px;  --sp-8:  32px;  --sp-10: 40px;  --sp-12: 48px;
  --sp-16: 64px;  --sp-20: 80px;  --sp-24: 96px;
  --sp-32: 128px; --sp-40: 160px;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type Scale — fluid clamp */
  --text-xs:   clamp(0.7rem,   0.65rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.85rem,  0.8rem  + 0.25vw, 0.95rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.1rem);
  --text-lg:   clamp(1.1rem,   1rem    + 0.5vw,  1.3rem);
  --text-xl:   clamp(1.25rem,  1.1rem  + 0.75vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,   1.25rem + 1.25vw, 2rem);
  --text-3xl:  clamp(2rem,     1.5rem  + 2.5vw,  3rem);
  --text-4xl:  clamp(2.5rem,   1.75rem + 3.75vw, 4.5rem);
  --text-5xl:  clamp(3.5rem,   2rem    + 7.5vw,  7rem);
  --text-6xl:  clamp(4.5rem,   2.5rem  + 10vw,   11rem);

  /* Line Heights */
  --lh-tight:   1.05;
  --lh-snug:    1.18;
  --lh-normal:  1.6;
  --lh-relaxed: 1.78;

  /* Font Weights */
  --fw-light:     300;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  /* Motion System Tokens — Physical & Unified Language */
  --dur-instant:  80ms;   /* Active clicks, micro-toggles */
  --dur-fast:     160ms;  /* Buttons, icons, links, hover states, chips */
  --dur-normal:   280ms;  /* Cards, dropdowns, menus, accordions, modals */
  --dur-base:     450ms;  /* Standard reveals, state crossfades */
  --dur-slow:     650ms;  /* Hero entrances, atmospheric layers */

  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back:    cubic-bezier(0.34, 1.35, 0.64, 1);
  --ease-in-quart:    cubic-bezier(0.5, 0, 0.75, 0);
  --ease-inout:       cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:          cubic-bezier(0.7, 0, 0.84, 0);

  --stagger-step: 40ms;

  /* Z-index scale */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:   10;
  --z-overlay:  20;
  --z-sticky:   40;
  --z-nav:      80;
  --z-modal:    100;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(8,9,9,0.08), 0 1px 2px rgba(8,9,9,0.05);
  --shadow-md:  0 4px 24px rgba(8,9,9,0.10), 0 2px 8px rgba(8,9,9,0.06);
  --shadow-lg:  0 16px 56px rgba(8,9,9,0.14), 0 4px 16px rgba(8,9,9,0.08);
  --shadow-xl:  0 32px 80px rgba(8,9,9,0.20), 0 8px 24px rgba(8,9,9,0.10);
}

/* ============================================================
   LAYER 2: SEMANTIC TOKENS
   ============================================================ */
:root {
  --color-bg:             var(--clr-white);
  --color-bg-raised:      var(--clr-steel-50);
  --color-bg-muted:       var(--clr-steel-100);
  --color-bg-dark:        var(--clr-charcoal-900);
  --color-bg-dark-alt:    var(--clr-charcoal-800);
  --color-bg-darkest:     var(--clr-charcoal-950);

  --color-text-primary:   #0E1012;
  --color-text-secondary: #1E293B;
  --color-text-muted:     #374151;
  --color-text-on-dark:   #FFFFFF;
  --color-text-on-dark-muted: #CBD5E1;

  --color-accent:         var(--clr-orange-500);
  --color-accent-hover:   var(--clr-orange-600);
  --color-accent-dark:    var(--clr-orange-700);
  --color-brass:          var(--clr-brass-400);
  --color-brass-hover:    var(--clr-brass-500);

  --color-border:         rgba(20,22,24,0.09);
  --color-border-mid:     rgba(20,22,24,0.15);
  --color-border-strong:  rgba(20,22,24,0.22);
  --color-border-dark:    rgba(255,255,255,0.08);
  --color-border-dark-mid:rgba(255,255,255,0.14);

  /* Semantic Spacing Tokens */
  --spacing-component-xs: var(--sp-2);
  --spacing-component-sm: var(--sp-4);
  --spacing-component-md: var(--sp-6);
  --spacing-component-lg: var(--sp-8);

  --spacing-section-sm:   var(--sp-16);
  --spacing-section-md:   var(--sp-24);
  --spacing-section-lg:   var(--sp-32);
  --spacing-section-xl:   var(--sp-40);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: #F8FAFC;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layer 1: Fixed Architectural Background Image (Compositor-Isolated, Zero-Blur Penalty) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('assets/master_arch_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
}

/* Layer 2: White Translucent Mask Overlay (Clean Architectural Light) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.88) 50%, rgba(241, 245, 249, 0.94) 100%);
  pointer-events: none;
  contain: strict;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   SCROLL REVEAL & DYNAMIC MOTION
   ============================================================ */
/* Top Scroll Progress Rail */
#scroll-progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange-500) 0%, var(--clr-brass-400) 50%, var(--clr-orange-400) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(240, 82, 0, 0.6);
  will-change: transform;
}

/* Editorial Split-Text Typography Reveals */
.split-line-mask {
  display: block;
  overflow: hidden;
  vertical-align: top;
}
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotateX(15deg);
  transform-origin: 0 100%;
  transition: opacity 0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
  will-change: transform, opacity;
}
.is-split-revealed .split-word {
  opacity: 1;
  transform: translateY(0%) rotateX(0deg);
}

/* ============================================================
   SCROLL REVEALS (Phase 7: Subtle, Group-First Architecture)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-base) var(--ease-out-quart),
              transform var(--dur-base) var(--ease-out-quart);
}
[data-reveal].is-visible, [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-24px);
  transition: opacity var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-quart);
}
[data-reveal="left"].is-revealed, [data-reveal="left"].is-visible { transform: translateX(0); opacity: 1; }

[data-reveal="right"] {
  transform: translateX(24px);
  transition: opacity var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-quart);
}
[data-reveal="right"].is-revealed, [data-reveal="right"].is-visible { transform: translateX(0); opacity: 1; }

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-quart);
}
[data-reveal="scale"].is-revealed, [data-reveal="scale"].is-visible { opacity: 1; transform: scale(1); }

/* Grouped Scroll Reveals — One observer per section, staggered child cascades */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-base) var(--ease-out-quart),
              transform var(--dur-base) var(--ease-out-quart);
}
[data-reveal-group].is-revealed > *,
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].is-revealed > *:nth-child(1),
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-group].is-revealed > *:nth-child(2),
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 75ms; }
[data-reveal-group].is-revealed > *:nth-child(3),
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 150ms; }
[data-reveal-group].is-revealed > *:nth-child(4),
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 225ms; }
[data-reveal-group].is-revealed > *:nth-child(5),
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: 300ms; }
[data-reveal-group].is-revealed > *:nth-child(6),
[data-reveal-group].is-visible > *:nth-child(6) { transition-delay: 375ms; }

/* Polygon Morphing Scroll Reveals */
[data-reveal="polygon"] {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: clip-path 0.9s var(--ease-out-quart),
    opacity var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-quart);
  will-change: clip-path, opacity, transform;
}
[data-reveal="polygon"].is-revealed,
[data-reveal="polygon"].is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
  transform: translateY(0);
}

/* Project cards — subtle fade in */
.project-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart);
}
.project-card.is-visible,
.project-card.is-revealed { opacity: 1; transform: translateY(0); }
.project-card.is-exiting {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity var(--dur-fast) var(--ease-in-quart),
    transform var(--dur-fast) var(--ease-in-quart);
}
/* Hidden by filter */
.project-card.is-hidden {
  display: none;
}

@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;
  }
  [data-reveal], [data-reveal-group] > *, .project-card, .split-word, #scroll-progress-rail,
  .hero__eyebrow, .hero__headline-row em, .hero__subtext, .hero__actions, .hero__stats, .hero__panel-badge, .hero__panel-img,
  .page-hero__breadcrumb, .page-hero__title, .page-hero__subtitle, .page-hero__rule,
  .service-exquisite-card, .value-card, .calc-card, .intro-strip__item, .form-msg, .project-card__desc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    max-height: none !important;
  }
}

/* ============================================================
   UTILITY: SECTION LABEL
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--sp-4);
}
.section-label--brass  { color: var(--color-brass); font-weight: var(--fw-black); }
.section-label--white  { color: #F8FAFC; font-weight: var(--fw-black); }
.section-label__line {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   UTILITY: SECTION HEADLINE
   ============================================================ */
.section-headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}
.section-headline em {
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--clr-orange-600);
}
.section-headline--white        { color: #FFFFFF; }
.section-headline--white em     { color: #FFE699; font-weight: var(--fw-normal); }

/* ============================================================
   UTILITY: DIAGONAL DIVIDER
   Separates sections with an angled bottom edge
   ============================================================ */
.section-divider--down {
  position: relative;
  z-index: 1;
}
.section-divider--down::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.section-divider--up::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   BUTTONS — Zero border-radius, directional arrows (Phase 9)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart),
    color var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: var(--dur-instant);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.50;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* Arrow icon inside buttons */
.btn .btn-arrow,
.btn-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform var(--dur-fast) var(--ease-out-back);
  line-height: 1;
}
.btn:hover .btn-arrow,
.service-exquisite-card:hover .btn-arrow,
.project-card:hover .btn-arrow {
  transform: translateX(4px);
}
.btn:active .btn-arrow {
  transform: translateX(2px);
}

/* Shimmer overlay */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform var(--dur-slow) var(--ease-out-quart);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(100%) skewX(-20deg); }

/* Variants */
.btn--primary {
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
  border-color: var(--clr-charcoal-900);
}
.btn--primary:hover {
  background: var(--clr-charcoal-700);
  border-color: var(--clr-charcoal-700);
  box-shadow: 0 8px 32px rgba(8,9,9,0.25);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--clr-white);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 8px 32px rgba(240,82,0,0.35);
}

.btn--brass {
  background: var(--color-brass);
  color: var(--clr-white);
  border-color: var(--color-brass);
}
.btn--brass:hover {
  background: var(--color-brass-hover);
  border-color: var(--color-brass-hover);
  box-shadow: 0 8px 28px rgba(196,154,60,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.7);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--clr-charcoal-900);
  border-color: var(--clr-charcoal-900);
}
.btn--ghost-dark:hover {
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
}

.btn--ghost-accent {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--ghost-accent:hover {
  background: var(--color-accent);
  color: var(--clr-white);
}

.btn--sm { padding: var(--sp-3) var(--sp-5); font-size: var(--text-xs); }
.btn--lg { padding: var(--sp-5) var(--sp-10); font-size: var(--text-base); }
.btn--full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
/* ============================================================
   NAVIGATION — LIGHT THEME
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 3px solid var(--color-accent);
  border-bottom: 1px solid rgba(20, 22, 24, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: background var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart),
    border-color var(--dur-normal) var(--ease-out-quart);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(20, 22, 24, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background-color: transparent;
  padding: var(--sp-4) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
  transition: padding var(--dur-normal) var(--ease-out-quart);
}
.nav.is-scrolled .nav__inner {
  padding: var(--sp-3) var(--sp-10);
}
.nav.is-scrolled .nav__logo-img {
  transform: scale(0.92);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background-color: transparent;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out-quart);
}
.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out-quart);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.08);
}
.nav__logo:hover .nav__logo-mark { background: var(--color-accent-hover); }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  line-height: 1.35;
}
.nav__logo-name em { font-style: normal; font-weight: var(--fw-bold); color: var(--color-accent); }

/* Footer Logo Adjustment */
.footer .nav__logo-name {
  color: var(--clr-white);
}
.footer .nav__logo-name em {
  color: var(--clr-steel-300);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  padding: var(--sp-2) var(--sp-3);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out-expo);
}
.nav__link:hover, .nav__link.is-active { color: var(--color-accent); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__chevron {
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: var(--sp-1);
  opacity: 0.7;
  color: var(--clr-charcoal-900);
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out-back), color var(--dur-fast) var(--ease-out-quart);
}
.nav__dropdown-parent:hover .nav__chevron,
.nav__dropdown-parent:focus-within .nav__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* Dropdown Parent & Menu */
.nav__dropdown-parent { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 0;
  min-width: 230px;
  background: #FFFFFF;
  border: 1px solid var(--color-border-mid);
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity calc(var(--dur-normal) * 0.65) var(--ease-in-quart),
    transform calc(var(--dur-normal) * 0.65) var(--ease-in-quart),
    visibility calc(var(--dur-normal) * 0.65);
  z-index: var(--z-overlay);
}

/* Invisible hover bridge between trigger and dropdown panel */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__dropdown-parent:hover .nav__dropdown,
.nav__dropdown-parent:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
  transition:
    opacity var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-expo),
    visibility var(--dur-normal);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  padding: var(--sp-3) var(--sp-5);
  border-left: 2px solid transparent;
  transition:
    color var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart);
}
.nav__dropdown-link::before {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out-quart);
}
.nav__dropdown-link:hover {
  color: var(--color-accent);
  background: var(--clr-steel-50);
  border-left-color: var(--color-accent);
  transform: translateX(3px);
}
.nav__dropdown-link:hover::before { opacity: 1; }
.nav__dropdown-link:hover {
  color: var(--color-accent);
  background: var(--clr-steel-50);
  border-left-color: var(--color-accent);
}
.nav__dropdown-link:hover::before { opacity: 1; }

.nav__cta { flex-shrink: 0; padding: var(--sp-3) var(--sp-6); font-size: var(--text-xs); }

/* Mobile Bento 9-Dot Menu Toggle */
.nav__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  z-index: calc(var(--z-nav) + 20);
  transition: background var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-back);
  position: relative;
  overflow: hidden;
}
.nav__menu-toggle:hover {
  border-color: rgba(240, 82, 0, 0.35);
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(240, 82, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: scale(1.04);
}
.nav__menu-toggle:active {
  transform: scale(0.95);
}

/* Bento 9-Dot Grid */
.nav__bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 4.5px);
  grid-template-rows: repeat(3, 4.5px);
  gap: 4px;
  width: 21.5px;
  height: 21.5px;
  align-items: center;
  justify-content: center;
  transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.nav__bento-dot {
  display: block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: var(--clr-charcoal-900);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.22s var(--ease-out),
              background 0.22s var(--ease-out);
  transform-origin: center;
}

.nav__menu-toggle:hover .nav__bento-dot {
  background: var(--clr-charcoal-950);
}

/* When Menu is Open: 9-dot grid morphs into an accented 'X' */
.nav.menu-open .nav__menu-toggle {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(240, 82, 0, 0.22);
}

.nav.menu-open .nav__bento-grid {
  transform: rotate(45deg);
}

/* Dots 2, 4, 6, 8 (cardinals) fade out */
.nav.menu-open .nav__bento-dot:nth-child(2),
.nav.menu-open .nav__bento-dot:nth-child(4),
.nav.menu-open .nav__bento-dot:nth-child(6),
.nav.menu-open .nav__bento-dot:nth-child(8) {
  opacity: 0;
  transform: scale(0);
}

/* Dots 1, 3, 5, 7, 9 (corners + center) become accent color */
.nav.menu-open .nav__bento-dot:nth-child(1),
.nav.menu-open .nav__bento-dot:nth-child(3),
.nav.menu-open .nav__bento-dot:nth-child(5),
.nav.menu-open .nav__bento-dot:nth-child(7),
.nav.menu-open .nav__bento-dot:nth-child(9) {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* Backward compatibility fallback */
.nav__hamburger {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--clr-charcoal-900);
  transition: transform var(--dur-fast) var(--ease-out-back),
    opacity var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart);
  transform-origin: center;
}
.nav.menu-open .nav__hamburger {
  background: var(--color-accent);
}
.nav.menu-open .nav__hamburger:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.menu-open .nav__hamburger:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav__hamburger:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   PAGE HERO (reusable inner-page hero) — PERMANENT WHITE THEME
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: var(--sp-40);
  padding-bottom: var(--sp-24);
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border-mid);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.14;
  filter: contrast(1.05) grayscale(20%);
  will-change: transform;
  transform: scale(1.08);
}
.page-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96) 35%, rgba(255, 255, 255, 0.85) 100%);
}
.page-hero__content {
  position: relative;
  z-index: var(--z-raised);
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--sp-10);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-charcoal-600);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 60ms forwards;
}
.page-hero__breadcrumb a { color: var(--clr-charcoal-600); transition: color var(--dur-fast) var(--ease-out-quart); }
.page-hero__breadcrumb a:hover { color: var(--color-accent); }
.page-hero__breadcrumb span { color: var(--color-accent); }
.page-hero__eyebrow { margin-bottom: var(--sp-5); }
.page-hero .section-label--white { color: var(--color-accent); }
.page-hero .section-label--white .section-label__line { background: var(--color-accent); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  color: var(--clr-charcoal-950);
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-expo) 140ms forwards;
}
.page-hero__title em { font-style: italic; font-weight: var(--fw-light); color: var(--clr-charcoal-700); }
.page-hero__subtitle {
  font-size: var(--text-lg);
  font-weight: var(--fw-normal);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
  max-width: 620px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 220ms forwards;
}
.page-hero__rule {
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--sp-8) 0 0;
  transform-origin: left;
  transform: scaleX(0);
  animation: heroRuleScale var(--dur-base) var(--ease-out-expo) 300ms forwards;
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* ============================================================
   HERO — LIGHT SPLIT-SCREEN LAYOUT (PERMANENT WHITE THEME)
   Left: crisp white editorial panel | Right: raw construction photo with Parallax
   ============================================================ */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
  background: #FFFFFF;
}

/* LEFT PANEL */
.hero__panel-left {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px var(--sp-16) var(--sp-20) var(--sp-16);
  position: relative;
  z-index: var(--z-raised);
  overflow: hidden;
}

/* Subtle vertical accent line on left panel */
.hero__panel-left::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-brass));
  z-index: 2;
}

/* Panel left bottom fade - clean subtle white */
.hero__panel-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #FFFFFF, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Headline for split-screen: stacked single words, massive scale */
.hero--split .hero__headline {
  font-size: clamp(4rem, 7vw, 9rem);
  margin-bottom: var(--sp-8);
  letter-spacing: -0.04em;
  color: var(--clr-charcoal-950);
}

/* Hero Split Entrance Sequence (Crisp & Physical: 0ms -> 680ms total) */
.hero__eyebrow {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 60ms forwards;
  color: var(--color-accent);
}
.hero__eyebrow span:last-child {
  color: var(--clr-charcoal-700);
}

.hero--split .hero__headline-row {
  display: block;
  overflow: hidden;
  padding-bottom: 0.03em;
}

.hero--split .hero__headline-row em {
  display: block;
  font-style: normal;
  color: var(--clr-charcoal-950);
  transform: translateY(105%);
  animation: riseLine var(--dur-base) var(--ease-out-expo) forwards;
}
.hero--split .hero__headline-row:nth-child(1) em { animation-delay: 140ms; }
.hero--split .hero__headline-row:nth-child(2) em { animation-delay: 240ms; }
.hero--split .hero__headline-row:nth-child(3) em { animation-delay: 340ms; color: var(--clr-charcoal-600); }
.hero--split .hero__headline-row:nth-child(4) em { animation-delay: 420ms; color: transparent; -webkit-text-stroke: 2px var(--clr-charcoal-400); }

.hero--split .hero__headline-row--light em { color: var(--clr-charcoal-600) !important; }
.hero--split .hero__headline-row--outline em {
  color: transparent !important;
  -webkit-text-stroke: 2px var(--clr-charcoal-400);
}
.hero--split .hero__word--accent { color: var(--color-accent) !important; -webkit-text-stroke: 0 !important; }

.hero__subtext {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 320ms forwards;
  color: var(--clr-charcoal-700);
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.hero__actions {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 400ms forwards;
}

/* Hero buttons contrast on white */
.hero .btn--ghost,
.hero__panel-left .btn--ghost {
  color: var(--clr-charcoal-900);
  border-color: var(--clr-charcoal-300);
  background: transparent;
}
.hero .btn--ghost:hover,
.hero__panel-left .btn--ghost:hover {
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
  border-color: var(--clr-charcoal-900);
}

/* Stats bar on left panel */
.hero--split .hero__stats {
  border-top: 1px solid var(--color-border-mid);
  padding-top: var(--sp-6);
  margin-top: var(--sp-2);
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp var(--dur-base) var(--ease-out-quart) 480ms forwards;
}
.hero--split .hero__stat-number {
  color: var(--clr-charcoal-950);
}
.hero--split .hero__stat-suffix {
  color: var(--color-accent);
}
.hero--split .hero__stat-label {
  color: var(--clr-charcoal-600);
}
.hero--split .hero__stat-divider {
  background: var(--color-border-mid);
}

/* RIGHT PANEL */
.hero__panel-right {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.hero__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.92) contrast(1.06) saturate(1.08);
  opacity: 0.95;
  will-change: transform;
  transform: scale(1.08);
  animation: heroImgSettle 850ms var(--ease-out-quart) 80ms forwards;
  transition: transform 8s ease;
}

.hero__panel-right:hover .hero__panel-img {
  transform: scale(1.05);
}

/* Floating badge on right panel */
.hero__panel-badge {
  position: absolute;
  bottom: var(--sp-10);
  left: var(--sp-8);
  background: var(--color-accent);
  color: var(--clr-white);
  padding: var(--sp-5) var(--sp-7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  box-shadow: 0 8px 32px rgba(240,82,0,0.45);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: heroBadgeEntrance var(--dur-base) var(--ease-out-back) 520ms forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImgSettle {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroBadgeEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroRuleScale {
  to {
    transform: scaleX(1);
  }
}

.hero__panel-badge-year {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero__panel-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__panel-badge-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Scroll indicator on right panel */
.hero__panel-right .hero__scroll {
  position: absolute;
  right: var(--sp-8);
  bottom: var(--sp-10);
}

/* ============================================================
   KINETIC COUNTER ANIMATION
   ============================================================ */
[data-count-target] {
  display: inline-block;
  transition: none;
}

/* ============================================================
   CREDENTIALS — Icon variant
   ============================================================ */
.credentials__value--icon {
  font-size: var(--text-2xl);
  line-height: 1;
  color: var(--color-accent);
  filter: none;
}

/* ============================================================
   PROCESS TIMELINE (replaces testimonial section)
   ============================================================ */
.process-timeline {
  background: linear-gradient(135deg, #0A0F1A 0%, #0F172A 50%, #141B2A 100%);
  padding: var(--sp-32) var(--sp-10);
  border-top: 4px solid var(--color-brass);
  position: relative;
  overflow: hidden;
}

/* Subtle blueprint grid overlay */
.process-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,82,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,82,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.process-timeline__inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-timeline__header {
  max-width: 700px;
  margin-bottom: var(--sp-16);
}

.process-timeline__lead {
  font-size: var(--text-base);
  color: var(--clr-steel-400);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-5);
  max-width: 560px;
}

/* The five-step horizontal row */
.process-timeline__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: var(--sp-16);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-10);
}

.process-timeline__step {
  padding: 0 var(--sp-8) var(--sp-8) 0;
  position: relative;
}

/* Horizontal connector line between steps */
.process-timeline__step-connector {
  position: absolute;
  top: -1px;
  left: 0;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-brass));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out) calc(var(--step-delay, 0) * 1ms);
}

.process-timeline__step.is-revealed .process-timeline__step-connector,
.process-timeline__step.is-visible .process-timeline__step-connector {
  transform: scaleX(1);
}

.process-timeline__step--last .process-timeline__step-connector { display: none; }

.process-timeline__step-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-5);
  display: block;
}

.process-timeline__step-icon {
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--sp-4);
  transition: color var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-back);
}

.process-timeline__step:hover .process-timeline__step-icon {
  color: var(--color-brass);
  transform: translateY(-3px);
}

.process-timeline__step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.process-timeline__step-body {
  font-size: var(--text-sm);
  color: var(--clr-steel-400);
  line-height: var(--lh-relaxed);
}

.process-timeline__step:hover .process-timeline__step-title {
  color: var(--color-brass);
}

/* CTA row */
.process-timeline__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero--split { grid-template-columns: 1fr 1fr; }
  .hero__panel-left { padding: 140px var(--sp-12) var(--sp-16) var(--sp-12); }
  .process-timeline__steps { grid-template-columns: repeat(3, 1fr); }
  .process-timeline__step:nth-child(3) .process-timeline__step-connector { display: none; }
}

@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 40vh;
  }
  .hero__panel-left {
    padding: 120px var(--sp-8) var(--sp-12) var(--sp-8);
  }
  .hero--split .hero__headline { font-size: clamp(3.5rem, 10vw, 6rem); }
  .hero__panel-right { min-height: 40vh; }
  .process-timeline__steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
}

@media (max-width: 600px) {
  .hero--split { grid-template-rows: auto 35vh; }
  .hero__panel-left { padding: 110px var(--sp-6) var(--sp-10) var(--sp-6); }
  .hero--split .hero__headline { font-size: clamp(3rem, 12vw, 5rem); }
  .process-timeline__steps { grid-template-columns: 1fr; }
  .process-timeline__step-connector { display: none; }
  .process-timeline { padding: var(--sp-16) var(--sp-6); }
}
.hero__bg-parallax {
  position: absolute;
  inset: -25% 0;
  z-index: 0;
  will-change: transform;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.85) contrast(1.1) saturate(1.15);
  transition: filter var(--dur-slow) var(--ease-out);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.5) 100%),
    linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.2) 100%);
}

/* Diagonal scanline texture */
.hero__texture {
  display: none;
}

.hero__content {
  position: relative;
  z-index: var(--z-raised);
  padding: 0 var(--sp-10) var(--sp-20);
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-6);
}
.hero__eyebrow-line { display: block; width: 36px; height: 2px; background: currentColor; }

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  color: var(--clr-charcoal-950);
  margin-bottom: var(--sp-8);
  letter-spacing: -0.025em;
}
.hero__headline-row { display: block; overflow: hidden; padding-bottom: 0.05em; }
.hero__headline-row em {
  display: block;
  font-style: normal;
  color: var(--clr-charcoal-950);
  transform: translateY(105%);
  animation: riseLine var(--dur-slow) var(--ease-out) forwards;
}
.hero__headline-row:nth-child(1) em { animation-delay: 0.25s; }
.hero__headline-row:nth-child(2) em { animation-delay: 0.40s; }
.hero__headline-row:nth-child(3) em { animation-delay: 0.55s; }

.hero__word { display: inline-block; }
.hero__word--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--clr-charcoal-400);
}
.hero__word--accent { color: var(--color-accent); }
.hero__word--brass  { color: var(--color-brass); }

.hero .hero__subtext, .hero .hero__actions {
  opacity: 0;
  transform: translateY(10px);
  animation: rise var(--dur-base) var(--ease-out) forwards;
}
.hero .hero__subtext {
  animation-delay: 0.75s;
  color: var(--clr-charcoal-700);
  font-weight: 500;
  max-width: 680px;
}
.hero .hero__actions { animation-delay: 0.90s; }

@keyframes riseLine { to { transform: translateY(0); } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* 4.4 Signature Motif (Construction Blueprint SVG Outline Drawing) */
.hero__signature-motif {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-10);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}
.hero__signature-motif svg path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawSignature 1.8s var(--ease-out) forwards;
}
.hero__signature-motif svg path:nth-of-type(2) { animation-delay: 0.15s; }
.hero__signature-motif svg path:nth-of-type(3) { animation-delay: 0.30s; }
.hero__signature-motif svg path:nth-of-type(4) { animation-delay: 0.45s; }

@keyframes drawSignature { to { stroke-dashoffset: 0; } }

/* 4.5 Magnetic Buttons */
@media (hover: hover) and (pointer: fine) {
  .btn {
    position: relative;
    overflow: hidden;
    transition: transform 260ms var(--ease-soft), color var(--dur-fast) var(--ease-out);
    will-change: transform;
  }
  .btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-101%);
    transition: transform var(--dur-base) var(--ease-out);
    z-index: -1;
  }
  .btn:hover::before { transform: translateX(0); }
}

/* 4.6 Card Motion Physics (Phase 8: Restrained, GPU-accelerated) */
.project-card, .service-card, .service-exquisite-card, .value-card, .calc-card {
  transition: transform var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart),
    border-color var(--dur-normal) var(--ease-out-quart);
}

/* 4.7 Refined Underline Draw on Links (Phase 9) */
.nav__link::after,
.project-card__link::after,
.service-exquisite-card__link span:first-child::after,
.editorial-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-normal) var(--ease-out-quart);
}
.nav__link::after {
  left: var(--sp-3); right: var(--sp-3);
}
.nav__link:hover::after, .nav__link.is-active::after,
.project-card:hover .project-card__link::after, .project-card__link:hover::after,
.service-exquisite-card:hover .service-exquisite-card__link span:first-child::after, .service-exquisite-card__link:hover span:first-child::after,
.editorial-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* 4.8 Scroll-Linked Progress Line */
.intro-strip {
  position: relative;
}
.progress-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(20, 22, 24, 0.1);
  pointer-events: none;
}
.progress-fill {
  height: 100%;
  width: 100%;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* 4.9 Image Curtain Reveal */
.about-teaser__image-frame {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1000ms var(--ease-out);
}
.about-teaser__image-wrap.is-visible .about-teaser__image-frame,
.about-teaser__image-wrap.is-revealed .about-teaser__image-frame {
  clip-path: inset(0 0 0% 0);
}

/* 4.12 Infinite Marquee Hover Pause */
.ticker { overflow: hidden; }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--sp-8);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-right: var(--sp-10);
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}
.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}
.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #E2E8F0;
  margin-top: var(--sp-1);
}
.hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.10);
  margin: 0 var(--sp-10) 0 0;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: var(--sp-10);
  bottom: var(--sp-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: var(--z-raised);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  animation: scrollDrop 2.2s var(--ease-inout-expo) infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  60.001% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero__scroll-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
  writing-mode: vertical-rl;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: linear-gradient(90deg, #F05200 0%, #D49E24 50%, #FF6A1C 100%);
  overflow: hidden;
  white-space: nowrap;
  padding: var(--sp-4) 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(240, 82, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.ticker__track {
  display: inline-block;
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-white);
  padding: 0 var(--sp-6);
}
.ticker__dot { color: #FFE699; opacity: 0.95; padding: 0 var(--sp-3) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   LIVE SITE TELEMETRY RADAR FEED (Feature 4)
   ============================================================ */
.site-telemetry {
  background: #0F172A;
  border-bottom: 2px solid var(--color-accent);
  padding: var(--sp-2) var(--sp-10);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  z-index: 2;
  position: relative;
}
.site-telemetry__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.site-telemetry__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(240, 82, 0, 0.2);
  border: 1px solid var(--color-accent);
  padding: var(--sp-1) var(--sp-3);
  flex-shrink: 0;
}
.site-telemetry__pulse {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: telemetryPulse 1.8s ease-in-out infinite;
}
@keyframes telemetryPulse {
  0% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.4; transform: scale(0.8); }
}
.site-telemetry__badge-text {
  font-weight: var(--fw-black);
  letter-spacing: 0.14em;
  color: var(--color-accent);
}
.site-telemetry__feed {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}
.site-telemetry__item {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CBD5E1;
  transition: opacity var(--dur-normal) var(--ease-out-quart);
}
.site-telemetry__item strong {
  color: #FFFFFF;
}

/* ============================================================
   HOME: INTRO STRIP (3 pillars)
   ============================================================ */
.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 4px solid var(--color-accent);
  border-bottom: 1px solid rgba(20, 22, 24, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.intro-strip__item {
  padding: var(--sp-12) var(--sp-10);
  border-right: 1px solid rgba(20, 22, 24, 0.08);
  position: relative;
  transition: background var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart);
}
.intro-strip__item:last-child { border-right: none; }
.intro-strip__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out-expo);
}
.intro-strip__item:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.intro-strip__item:hover::after { transform: scaleX(1); }
.intro-strip__number {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
  display: block;
}
.intro-strip__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}
.intro-strip__body {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   HOME: ABOUT TEASER
   ============================================================ */
.about-teaser {
  padding: var(--sp-32) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
}
.about-teaser__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.about-teaser__image-wrap {
  position: relative;
}
.about-teaser__image-frame {
  position: relative;
  overflow: hidden;
}
.about-teaser__image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform var(--dur-crawl) var(--ease-out-quart);
}
.about-teaser__image-frame:hover img { transform: scale(1.04); }
.about-teaser__badge {
  position: absolute;
  bottom: calc(-1 * var(--sp-5)); right: calc(-1 * var(--sp-5));
  background: var(--color-accent);
  color: var(--clr-white);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  box-shadow: var(--shadow-lg);
}
.about-teaser__badge-year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  line-height: 1;
  display: block;
}
.about-teaser__badge-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  margin-top: var(--sp-1);
  opacity: 0.82;
}
.about-teaser__corner-accent {
  position: absolute;
  bottom: calc(-1 * var(--sp-4)); left: calc(-1 * var(--sp-4));
  width: 150px; height: 150px;
  border: 6px solid var(--clr-steel-150);
  z-index: -1;
}
.about-teaser__text { display: flex; flex-direction: column; gap: var(--sp-6); }
.about-teaser__body {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-charcoal-700);
}
.about-teaser__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.about-teaser__pillar {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.about-teaser__pillar-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: var(--sp-2);
}
.about-teaser__pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-1);
  color: var(--clr-charcoal-900);
}
.about-teaser__pillar p {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   HOME: SERVICES PREVIEW GRID
   ============================================================ */
.services-preview {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.65) 0%, rgba(241, 245, 249, 0.85) 100%);
  padding: var(--sp-20) var(--sp-10);
  border-top: 1px solid rgba(240, 82, 0, 0.15);
  border-bottom: 1px solid rgba(240, 82, 0, 0.15);
}
.services-preview__inner { max-width: 1500px; margin: 0 auto; }
.services-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.services-preview__header-main {
  flex: 1;
}
.services-preview__header .section-label,
.services-preview__header .section-label--white {
  color: var(--color-accent);
}
.services-preview__header .section-headline,
.services-preview__header .section-headline--white {
  color: var(--clr-charcoal-900);
}
.services-preview__header .section-headline em,
.services-preview__header .section-headline--white em {
  color: var(--clr-orange-600);
  font-weight: var(--fw-medium);
}
.services-preview__intro {
  font-size: var(--text-base);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
  max-width: 760px;
  margin-top: var(--sp-3);
}

/* Quick Jump Pills */
.services-preview__jump-pills {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}
.services-preview__jump-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-steel-500);
  margin-right: var(--sp-2);
}
.services-preview__jump-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  background: #FFFFFF;
  border: 1px solid var(--color-border-mid);
  padding: var(--sp-1) var(--sp-4);
  transition: all var(--dur-fast) var(--ease-out-quart);
}
.services-preview__jump-pill:hover {
  background: var(--color-accent);
  color: var(--clr-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-4);
}
.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-charcoal-800);
  line-height: 1.4;
}
.service-card__feature-icon {
  color: var(--color-accent);
  font-weight: var(--fw-black);
  font-size: 0.85rem;
}

.service-card__cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-steel-50);
  border: 1px solid var(--color-border-mid);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin-top: auto;
  transition: all var(--dur-fast) var(--ease-out-quart);
}
.service-card:hover .service-card__cta-btn {
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
  border-color: var(--clr-charcoal-900);
}

.services-preview__footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  padding: var(--sp-6) var(--sp-8);
  background: #FFFFFF;
  border: 1px solid var(--color-border-mid);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  flex-wrap: wrap;
}
.services-preview__footer-text {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}
.services-preview__footer-text strong {
  color: var(--clr-charcoal-900);
}

/* 4-card services grid — 2×2 on desktop */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.service-card {
  position: relative;
  background: #FFFFFF;
  padding: var(--sp-10);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(20, 22, 24, 0.08);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform var(--dur-normal) var(--ease-out-expo), box-shadow var(--dur-normal) var(--ease-out-expo), border-color var(--dur-fast) var(--ease-out-quart);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out-expo);
}
.service-card:hover {
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(240, 82, 0, 0.15);
  border-top-color: var(--color-brass);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: rgba(240, 82, 0, 0.09);
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  user-select: none;
  pointer-events: none;
  transition: color var(--dur-normal) var(--ease-out-quart);
}
.service-card:hover .service-card__num { color: rgba(240, 82, 0, 0.18); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--clr-orange-100);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out-back), background var(--dur-fast) var(--ease-out-quart);
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-3deg);
  background: var(--color-accent);
}
.service-card__icon svg { width: 24px; height: 24px; fill: var(--color-accent); transition: fill var(--dur-fast) var(--ease-out-quart); }
.service-card:hover .service-card__icon svg { fill: #FFFFFF; }
.service-card__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-orange-700);
  display: block;
  margin-bottom: var(--sp-3);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: var(--lh-snug);
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-4);
}
.service-card__body {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: gap var(--dur-fast) var(--ease-out-back);
}
.service-card__link:hover { gap: var(--sp-5); }
.service-card__link-arrow {
  transition: transform var(--dur-fast) var(--ease-out-back);
}
.service-card__link:hover .service-card__link-arrow { transform: translateX(4px); }

/* ============================================================
   PROJECTS GRID + FILTER TABS
   ============================================================ */
.projects-section {
  padding: var(--sp-32) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
}
.projects-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
}
.filter-tab {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-charcoal-800);
  background: var(--clr-steel-150);
  border: 1px solid var(--color-border-mid);
  padding: var(--sp-2) var(--sp-5);
  cursor: pointer;
  border-radius: 0;
  transition: color var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart);
}
.filter-tab:hover { color: var(--clr-white); background: var(--clr-charcoal-800); }
.filter-tab.is-active {
  color: var(--clr-white);
  background: var(--clr-charcoal-900);
  border-color: var(--clr-charcoal-900);
}

/* Projects grid — asymmetric */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  grid-auto-rows: auto;
  gap: var(--sp-1);
}
.projects-grid--full { grid-template-columns: repeat(3, 1fr); }

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-charcoal-900);
}
.project-card--wide { grid-column: span 2; }
.project-card--tall { grid-row: span 2; }

.project-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.project-card__img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--dur-crawl) var(--ease-out-quart);
  display: block;
}
.project-card--wide .project-card__img-wrap img { height: 420px; }
.project-card--featured .project-card__img-wrap img { height: 540px; }

.project-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,9,9,0.95) 0%,
    rgba(8,9,9,0.5) 50%,
    rgba(8,9,9,0.1) 100%
  );
  transition: background var(--dur-normal) var(--ease-out-quart);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45);
}
.project-card:hover .project-card__img-wrap img { transform: scale(1.03); }
.project-card:hover .project-card__scrim {
  background: linear-gradient(to top, rgba(8,9,9,0.97) 0%, rgba(8,9,9,0.65) 60%, rgba(8,9,9,0.2) 100%);
}

.project-card__meta {
  position: absolute;
  top: var(--sp-5); left: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.project-card__cat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-charcoal-900);
  padding: var(--sp-1) var(--sp-3);
  border-left: 3px solid var(--color-accent);
}
.project-card__cat--rescue { background: var(--color-accent); border-left-color: var(--clr-charcoal-900); }
.project-card__cat--brass  { background: var(--color-brass); border-left-color: var(--clr-charcoal-900); }
.project-card__year {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-steel-300);
  letter-spacing: 0.08em;
}

.project-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
}
.project-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-snug);
  text-transform: uppercase;
  color: var(--clr-white);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-3);
  transition: margin-bottom var(--dur-normal) var(--ease-out-expo);
}
.project-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-steel-200);
  line-height: var(--lh-relaxed);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-normal) var(--ease-out-quart),
    max-height var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-quart);
}
@media (hover: hover) and (pointer: fine) {
  .project-card:hover .project-card__desc {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
  }
}
@media (hover: none), (max-width: 1024px) {
  .project-card__desc {
    opacity: 1;
    max-height: none;
    transform: none;
    margin-bottom: var(--sp-2);
  }
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--sp-3);
  transition: gap var(--dur-fast) var(--ease-out-back);
}
.project-card__link:hover { gap: var(--sp-4); }

/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */
.credentials {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 4px solid var(--color-accent);
  border-bottom: 3px solid var(--color-brass);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}
.credentials__inner {
  display: flex;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
}
.credentials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-10) var(--sp-8);
  flex: 1;
  text-align: center;
  position: relative;
  transition: background var(--dur-normal) var(--ease-out-quart);
}
.credentials__item:hover { background: #FFFFFF; }
.credentials__item + .credentials__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(20, 22, 24, 0.1);
}
.credentials__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.credentials__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-charcoal-800);
}
.credentials__bar {
  width: 100%;
  height: 4px;
  background: rgba(240, 82, 0, 0.12);
  margin-top: var(--sp-2);
  overflow: hidden;
  border-radius: 2px;
}
.credentials__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-brass) 100%);
  width: 0%;
  transition: width 1.2s var(--ease-out-expo);
}

/* ============================================================
   TEAM: FLIP CARDS
   ============================================================ */
.team-section {
  padding: var(--sp-32) var(--sp-10);
}
.team-section__inner { max-width: 1500px; margin: 0 auto; }
.team-section__header { margin-bottom: var(--sp-16); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.flip-card {
  perspective: 1000px;
  height: 520px;
  cursor: pointer;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-inout-expo);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card__inner,
.flip-card:focus-within .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Front */
.flip-card__front { background: var(--clr-charcoal-900); }
.flip-card__front img {
  width: 100%;
  height: 68%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(25%);
  display: block;
  transition: filter var(--dur-base) var(--ease-out-quart), transform var(--dur-base) var(--ease-out-quart);
}
.flip-card:hover .flip-card__front img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.flip-card__front-accent {
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.flip-card:hover .flip-card__front-accent { transform: scaleX(1); }
.flip-card__front-info {
  padding: var(--sp-5);
  background: var(--clr-charcoal-900);
}
.flip-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}
.flip-card__role {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.flip-card__front-bio {
  font-size: var(--text-sm);
  color: var(--clr-steel-300);
  line-height: var(--lh-relaxed);
}
.flip-card__hint {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-steel-500);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out-quart);
}
.flip-card:hover .flip-card__hint { opacity: 1; }

/* Back */
.flip-card__back {
  background: var(--clr-charcoal-800);
  transform: rotateY(180deg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--color-accent);
}
.flip-card__back-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: var(--sp-4);
  display: block;
}
.flip-card__back-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-2);
}
.flip-card__back-role {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-accent);
  margin-bottom: var(--sp-6);
  display: block;
}
.flip-card__back-bio {
  font-size: var(--text-sm);
  color: var(--clr-steel-300);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-6);
}
.flip-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.flip-card__tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-steel-300);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: var(--sp-1) var(--sp-3);
}

/* ============================================================
   ABOUT PAGE: TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: var(--sp-8) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border-mid);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: var(--sp-10);
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__content {
  padding: var(--sp-6) var(--sp-8) var(--sp-6) 0;
  text-align: right;
}
.timeline-item__content--right {
  text-align: left;
  padding: var(--sp-6) 0 var(--sp-6) var(--sp-8);
  grid-column: 3;
}
.timeline-item__content--left { grid-column: 1; }
.timeline-item__dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--sp-6);
  grid-column: 2;
}
.timeline-item__dot {
  width: 16px; height: 16px;
  background: var(--color-accent);
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--color-accent);
  flex-shrink: 0;
}
.timeline-item__year {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-top: var(--sp-2);
  text-align: center;
}
.timeline-item__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-1);
}
.timeline-item__body {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   ABOUT: STATS MOSAIC
   ============================================================ */
.stats-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-1);
  background: var(--clr-charcoal-950);
}
.stats-mosaic__item {
  background: var(--clr-charcoal-800);
  padding: var(--sp-10);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-normal) var(--ease-out-quart);
}
.stats-mosaic__item:hover { background: var(--clr-charcoal-700); }
.stats-mosaic__ghost-num {
  position: absolute;
  bottom: calc(-1 * var(--sp-5)); right: calc(-1 * var(--sp-3));
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: var(--fw-black);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.stats-mosaic__value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--clr-white);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--sp-3);
}
.stats-mosaic__label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.stats-mosaic__desc {
  font-size: var(--text-sm);
  color: var(--clr-steel-400);
  line-height: var(--lh-relaxed);
  max-width: 300px;
}

/* ============================================================
   SERVICES PAGE: SERVICE BLOCKS
   ============================================================ */
.service-block {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service-block--dark  { background: var(--clr-charcoal-800); }
.service-block--light { background: var(--clr-white); }
.service-block--muted { background: var(--clr-steel-50); }

.service-block__bg {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
  will-change: transform;
}
.service-block__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.service-block--light .service-block__bg img { opacity: 0.08; }

.service-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,31,34,0.97) 0%, rgba(27,31,34,0.85) 55%, rgba(27,31,34,0.25) 100%);
}
.service-block__overlay--light {
  background: linear-gradient(to left, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.90) 55%, rgba(255,255,255,0.25) 100%);
}
.service-block__overlay--muted {
  background: linear-gradient(to left, rgba(245,246,247,0.97) 0%, rgba(245,246,247,0.90) 55%, rgba(245,246,247,0.25) 100%);
}

.service-block__content {
  position: relative;
  z-index: var(--z-raised);
  padding: var(--sp-24) var(--sp-10);
  max-width: min(680px, 50%);
}
.service-block__content--left  { margin-left: 0; }
.service-block__content--right { margin-left: auto; }

.service-block__num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: var(--sp-6); left: var(--sp-10);
  user-select: none;
  pointer-events: none;
}
.service-block__num--dark { color: rgba(8,9,9,0.05); }

.service-block__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  margin: var(--sp-5) 0 var(--sp-6);
}
.service-block__headline--dark { color: var(--clr-charcoal-900); }

.service-block__body {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-steel-300);
  margin-bottom: var(--sp-6);
}
.service-block__body--dark { color: var(--clr-charcoal-700); }

.service-block__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.service-block__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-steel-200);
  line-height: 1.5;
}
.service-block__list li::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.service-block__list--dark li { color: var(--clr-charcoal-800); }

/* Process steps */
.process-section {
  background: var(--clr-charcoal-950);
  padding: var(--sp-24) var(--sp-10);
}
.process-section__inner { max-width: 1500px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--sp-16);
  border-top: 2px solid rgba(255,255,255,0.06);
}
.process-step {
  padding: var(--sp-8) var(--sp-6) var(--sp-8) 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.process-step__body {
  font-size: var(--text-sm);
  color: var(--clr-steel-400);
  line-height: var(--lh-relaxed);
}
.process-step__accent {
  width: 32px; height: 3px;
  background: var(--color-accent);
  margin-bottom: var(--sp-5);
}

/* FAQ Accordion */
.faq-section {
  background: var(--clr-steel-50);
  padding: var(--sp-24) var(--sp-10);
}
.faq-section__inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: var(--sp-12); }
.faq-item {
  border-bottom: 1px solid var(--color-border-mid);
}
.faq-item:first-child { border-top: 1px solid var(--color-border-mid); }
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
  padding: var(--sp-6) 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-charcoal-900);
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.faq-toggle:hover { color: var(--color-accent); }
.faq-icon {
  width: 32px; height: 32px;
  border: 2px solid var(--color-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--clr-charcoal-900);
  transition:
    transform var(--dur-fast) var(--ease-out-back),
    background var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    color var(--dur-fast) var(--ease-out-quart);
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-normal) var(--ease-out-quart);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
  min-height: 0;
  font-size: var(--text-base);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
  padding-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-quart);
}
.faq-item.is-open .faq-body-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 40ms;
}

/* ============================================================
   CONTACT: FLOATING LABEL INPUTS
   ============================================================ */
.float-field {
  position: relative;
  margin-bottom: var(--sp-6);
}
.float-field__input,
.float-field__textarea,
.float-field__select {
  width: 100%;
  background: var(--clr-charcoal-800);
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  color: var(--clr-white);
  padding: var(--sp-7) var(--sp-4) var(--sp-3);
  font-size: var(--text-base);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-fast) var(--ease-out-quart);
}
.float-field__input:focus,
.float-field__textarea:focus,
.float-field__select:focus {
  border-bottom-color: var(--color-accent);
  background: var(--clr-charcoal-700);
  box-shadow: 0 4px 12px rgba(240, 82, 0, 0.10);
}
.float-field__input.is-invalid,
.float-field__textarea.is-invalid {
  border-bottom-color: #f87171 !important;
  background: rgba(248, 113, 113, 0.05);
}
.float-field__input.is-valid,
.float-field__textarea.is-valid {
  border-bottom-color: #4ade80;
}
.float-field__label {
  position: absolute;
  top: 50%;
  left: var(--sp-4);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
  pointer-events: none;
  transition: top var(--dur-fast) var(--ease-out-quart),
    font-size var(--dur-fast) var(--ease-out-quart),
    color var(--dur-fast) var(--ease-out-quart),
    letter-spacing var(--dur-fast) var(--ease-out-quart);
}
.float-field__input:focus ~ .float-field__label,
.float-field__input:not(:placeholder-shown) ~ .float-field__label,
.float-field__textarea:focus ~ .float-field__label,
.float-field__textarea:not(:placeholder-shown) ~ .float-field__label,
.float-field--active .float-field__label {
  top: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--color-accent);
  letter-spacing: 0.16em;
  transform: translateY(0);
}
.float-field__textarea { min-height: 140px; resize: vertical; padding-top: var(--sp-8); }
.float-field__select { cursor: pointer; }
.float-field__select-wrap { position: relative; }
.float-field__select-wrap::after {
  content: '';
  position: absolute;
  right: var(--sp-4); top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--clr-steel-400);
  pointer-events: none;
}
.float-field__select-wrap .float-field__label { top: var(--sp-3); font-size: var(--text-xs); color: var(--color-accent); letter-spacing: 0.16em; transform: translateY(0); }
.float-field__select option { background: var(--clr-charcoal-800); color: var(--clr-white); }

/* Form validation toast & message banner */
.form-msg {
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: var(--sp-4);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--dur-normal) var(--ease-out-quart),
              transform var(--dur-normal) var(--ease-out-quart);
}
.form-msg.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.form-msg--ok {
  color: #4ade80;
  border-left: 3px solid #4ade80;
  background: rgba(74, 222, 128, 0.08);
}
.form-msg--err {
  color: #f87171;
  border-left: 3px solid #f87171;
  background: rgba(248, 113, 113, 0.08);
}

/* Contact layout */
.contact-page {
  padding: var(--sp-32) var(--sp-10);
  background: var(--clr-white);
}
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-8); }
.contact-info__intro {
  font-size: var(--text-base);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}
.contact-method {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--clr-steel-50);
  border-left: 3px solid var(--color-accent);
  transition: background var(--dur-normal) var(--ease-out-quart);
}
.contact-method--brass { border-left-color: var(--color-brass); }
.contact-method:hover { background: var(--clr-steel-100); }
.contact-method__icon {
  font-size: var(--text-xl);
  color: var(--color-accent);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-top: var(--sp-1);
}
.contact-method--brass .contact-method__icon { color: var(--color-brass); }
.contact-method__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-charcoal-800);
  display: block;
  margin-bottom: var(--sp-1);
}
.contact-method__value {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-charcoal-900);
  line-height: var(--lh-relaxed);
}
.contact-method__value a { transition: color var(--dur-fast) var(--ease-out-quart); }
.contact-method__value a:hover { color: var(--color-accent); }

.contact-form-wrap {
  background: var(--clr-charcoal-900);
  padding: var(--sp-10);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--color-border-dark);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.contact-privacy {
  font-size: var(--text-xs);
  color: var(--clr-steel-500);
  text-align: center;
  margin-top: var(--sp-4);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: var(--sp-32) var(--sp-10);
  border-top: 4px solid var(--color-brass);
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}
.testimonial-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-slider { position: relative; min-height: 220px; margin: var(--sp-12) 0 var(--sp-8); }
.testimonial-quote {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out-expo), transform var(--dur-slow) var(--ease-out-expo);
  pointer-events: none;
}
.testimonial-quote.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: var(--lh-snug);
  color: var(--clr-white);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-8);
}
.testimonial-text::before { content: '\201C'; color: var(--color-brass); }
.testimonial-text::after  { content: '\201D'; color: var(--color-brass); }
.testimonial-cite strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  display: block;
}
.testimonial-cite span { font-size: var(--text-sm); color: var(--clr-steel-300); }
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.testimonial-dot {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--dur-normal) var(--ease-out-quart), width var(--dur-normal) var(--ease-out-expo);
}
.testimonial-dot.is-active { background: var(--color-brass); width: 52px; }
.testimonial-dot:hover:not(.is-active) { background: rgba(255,255,255,0.45); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #F05200 0%, #D49E24 100%);
  padding: var(--sp-24) var(--sp-10);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(240, 82, 0, 0.3);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 6px;
  background: #FFFFFF;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-banner__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: var(--lh-tight);
  color: var(--clr-white);
  max-width: 700px;
}
.cta-banner__headline em { font-style: italic; font-weight: var(--fw-light); color: var(--clr-steel-300); }
.cta-banner__actions { display: flex; gap: var(--sp-4); flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--clr-black); padding: var(--sp-16) var(--sp-10) 0; }
.footer__inner {
  display: flex;
  gap: var(--sp-16);
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer__brand { flex-shrink: 0; max-width: 250px; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-steel-500);
  margin-top: var(--sp-4);
}
.footer__divider { width: 40px; height: 2px; background: var(--color-accent); margin-top: var(--sp-4); }
.footer__nav {
  display: flex;
  gap: var(--sp-16);
  margin-left: auto;
  flex-wrap: wrap;
}
.footer__nav-col { display: flex; flex-direction: column; gap: var(--sp-3); min-width: 140px; }
.footer__nav-heading {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.footer__nav-col a {
  font-size: var(--text-sm);
  color: var(--clr-steel-500);
  display: inline-block;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart);
  line-height: var(--lh-normal);
}
.footer__nav-col a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}
.footer__nav-col li {
  font-size: var(--text-sm);
  color: var(--clr-steel-500);
  line-height: var(--lh-normal);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  max-width: 1500px;
  margin: 0 auto;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: var(--text-xs); color: var(--clr-steel-500); }
.footer__legal { display: flex; gap: var(--sp-4); align-items: center; }
.footer__legal a { font-size: var(--text-xs); color: var(--clr-steel-500); transition: color var(--dur-fast) var(--ease-out-quart); }
.footer__legal a:hover { color: var(--clr-white); }
.footer__legal-dot { width: 3px; height: 3px; background: var(--clr-steel-600, var(--clr-steel-500)); border-radius: 50%; }

/* ============================================================
   ABOUT PAGE: VALUES
   ============================================================ */
.values-section {
  padding: var(--sp-32) var(--sp-10);
  background: var(--clr-white);
}
.values-section__inner { max-width: 1500px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-16);
}
.value-card {
  padding: var(--sp-10);
  background: var(--clr-steel-50);
  border-top: 3px solid transparent;
  transition: transform var(--dur-normal) var(--ease-out-quart),
    background var(--dur-normal) var(--ease-out-quart),
    border-color var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart);
}
.value-card:hover {
  transform: translateY(-4px);
  background: var(--clr-white);
  border-top-color: var(--color-accent);
  box-shadow: 0 14px 28px -6px rgba(14, 16, 18, 0.08);
}
.value-card:nth-child(2):hover { border-top-color: var(--color-brass); }
.value-card__num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.16em;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-4);
  transition: transform var(--dur-fast) var(--ease-out-quart);
}
.value-card:hover .value-card__num {
  transform: translateY(-2px);
}
.value-card:nth-child(2) .value-card__num { color: var(--color-brass); }
.value-card:nth-child(3) .value-card__num { color: var(--clr-charcoal-500); }
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}
.value-card__body {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   CERTS STRIP
   ============================================================ */
.certs-strip {
  background: var(--clr-charcoal-900);
  padding: var(--sp-10) var(--sp-10);
}
.certs-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.certs-strip__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.10);
  padding-right: var(--sp-12);
}
.certs-strip__items { display: flex; gap: var(--sp-8); flex-wrap: wrap; align-items: center; }
.cert-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-steel-200);
}
.cert-item__dot { width: 6px; height: 6px; background: var(--color-accent); flex-shrink: 0; }

/* ============================================================
   TEAM: JOIN SECTION
   ============================================================ */
.join-section {
  background: var(--clr-steel-50);
  padding: var(--sp-24) var(--sp-10);
  border-top: 3px solid var(--color-accent);
}
.join-section__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  flex-wrap: wrap;
}
.join-section__body {
  font-size: var(--text-base);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
  max-width: 500px;
  margin-top: var(--sp-4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav__inner { padding: var(--sp-3) var(--sp-6); }
  .nav__cta { display: none; }
  .nav__menu-toggle { display: flex; }
  .nav__links { display: none !important; }

  /* Body canvas when drawer is open */
  body.drawer-opening,
  body.drawer-open {
    overflow: hidden !important;
    touch-action: none;
    background-color: #EBF0F5;
  }

  /* When drawer is active, isolate widgets and overlays */
  body.drawer-opening .back-to-top,
  body.drawer-open .back-to-top,
  body.drawer-opening #scroll-progress-rail,
  body.drawer-open #scroll-progress-rail,
  body.drawer-opening .command-dock,
  body.drawer-open .command-dock {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Page Viewport Wrapper for 3D Perspective Scale */
  .site-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    transform-origin: 0% 50%;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, border-radius;
    z-index: 20;
  }

  body.drawer-opening .site-wrapper,
  body.drawer-open .site-wrapper,
  body.drawer-closing .site-wrapper {
    position: fixed;
    top: calc(-1 * var(--drawer-scroll-y, 0px));
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* The 3D Scaled Miniature Card */
  body.drawer-open .site-wrapper {
    transform: scale(0.72) translate3d(70%, 0, 0) perspective(1200px) rotateY(-2.5deg);
    border-radius: 28px;
    box-shadow: -22px 28px 65px rgba(14, 16, 18, 0.28),
                -8px 10px 24px rgba(14, 16, 18, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    user-select: none;
  }

  @media (min-width: 500px) and (max-width: 767px) {
    body.drawer-open .site-wrapper {
      transform: scale(0.75) translate3d(310px, 0, 0) perspective(1200px) rotateY(-2deg);
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    body.drawer-open .site-wrapper {
      transform: scale(0.78) translate3d(350px, 0, 0) perspective(1200px) rotateY(-1.5deg);
      border-radius: 32px;
    }
  }

  /* Scrim Tap Overlay on the Scaled Card */
  .drawer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(14, 18, 24, 0.26);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 36px;
    transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.38s;
  }

  body.drawer-open .drawer-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-scrim__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-charcoal-950);
    transform: translateY(-8px) scale(0.92);
    transition: transform 0.28s var(--ease-out-back),
                box-shadow 0.2s var(--ease-out);
  }

  .drawer-scrim:hover .drawer-scrim__badge,
  .drawer-scrim:active .drawer-scrim__badge {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  }

  .drawer-scrim__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    font-size: 11px;
    font-weight: 800;
  }

  /* The Mobile 3D Drawer Menu Canvas */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #F8FAFC;
    background-image: radial-gradient(at 10% 10%, rgba(240, 82, 0, 0.04) 0%, transparent 60%),
                      radial-gradient(at 90% 90%, rgba(196, 154, 60, 0.04) 0%, transparent 60%);
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: var(--sp-6) var(--sp-5) var(--sp-8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-24px);
    transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.38s;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.06);
  }

  body.drawer-opening .mobile-drawer,
  body.drawer-open .mobile-drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* Drawer Profile / Header */
  .mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .mobile-drawer__profile {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    min-width: 0;
  }

  .mobile-drawer__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid rgba(240, 82, 0, 0.25);
    box-shadow: 0 4px 14px rgba(240, 82, 0, 0.16), 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease-out-back);
  }

  .mobile-drawer:hover .mobile-drawer__avatar {
    transform: scale(1.05) rotate(3deg);
  }

  .mobile-drawer__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-drawer__brand-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .mobile-drawer__eyebrow {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 3px;
  }

  .mobile-drawer__brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--clr-charcoal-950);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-drawer__tagline {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--clr-steel-400);
    margin-top: 2px;
  }

  .mobile-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: var(--clr-charcoal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
  }

  .mobile-drawer__close:hover,
  .mobile-drawer__close:focus-visible {
    background: var(--clr-orange-100);
    color: var(--color-accent);
    border-color: rgba(240, 82, 0, 0.3);
    transform: rotate(90deg) scale(1.05);
  }

  /* Navigation List */
  .mobile-drawer__nav {
    margin-bottom: var(--sp-4);
  }

  .mobile-drawer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-drawer__item {
    opacity: 0;
    transform: translateX(-16px);
  }

  body.drawer-open .mobile-drawer__item {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.32s var(--ease-out),
                transform 0.32s var(--ease-out);
    transition-delay: calc(var(--stagger-idx, 1) * 35ms + 40ms);
  }

  .mobile-drawer__link-row {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-charcoal-800);
    text-decoration: none;
    width: 100%;
    position: relative;
    transition: background 0.18s var(--ease-out),
                color 0.18s var(--ease-out),
                transform 0.18s var(--ease-out);
  }

  .mobile-drawer__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-steel-500);
    flex-shrink: 0;
    transition: background 0.18s var(--ease-out),
                color 0.18s var(--ease-out),
                transform 0.18s var(--ease-out),
                border-color 0.18s var(--ease-out);
  }

  .mobile-drawer__label {
    flex-grow: 1;
    letter-spacing: -0.01em;
  }

  .mobile-drawer__indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s var(--ease-out),
                transform 0.2s var(--ease-out-back);
  }

  .mobile-drawer__link:hover {
    background: rgba(240, 82, 0, 0.05);
    color: var(--color-accent);
    transform: translateX(3px);
  }

  .mobile-drawer__link:hover .mobile-drawer__icon {
    color: var(--color-accent);
    border-color: rgba(240, 82, 0, 0.2);
    transform: scale(1.05);
  }

  /* Active Link State */
  .mobile-drawer__link.is-active {
    background: rgba(240, 82, 0, 0.09);
    color: var(--color-accent);
    font-weight: 700;
  }

  .mobile-drawer__link.is-active .mobile-drawer__icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(240, 82, 0, 0.28);
  }

  .mobile-drawer__link.is-active .mobile-drawer__indicator {
    opacity: 1;
    transform: scale(1);
  }

  /* Services Accordion Sub-menu */
  .mobile-drawer__sub-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-steel-400);
    margin-right: 6px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.22s var(--ease-out);
  }

  .mobile-drawer__sub-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-accent);
  }

  .mobile-drawer__item--has-sub.is-expanded .mobile-drawer__sub-toggle {
    transform: rotate(180deg);
    color: var(--color-accent);
  }

  .mobile-drawer__sub-links {
    list-style: none;
    padding: 4px 0 6px 48px;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 3px;
    border-left: 2px solid rgba(240, 82, 0, 0.15);
    margin-left: 26px;
  }

  .mobile-drawer__item--has-sub.is-expanded .mobile-drawer__sub-links {
    display: flex;
    animation: drawerSubOpen 0.25s var(--ease-out) forwards;
  }

  @keyframes drawerSubOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-drawer__sub-link {
    display: block;
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--clr-charcoal-700);
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.15s, background 0.15s, transform 0.15s;
  }

  .mobile-drawer__sub-link:hover {
    color: var(--color-accent);
    background: rgba(240, 82, 0, 0.06);
    transform: translateX(3px);
  }

  /* Direct Connect & Utilities */
  .mobile-drawer__section-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-steel-400);
    padding: 0 10px;
    margin: var(--sp-3) 0 8px;
  }

  .mobile-drawer__utilities {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--sp-5);
    opacity: 0;
    transform: translateX(-16px);
  }

  body.drawer-open .mobile-drawer__utilities {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.32s var(--ease-out),
                transform 0.32s var(--ease-out);
    transition-delay: 240ms;
  }

  .mobile-drawer__util-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.18s var(--ease-out),
                border-color 0.18s var(--ease-out),
                box-shadow 0.18s var(--ease-out);
  }

  .mobile-drawer__util-link:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 82, 0, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .mobile-drawer__util-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--clr-charcoal-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-drawer__util-icon--whatsapp {
    background: #25D366;
    color: #FFFFFF;
  }

  .mobile-drawer__util-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
  }

  .mobile-drawer__util-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-charcoal-900);
    line-height: 1.2;
  }

  .mobile-drawer__util-sub {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--clr-steel-400);
  }

  .mobile-drawer__util-arrow {
    color: var(--clr-steel-300);
    font-size: 0.9rem;
    transition: transform 0.18s var(--ease-out), color 0.18s;
  }

  .mobile-drawer__util-link:hover .mobile-drawer__util-arrow {
    transform: translateX(3px);
    color: var(--color-accent);
  }

  .mobile-drawer__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--clr-steel-500);
  }

  .mobile-drawer__meta-icon {
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* Bottom Primary CTA */
  .mobile-drawer__footer {
    margin-top: auto;
    padding-top: var(--sp-2);
    opacity: 0;
    transform: translateY(10px);
  }

  body.drawer-open .mobile-drawer__footer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.32s var(--ease-out),
                transform 0.32s var(--ease-out);
    transition-delay: 280ms;
  }

  .mobile-drawer__cta {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(240, 82, 0, 0.32);
  }
}

/* Base site-wrapper container */
.site-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-bg);
}

@media (min-width: 1025px) {
  .mobile-drawer,
  .drawer-scrim {
    display: none !important;
  }
}

/* Reduced motion accessibility override */
@media (prefers-reduced-motion: reduce) {
  .site-wrapper,
  body.drawer-open .site-wrapper,
  .mobile-drawer,
  .drawer-scrim {
    transform: none !important;
    transition: none !important;
  }
  body.drawer-open .site-wrapper {
    display: none;
  }
  body.drawer-open .mobile-drawer {
    max-width: 100%;
  }
}

  .about-teaser__layout { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-teaser__image-frame img { height: 420px; }
  .about-teaser__corner-accent { display: none; }

  .services-preview__header { flex-direction: column; align-items: flex-start; }
  .services-preview__grid { grid-template-columns: 1fr; }

  .contact-page__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

  .footer__nav { gap: var(--sp-8); }
  .intro-strip { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid--full { grid-template-columns: 1fr 1fr; }
  .project-card--wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav__inner  { padding: var(--sp-3) var(--sp-5); }

  .hero__content { padding: 0 var(--sp-5) var(--sp-16); }
  .hero__subtext br { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-direction: column; gap: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--sp-6); }
  .hero__stat-divider { display: none; }
  .hero__stat { padding-right: 0; }
  .hero__scroll { display: none; }

  .about-teaser { padding: var(--sp-16) var(--sp-5); }
  .services-preview { padding: var(--sp-16) var(--sp-5); }
  .services-preview__inner { }
  .projects-section { padding: var(--sp-16) var(--sp-5); }
  .projects-section__header { flex-direction: column; align-items: flex-start; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid--full { grid-template-columns: 1fr; }
  .project-card__img-wrap img { height: 280px !important; }

  .team-section { padding: var(--sp-16) var(--sp-5); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .flip-card { height: 460px; }

  .service-block { min-height: auto; }
  .service-block__content { max-width: 100% !important; padding: var(--sp-16) var(--sp-5); margin: 0; }
  .service-block__overlay,
  .service-block__overlay--light,
  .service-block__overlay--muted {
    background: linear-gradient(to bottom, rgba(27,31,34,0.95) 0%, rgba(27,31,34,0.98) 100%);
  }
  .service-block--light .service-block__overlay--light,
  .service-block--muted .service-block__overlay--muted {
    background: linear-gradient(to bottom, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.98) 100%);
  }
  .process-steps { grid-template-columns: 1fr; border-top: none; }
  .process-step { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); padding: var(--sp-6) 0; }

  .timeline::before { left: var(--sp-4); }
  .timeline-item { grid-template-columns: 0 40px 1fr; }
  .timeline-item__content--left { display: none; }
  .timeline-item__content--right { padding-left: var(--sp-5); }
  .timeline-item__dot-col { align-items: flex-start; padding-left: 0; }

  .stats-mosaic { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .contact-page { padding: var(--sp-16) var(--sp-5); }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-6); }

  .cta-banner { padding: var(--sp-16) var(--sp-5); }

  .footer { padding: var(--sp-12) var(--sp-5) 0; }
  .footer__inner { flex-direction: column; gap: var(--sp-8); }
  .footer__nav { flex-direction: column; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  .certs-strip { padding: var(--sp-8) var(--sp-5); }
  .certs-strip__inner { flex-direction: column; align-items: flex-start; }
  .certs-strip__label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 0 0 var(--sp-4) 0; width: 100%; }

  .page-hero { padding-top: var(--sp-32); padding-bottom: var(--sp-16); }
  .page-hero__content { padding: 0 var(--sp-5); }

  .testimonial-section { padding: var(--sp-16) var(--sp-5); }
  .testimonial-text { font-size: var(--text-2xl); }

  .faq-section { padding: var(--sp-16) var(--sp-5); }
  .process-section { padding: var(--sp-16) var(--sp-5); }

  .join-section { padding: var(--sp-16) var(--sp-5); }
  .join-section__inner { flex-direction: column; align-items: flex-start; }

  .credentials__inner { flex-direction: column; }
  .credentials__item + .credentials__item::before { display: none; }
  .credentials__item { padding: var(--sp-5) var(--sp-6); border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .flip-card { height: auto; }
  .flip-card__inner { transform: none !important; }
  .flip-card__front, .flip-card__back { position: static; backface-visibility: visible; transform: none; }
  .flip-card__back { display: none; }

  .section-headline { font-size: var(--text-3xl); }
  .page-hero__title { font-size: var(--text-4xl); }
  .hero__headline { font-size: var(--text-5xl); }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOCUS & SELECTION
   ============================================================ */
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
::selection { background: var(--color-accent); color: var(--clr-white); }

/* ============================================================
   CUSTOM INDUSTRIAL SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--clr-charcoal-950);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-charcoal-600);
  border: 2px solid var(--clr-charcoal-950);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ============================================================
   BACK TO TOP CONTROL
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 46px;
  height: 46px;
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
  border: 2px solid var(--clr-steel-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-expo),
    background var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--clr-white);
}

/* ============================================================
   INTERACTIVE PROJECT MODAL (Fluid Reveal & Smooth Exit)
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 9, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity calc(var(--dur-normal) * 0.7) var(--ease-in-quart),
    visibility calc(var(--dur-normal) * 0.7);
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--dur-normal) var(--ease-out-quart),
    visibility var(--dur-normal);
}
.modal-backdrop.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}
.modal-card {
  background: var(--clr-charcoal-900);
  border: 1px solid var(--color-border-dark-mid);
  border-top: 4px solid var(--color-accent);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--clr-white);
  padding: var(--sp-10);
  position: relative;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition:
    opacity calc(var(--dur-normal) * 0.7) var(--ease-in-quart),
    transform calc(var(--dur-normal) * 0.7) var(--ease-in-quart);
  box-shadow: var(--shadow-xl);
}
.modal-backdrop.is-open .modal-card {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition:
    opacity var(--dur-normal) var(--ease-out-quart),
    transform var(--dur-normal) var(--ease-out-expo);
}
.modal-backdrop.is-closing .modal-card {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
}
.modal-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 36px;
  height: 36px;
  background: var(--clr-charcoal-800);
  color: var(--clr-white);
  border: 1px solid var(--color-border-dark);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out-quart), color var(--dur-fast) var(--ease-out-quart);
}
.modal-close:hover {
  background: var(--color-accent);
  color: var(--clr-white);
}
.modal-header {
  margin-bottom: var(--sp-6);
  padding-right: var(--sp-10);
}
.modal-category {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brass);
  display: block;
  margin-bottom: var(--sp-2);
}
.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  line-height: var(--lh-tight);
}
.modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: var(--sp-6);
  display: block;
}
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}
.modal-spec-item strong {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
  display: block;
  margin-bottom: var(--sp-1);
}
.modal-spec-item span {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
}
.modal-body-text {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-steel-300);
  margin-bottom: var(--sp-8);
}
@media (max-width: 600px) {
  .modal-specs-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .modal-card { padding: var(--sp-6); }
}

/* ============================================================
   INTERACTIVE COST & TIMELINE CALCULATOR
   ============================================================ */
.calc-section {
  padding: var(--sp-24) var(--sp-10);
  background: var(--clr-charcoal-950);
  border-top: 3px solid var(--color-accent);
}
.calc-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  margin-top: var(--sp-10);
}
.calc-card {
  background: var(--clr-charcoal-900);
  padding: var(--sp-8);
  border: 1px solid var(--color-border-dark-mid);
  transition: transform var(--dur-normal) var(--ease-out-quart),
    border-color var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart);
}
.calc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.35);
}
.calc-group {
  margin-bottom: var(--sp-6);
}
.calc-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}
.calc-label-val {
  color: var(--clr-white);
  font-size: var(--text-base);
  font-weight: var(--fw-black);
}
.calc-select {
  width: 100%;
  background: var(--clr-charcoal-800);
  border: 1px solid var(--color-border-dark);
  border-bottom: 2px solid var(--color-accent);
  color: var(--clr-white);
  padding: var(--sp-4);
  font-size: var(--text-sm);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
}
.calc-select option {
  background: var(--clr-charcoal-800);
  color: var(--clr-white);
}
.calc-range-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.calc-range-slider {
  flex: 1;
  accent-color: var(--color-accent);
  height: 6px;
  background: var(--clr-charcoal-700);
  border-radius: 0;
  cursor: pointer;
}
.calc-tier-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
}
.calc-tier-btn {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-steel-300);
  background: var(--clr-charcoal-800);
  border: 1px solid var(--color-border-dark);
  padding: var(--sp-3) var(--sp-2);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out-quart);
}
.calc-tier-btn:hover {
  background: var(--clr-charcoal-700);
  color: var(--clr-white);
}
.calc-tier-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--clr-white);
}
.calc-output-panel {
  background: var(--clr-charcoal-800);
  padding: var(--sp-8);
  border: 1px solid var(--color-border-dark-mid);
  border-top: 3px solid var(--color-brass);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.calc-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-output-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
}
.calc-curr-btn {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: var(--color-brass);
  background: var(--clr-charcoal-900);
  border: 1px solid var(--color-border-dark);
  padding: var(--sp-1) var(--sp-3);
  cursor: pointer;
}
.calc-result-box {
  background: var(--clr-charcoal-900);
  padding: var(--sp-5);
  border-left: 3px solid var(--color-accent);
}
.calc-result-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-steel-400);
  display: block;
  margin-bottom: var(--sp-1);
}
.calc-result-val {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc-result-sub {
  font-size: var(--text-xs);
  color: var(--color-brass);
  margin-top: var(--sp-1);
  display: block;
}
.calc-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-tier-buttons { grid-template-columns: 1fr; }
}

/* ============================================================
   BEFORE & AFTER COMPARISON SLIDER
   ============================================================ */
.ba-section {
  padding: var(--sp-24) var(--sp-10);
  background: var(--clr-charcoal-900);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.ba-section .section-headline {
  color: #FFFFFF;
}
.ba-section .section-headline em {
  color: var(--color-brass-400);
  font-style: italic;
}
.ba-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.ba-subtitle {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-steel-200);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-3);
  max-width: 680px;
}
.ba-container {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: var(--sp-10);
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--color-border-dark-mid);
  box-shadow: var(--shadow-xl);
}
.ba-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}
.ba-before img {
  width: 1500px;
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--color-accent);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(240, 82, 0, 0.9);
}
.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-black);
  border: 2px solid var(--clr-white);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.ba-badge {
  position: absolute;
  top: var(--sp-5);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
}
.ba-badge--before {
  left: var(--sp-5);
  background: var(--color-accent);
  color: var(--clr-white);
}
.ba-badge--after {
  right: var(--sp-5);
  background: var(--clr-charcoal-950);
  color: var(--color-brass);
  border: 1px solid var(--color-border-dark-mid);
}

/* ============================================================
   REGIONAL OPERATIONS MAP
   ============================================================ */
.map-section {
  padding: var(--sp-24) var(--sp-10);
  background: var(--clr-charcoal-950);
  border-top: 3px solid var(--color-accent);
  position: relative;
}
.map-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.map-subtitle {
  font-size: var(--text-base);
  font-weight: 500;
  color: #E2E8F0;
  margin-top: var(--sp-2);
  max-width: 680px;
}
.map-graphic-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  background: var(--clr-charcoal-900);
  margin-top: var(--sp-10);
  border: 1px solid var(--color-border-dark-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-overlay {
  display: none;
}
.map-svg {
  width: 90%;
  height: 90%;
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 1.5;
}
.map-pin {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) var(--ease-out-back);
}
.map-pin:hover,
.map-pin.is-active {
  transform: translate(-50%, -50%) scale(1.25);
}
.map-pin-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: mapPulse 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
  pointer-events: none;
}
@keyframes mapPulse {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.map-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 12px var(--color-accent);
}
.map-pin-label {
  position: absolute;
  left: var(--sp-6);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-charcoal-950);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--color-border-dark-mid);
  border-left: 2px solid var(--color-accent);
  white-space: nowrap;
}
.map-popover {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  max-width: 380px;
  background: var(--clr-charcoal-900);
  border: 1px solid var(--color-border-dark-mid);
  border-top: 3px solid var(--color-brass);
  padding: var(--sp-6);
  z-index: 10;
  box-shadow: var(--shadow-xl);
  transition: opacity var(--dur-normal) var(--ease-out-quart);
}
.map-popover-cat {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brass);
  display: block;
  margin-bottom: var(--sp-1);
}
.map-popover-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.map-popover-desc {
  font-size: var(--text-sm);
  color: var(--clr-steel-300);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
@media (max-width: 768px) {
  .ba-container { height: 360px; }
  .map-graphic-wrap { height: 420px; }
  .map-popover { left: var(--sp-3); right: var(--sp-3); max-width: none; }
}

/* ============================================================
   FEATURE 2: MAGNETIC 3D TILT & GLARE
   ============================================================ */
.magnetic-card {
  transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.tilt-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out-quart);
  z-index: 6;
}
.magnetic-card:hover .tilt-glare {
  opacity: 1;
}

/* ============================================================
   FEATURE 4: FLOATING ARCHITECTURAL COMMAND DOCK
   ============================================================ */
.command-dock {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: var(--z-sticky);
  background: rgba(14, 16, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-dark-mid);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1);
  transition: transform var(--dur-normal) var(--ease-out-expo), opacity var(--dur-normal) var(--ease-out-quart);
}
.command-dock.is-hidden {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.dock-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-steel-300);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out-quart), background var(--dur-fast) var(--ease-out-quart), border-color var(--dur-fast) var(--ease-out-quart);
  white-space: nowrap;
}
.dock-item:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.dock-item--accent {
  background: var(--color-accent);
  color: var(--clr-white);
}
.dock-item--accent:hover {
  background: var(--color-accent-hover);
  color: var(--clr-white);
}
.dock-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 var(--sp-1);
}
@media (max-width: 640px) {
  .command-dock { display: none; }
}

/* ============================================================
   FEATURE 5: EDITORIAL TESTIMONIALS WITH OVERSIZED BRASS QUOTE
   ============================================================ */
.testimonial-card--editorial {
  position: relative;
  overflow: hidden;
  background: var(--clr-charcoal-900);
  border: 1px solid var(--color-border-dark-mid);
  border-left: 4px solid var(--color-brass);
  padding: var(--sp-10);
}
.testimonial-bg-quote {
  position: absolute;
  top: calc(-1 * var(--sp-6));
  right: var(--sp-6);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: rgba(196, 154, 60, 0.08);
  pointer-events: none;
  user-select: none;
}
.testimonial-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brass);
  background: rgba(196, 154, 60, 0.12);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(196, 154, 60, 0.3);
}

/* ============================================================
   FEATURE 5: BLUEPRINT WIREFRAME TOGGLE
   ============================================================ */
.wireframe-toggle-btn {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brass);
  background: var(--clr-charcoal-950);
  border: 1px solid var(--color-border-dark-mid);
  padding: var(--sp-2) var(--sp-4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--dur-fast) var(--ease-out-quart);
}
.wireframe-toggle-btn:hover,
.wireframe-toggle-btn.is-blueprint {
  background: var(--color-accent);
  color: var(--clr-white);
  border-color: var(--color-accent);
}

/* Global CAD Blueprint Mode Overlay System */
body.is-blueprint-mode,
html.is-blueprint-mode {
  background-color: #061826 !important;
}

body.is-blueprint-mode::before {
  filter: blur(14px) contrast(200%) hue-rotate(190deg) invert(85%) saturate(300%) !important;
}

body.is-blueprint-mode::after {
  background: linear-gradient(135deg, rgba(6, 24, 38, 0.88) 0%, rgba(10, 37, 64, 0.84) 100%) !important;
}

.is-blueprint-mode img,
img.is-blueprint-mode {
  filter: contrast(180%) hue-rotate(190deg) invert(92%) saturate(300%) !important;
  transition: filter var(--dur-normal) var(--ease-out-quart);
}

body.is-blueprint-mode .service-card,
body.is-blueprint-mode .project-card,
body.is-blueprint-mode .credentials,
body.is-blueprint-mode .intro-strip,
body.is-blueprint-mode .ba-container {
  border-color: #00F0FF !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25) !important;
}

/* ============================================================
   MASTER PARALLAX BACKGROUND SYSTEM
   ============================================================ */
.master-bg-canvas {
  position: fixed;
  top: -15vh;
  left: 0;
  right: 0;
  height: 130vh;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background: #FFFFFF;
}

.master-bg-img {
  display: none !important;
}

.master-bg-overlay {
  display: none;
}

.master-bg-mesh {
  display: none;
}

@keyframes ambientMeshSway {
  0%   { transform: translate3d(0, 0, 0) scale(1.0); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.05); }
  100% { transform: translate3d(2%, -2%, 0) scale(0.98); }
}

.master-bg-grid {
  display: none;
}

/* 1. Clean background canvas spacing */

/* Ensure content sits above pseudo-element background layers */
.hero__content,
.page-hero__content,
.projects-section__header,
.projects-grid,
.service-block__content,
.process-section__inner,
.calc-inner,
.map-inner,
.contact-page__inner,
.footer__inner {
  position: relative;
  z-index: 2;
}

/* 3. HERO BACKGROUND: Daylight Entry + CAD Technical Grid */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before {
  display: none;
}
.hero::after, .page-hero::after {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 75vw; height: 75vw;
  max-width: 950px; max-height: 950px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 45%, transparent 70%);
}

/* 4. STORY / ABOUT SECTION BACKGROUND: Isometric Blueprint Lines + Warm Glow */
.values-section, section[aria-label="Company story"] {
  position: relative;
  overflow: hidden;
}
.values-section::before, section[aria-label="Company story"]::before {
  display: none;
}

/* 5. SERVICES SECTION BACKGROUND: Structural Beam Grids & Ambient Lighting */
.service-block {
  position: relative;
  overflow: hidden;
}
.service-block::before {
  display: none;
}

/* 6. PROJECTS PORTFOLIO BACKGROUND: CAD Dot Matrix & Alignment Lines */
.projects-section {
  position: relative;
  overflow: hidden;
}
.projects-section::before {
  display: none;
}

/* 7. PROCESS SECTION BACKGROUND: Milestone Alignment Grid */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 65%);
}

/* 8. ESTIMATOR CALCULATOR BACKGROUND: Drafting Grid & Monochrome Glow */
.calc-section {
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  display: none;
}
.calc-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: 5%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

/* 9. REGIONAL MAP BACKGROUND: Isometric Grid Texture */
.map-section::before {
  display: none;
}

/* 10. TESTIMONIALS SECTION BACKGROUND: Diffuse Ambient Warmth */
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw; height: 450px;
  max-width: 1100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

/* 11. CONTACT SECTION BACKGROUND: Precision Drafting Lines */
.contact-page::before {
  display: none;
}

/* 12. FOOTER BACKGROUND: Structural Grid & Ambient Foundation Glow */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero::after, .page-hero::after, .calc-section::after {
    animation: none;
  }
}

/* ============================================================
   PAGE SECTION HELPER CLASSES (Clean HTML decoupling)
   ============================================================ */
.about-story-section {
  padding: var(--sp-32) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
}
.about-story-text {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-steel-400);
}
.about-story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-timeline-section {
  padding: var(--sp-32) var(--sp-10);
  background: var(--clr-steel-50);
}
.about-timeline-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.about-timeline-list {
  margin-top: var(--sp-16);
}

.calc-val-lg {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-white);
}
.calc-val-md {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}

.contact-hours-box {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  background: var(--clr-steel-50);
  border-left: 3px solid var(--color-border-mid);
}
.contact-hours-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-4);
}
.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-hours-row {
  border-bottom: 1px solid var(--color-border);
}
.contact-hours-cell {
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--clr-steel-400);
}
.contact-hours-val {
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-charcoal-900);
  text-align: right;
}

.team-story-section {
  padding: var(--sp-24) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.team-story-text {
  font-size: var(--text-base);
  color: var(--clr-steel-400);
  line-height: var(--lh-relaxed);
}

.contact-map-banner {
  background: var(--clr-charcoal-800);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-map-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-map-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.contact-map-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: var(--clr-white);
}
.contact-map-sub {
  display: block;
  font-size: var(--text-base);
  color: var(--clr-steel-300);
  margin-top: var(--sp-2);
}
.contact-map-btn {
  margin-top: var(--sp-6);
}

/* ============================================================
   EDITORIAL SPLIT-SCREEN ABOUT & CAPABILITIES SECTION (MOCKUP REDESIGN)
   ============================================================ */
.about-redesign {
  position: relative;
  padding: var(--sp-32) var(--sp-10);
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.about-redesign__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Visual Wrapper */
.about-redesign__visual-wrap {
  position: relative;
  width: 100%;
}

/* CAD Blueprint Technical Line Overlay in Background */
.about-redesign__blueprint-bg {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

/* Experience Badge (Top Left Overlay) */
.about-redesign__exp-badge {
  position: absolute;
  top: var(--sp-4);
  left: calc(-1 * var(--sp-6));
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-mid);
  padding: var(--sp-4) var(--sp-6) var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.about-redesign__exp-bar {
  width: 16px;
  height: 64px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.about-redesign__exp-content {
  display: flex;
  flex-direction: column;
}
.about-redesign__exp-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  line-height: 0.95;
  color: var(--clr-charcoal-900);
  letter-spacing: -0.03em;
}
.about-redesign__exp-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-steel-500);
  margin-top: var(--sp-1);
}

/* Main Image Frame */
.about-redesign__img-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(20, 22, 24, 0.08);
}
.about-redesign__img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out-quart);
}
.about-redesign__img-frame:hover img {
  transform: scale(1.03);
}

/* Bottom Dark Pillars Dock Overlay across image bottom */
.about-redesign__dock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--clr-charcoal-950);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}
.about-redesign__dock-item {
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--dur-fast) var(--ease-out-quart);
}
.about-redesign__dock-item:last-child {
  border-right: none;
}
.about-redesign__dock-item:hover {
  background: var(--clr-charcoal-800);
}
.about-redesign__dock-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.about-redesign__dock-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.1;
}
.about-redesign__dock-sub {
  font-size: 0.72rem;
  color: var(--clr-steel-300);
  line-height: 1.2;
}

/* Right Content Column */
.about-redesign__content {
  display: flex;
  flex-direction: column;
}
.about-redesign__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--clr-charcoal-950);
  margin-bottom: var(--sp-5);
}
.about-redesign__headline em {
  font-style: normal;
  color: var(--color-accent);
}
.about-redesign__body {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-charcoal-700);
  margin-bottom: var(--sp-6);
}

/* Feature List (3 circular outline items) */
.about-redesign__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
  border-top: 1px solid var(--color-border-mid);
  padding-top: var(--sp-6);
}
.about-redesign__feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.about-redesign__feature-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: var(--clr-orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--dur-fast) var(--ease-out-back), background var(--dur-fast) var(--ease-out-quart);
}
.about-redesign__feature-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  transition: stroke var(--dur-fast) var(--ease-out-quart);
}
.about-redesign__feature-item:hover .about-redesign__feature-badge {
  transform: scale(1.08);
  background: var(--color-accent);
  color: var(--clr-white);
}
.about-redesign__feature-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-1);
}
.about-redesign__feature-desc {
  font-size: var(--text-sm);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-relaxed);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-redesign__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .about-redesign__exp-badge {
    left: var(--sp-4);
  }
  .about-redesign__img-frame img {
    height: 440px;
  }
}
@media (max-width: 640px) {
  .about-redesign {
    padding: var(--sp-16) var(--sp-5);
  }
  .about-redesign__dock {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-redesign__dock-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .about-redesign__img-frame img {
    height: 360px;
  }
}

/* ============================================================
   SERVICE BLOCK SPECS GRID
   ============================================================ */
.service-block__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  padding: var(--sp-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.service-block__specs--dark {
  background: rgba(14, 16, 18, 0.04);
  border-color: rgba(14, 16, 18, 0.1);
}
.service-block__spec {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.service-block__spec-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.service-block__specs--dark .service-block__spec-label {
  color: var(--clr-brass-600);
}
.service-block__spec-val {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
}
.service-block__specs--dark .service-block__spec-val {
  color: var(--clr-charcoal-900);
}

@media (max-width: 640px) {
  .service-block__specs {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
}

/* ============================================================
   CONTACT BRIEF GUIDANCE GRID
   ============================================================ */
.calc-guidance-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.calc-guidance-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-guidance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.calc-guidance-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: var(--color-accent);
  line-height: 1;
}
.calc-guidance-title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}
.calc-guidance-desc {
  font-size: var(--text-sm);
  color: var(--clr-steel-300);
  line-height: var(--lh-normal);
}

/* ============================================================
   ABOUT LIGHT BLOCK (BRIGHT & LIGHT THEME REDESIGN)
   ============================================================ */
.about-light-block {
  background: var(--clr-steel-50);
  color: var(--clr-charcoal-900);
  position: relative;
  padding: var(--sp-24) var(--sp-8);
  overflow: hidden;
  border-top: 1px solid var(--color-border-mid);
  border-bottom: 1px solid var(--color-border-mid);
}
.about-light-block__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.about-light-block__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* Left Visual Column */
.about-light-block__visual {
  position: relative;
  min-height: 520px;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}
.about-light-block__blueprint {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
}
.about-light-block__main-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--sp-2);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--clr-white);
  width: 82%;
  background: var(--clr-steel-100);
}
.about-light-block__main-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.about-light-block__visual:hover .about-light-block__main-frame img {
  transform: scale(1.03);
}
.about-light-block__live-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: rgba(14, 16, 18, 0.90);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.about-light-block__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.about-light-block__sub-frame {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 52%;
  z-index: 3;
  border-radius: var(--sp-2);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--clr-white);
  background: var(--clr-white);
}
.about-light-block__sub-frame img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.about-light-block__sub-label {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(14, 16, 18, 0.85);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
}

.about-light-block__motto-chip {
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 4;
  background: var(--clr-white);
  border: 1px solid var(--color-brass-400);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}
.about-light-block__star {
  color: var(--color-brass-500);
  font-size: var(--text-xl);
}
.about-light-block__motto-text {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  letter-spacing: 0.08em;
  color: var(--clr-charcoal-900);
}
.about-light-block__motto-sub {
  font-size: var(--text-xs);
  color: var(--clr-steel-400);
}

/* Right Content Column */
.about-light-block__content {
  position: relative;
  z-index: 2;
}
.about-light-block__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin: var(--sp-4) 0 var(--sp-6);
}
.about-light-block__headline em {
  color: var(--color-accent);
  font-style: normal;
}
.about-light-block__body {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-charcoal-700);
  margin-bottom: var(--sp-8);
}
.about-light-block__matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.about-light-block__pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--clr-white);
  border: 1px solid var(--color-border-mid);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.about-light-block__pillar:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.about-light-block__pillar-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-accent);
  line-height: 1;
}
.about-light-block__pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-1);
}
.about-light-block__pillar-desc {
  font-size: var(--text-xs);
  color: var(--clr-steel-500);
  line-height: var(--lh-normal);
}
.about-light-block__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-light-block__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .about-light-block__visual {
    min-height: 440px;
  }
  .about-light-block__main-frame {
    width: 90%;
  }
  .about-light-block__main-frame img {
    height: 360px;
  }
  .about-light-block__sub-frame {
    width: 55%;
  }
  .about-light-block__sub-frame img {
    height: 180px;
  }
}
@media (max-width: 640px) {
  .about-light-block {
    padding: var(--sp-16) var(--sp-5);
  }
  .about-light-block__matrix {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .about-light-block__main-frame {
    width: 100%;
  }
  .about-light-block__sub-frame {
    display: none;
  }
  .about-light-block__motto-chip {
    top: auto;
    bottom: -15px;
    right: 10px;
  }
}

/* ============================================================
   EXQUISITE EDITORIAL REDESIGN (ABOUT & WHAT WE DO)
   ============================================================ */

/* --- 1. ABOUT EXQUISITE SECTION --- */
.about-exquisite {
  background: #FAF9F6;
  color: var(--clr-charcoal-900);
  padding: var(--sp-24) var(--sp-8);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border-mid);
  border-bottom: 1px solid var(--color-border-mid);
}
.about-exquisite__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.about-exquisite__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-exquisite__visual-col {
  position: relative;
}
.about-exquisite__hero-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(14, 16, 18, 0.15);
  background: var(--clr-charcoal-900);
}
.about-exquisite__hero-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.about-exquisite__hero-frame:hover img {
  transform: scale(1.03);
}
.about-exquisite__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,16,18,0.2) 0%, rgba(14,16,18,0) 40%, rgba(14,16,18,0.4) 100%);
  pointer-events: none;
}
.about-exquisite__glass-pill {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  background: rgba(14, 16, 18, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.about-exquisite__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}
.about-exquisite__motto-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-brass-300);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.1em;
  color: var(--clr-charcoal-900);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: var(--shadow-md);
}
.about-exquisite__star {
  color: var(--color-brass-500);
}

/* Right Editorial Content Column */
.about-exquisite__content-col {
  position: relative;
}
.about-exquisite__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin: var(--sp-3) 0 var(--sp-5);
}
.about-exquisite__title em {
  color: var(--color-accent);
  font-style: normal;
}
.about-exquisite__lead {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-charcoal-700);
  margin-bottom: var(--sp-8);
}
.about-exquisite__matrix {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--sp-8);
  border-top: 1px solid rgba(20, 22, 24, 0.1);
}
.about-exquisite__row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(20, 22, 24, 0.08);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.about-exquisite__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: var(--color-brass-500);
  min-width: 28px;
}
.about-exquisite__row-body h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-charcoal-900);
  margin-bottom: 2px;
}
.about-exquisite__row-body p {
  font-size: var(--text-xs);
  color: var(--clr-steel-500);
  line-height: var(--lh-normal);
  margin: 0;
}
.about-exquisite__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}


/* --- 2. SERVICES EXQUISITE SECTION --- */
.services-exquisite {
  background: var(--clr-white);
  color: var(--clr-charcoal-900);
  padding: var(--sp-24) var(--sp-8);
}
.services-exquisite__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.services-exquisite__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.services-exquisite__header-right {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
}
.services-exquisite__intro {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-charcoal-700);
  margin: 0;
}

/* Gallery Grid */
.services-exquisite__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.service-exquisite-card {
  background: var(--clr-sand-50);
  border: 1px solid var(--color-border-mid);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-normal) var(--ease-out-quart),
    box-shadow var(--dur-normal) var(--ease-out-quart),
    border-color var(--dur-normal) var(--ease-out-quart);
}
.service-exquisite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(14, 16, 18, 0.12), 0 4px 12px rgba(14, 16, 18, 0.04);
  border-color: var(--color-brass-400);
}
.service-exquisite-card__media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--clr-charcoal-900);
}
.service-exquisite-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.service-exquisite-card:hover .service-exquisite-card__media img {
  transform: scale(1.03);
}
.service-exquisite-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,16,18,0.7) 0%, rgba(14,16,18,0) 60%);
}
.service-exquisite-card__num {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  color: var(--color-brass-400);
  background: rgba(14, 16, 18, 0.85);
  backdrop-filter: blur(6px);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 4px;
}
.service-exquisite-card__tag {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--clr-white);
}

.service-exquisite-card__content {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-exquisite-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: var(--clr-charcoal-900);
  margin-bottom: var(--sp-2);
}
.service-exquisite-card__desc {
  font-size: var(--text-xs);
  color: var(--clr-charcoal-700);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-5);
}
.service-exquisite-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: auto;
}
.service-exquisite-card__list li {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-steel-500);
  position: relative;
  padding-left: var(--sp-4);
}
.service-exquisite-card__list li::before {
  content: "•";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
.service-exquisite-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-charcoal-900);
  text-decoration: none;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border-mid);
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.service-exquisite-card__link:hover,
.service-exquisite-card:hover .service-exquisite-card__link {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .about-exquisite__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .about-exquisite__hero-frame img {
    height: 400px;
  }
  .services-exquisite__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-6);
  }
  .services-exquisite__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}
@media (max-width: 640px) {
  .services-exquisite__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .about-exquisite {
    padding: var(--sp-16) var(--sp-5);
  }
  .services-exquisite {
    padding: var(--sp-16) var(--sp-5);
  }
}









