*, *::before, *::after { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 10001;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 3px;
  transition: top .25s ease;
}

.skip-link:focus {
  top: 16px;
}

:root {
  --ink: #090909;
  --bg-primary: #090909;
  --bg-secondary: #0f0f0f;
  --bg-card: #141414;
  --bg-card-hover: #1b1b1b;
  --bg-input: #121212;
  --white: #f2eee8;
  --text-main: #f2eee8;
  --text-muted: rgba(242, 238, 232, 0.65);
  --text-sub: rgba(242, 238, 232, 0.45);
  --orange: #C46A32;
  --gold: #d4af37;
  --line: rgba(242, 238, 232, .15);
  --line-strong: rgba(242, 238, 232, .28);
  --header-bg: rgba(9, 9, 9, 0.72);
  --mobile-bg: #080808;
  --mobile-link-bg: #141414;
  --mobile-link-border: rgba(255, 255, 255, 0.08);
  --mobile-link-text: #ffffff;
  --modal-bg: #121212;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
  --ink: #fbfaf7;
  --bg-primary: #fbfaf7;
  --bg-secondary: #f3f0e8;
  --bg-card: #ffffff;
  --bg-card-hover: #f7f5ef;
  --bg-input: #ffffff;
  --white: #111111;
  --text-main: #141414;
  --text-muted: #555555;
  --text-sub: #777777;
  --orange: #B85820;
  --gold: #9e7a20;
  --line: rgba(0, 0, 0, .12);
  --line-strong: rgba(0, 0, 0, .24);
  --header-bg: rgba(251, 250, 247, 0.88);
  --mobile-bg: #ffffff;
  --mobile-link-bg: #f4f1ea;
  --mobile-link-border: rgba(0, 0, 0, 0.08);
  --mobile-link-text: #141414;
  --modal-bg: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Theme Toggle Button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f2eee8 !important;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}

.theme-toggle:hover {
  background: rgba(196, 106, 50, 0.18) !important;
  border-color: #C46A32 !important;
  color: #C46A32 !important;
  transform: translateY(-1px);
}

.theme-toggle-icon {
  font-size: 13px;
  line-height: 1;
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-theme-btn {
  padding: 6px 9px;
  font-size: 13px;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

section[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 900px) {
  section[id] { scroll-margin-top: 78px; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  touch-action: manipulation;
  cursor: none;
}

main {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img, video {
  max-width: 100%;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  transition: opacity .2s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242,238,232,.4);
  transition: width .25s ease, height .25s ease, border-color .25s ease, opacity .2s ease, background .25s ease;
}

.cursor-ring.is-active {
  width: 56px;
  height: 56px;
  border-color: var(--orange);
}

.cursor-ring.is-view {
  width: 84px;
  height: 84px;
  border-color: var(--orange);
  background: rgba(9,9,9,.55);
}

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.6);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  opacity: 0;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}

.cursor-label.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), visibility .7s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  opacity: 0;
  animation: preloader-fade .5s ease .1s forwards;
  position: relative;
  padding-bottom: 14px;
}

.preloader-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(242,238,232,.14);
}

.preloader-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--orange);
  animation: preloader-bar 1.1s cubic-bezier(.4,0,.2,1) .15s forwards;
}

@keyframes preloader-fade {
  to { opacity: 1; }
}

@keyframes preloader-bar {
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

.side-progress {
  position: fixed;
  right: 26px;
  top: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
  color: rgba(242,238,232,.55);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.side-progress.is-visible {
  opacity: 1;
  visibility: visible;
}

.side-progress-current {
  color: var(--orange);
}

.side-progress-line {
  width: 1px;
  height: 28px;
  background: rgba(242,238,232,.2);
}

@media (max-width: 900px) {
  .side-progress { display: none; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  background: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  width: min(100% - 64px, 1440px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .20em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .6s cubic-bezier(.2,.7,.2,1) .08s forwards;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  animation: brand-accent .55s cubic-bezier(.2,.7,.2,1) .18s forwards;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 28px);
}

.desktop-nav > a {
  position: relative;
  color: rgba(242,238,232,.88);
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .13em;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .6s cubic-bezier(.2,.7,.2,1) forwards;
  white-space: nowrap;
}

.desktop-nav > a:nth-child(1) { animation-delay: .16s; }
.desktop-nav > a:nth-child(2) { animation-delay: .22s; }
.desktop-nav > a:nth-child(3) { animation-delay: .28s; }
.desktop-nav > a:nth-child(4) { animation-delay: .34s; }
.desktop-nav > a:nth-child(5) { animation-delay: .40s; }

.desktop-nav > a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease-out;
}

.desktop-nav > a:not(.cta):hover::after,
.desktop-nav > a:not(.cta):focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav > a.is-active {
  color: var(--orange);
}

.desktop-nav > a.is-active::after {
  transform: scaleX(1);
}

.mobile-menu a.is-active {
  color: var(--orange);
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px !important;
  background: var(--orange) !important;
  color: #090909 !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  border-radius: 4px;
  border: 1px solid var(--orange) !important;
  box-shadow: 0 4px 16px rgba(196, 106, 50, 0.35);
  transition: all .25s cubic-bezier(.2,.7,.2,1);
}

.cta:hover,
.cta:focus-visible {
  background: #d8763a !important;
  border-color: #d8763a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196, 106, 50, 0.55);
}

.cta span,
.mobile-cta span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .25s ease;
}

.cta:hover span,
.cta:focus-visible span,
.mobile-cta:hover span,
.mobile-cta:focus-visible span {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #090909;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url("hero.png")
    center center / cover
    no-repeat;
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.002);
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.05) 43%, rgba(0,0,0,.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 34%, rgba(0,0,0,.20) 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1440px) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 42vw);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(242,238,232,.75);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .20em;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .7s cubic-bezier(.2,.7,.2,1) .42s forwards;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.035em;
  opacity: 0;
  transform: translateY(10px);
  animation: reveal .85s cubic-bezier(.2,.7,.2,1) .48s forwards;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.dummy-section {
  height: 70vh;
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,.04);
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brand-accent {
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .navbar {
    width: min(100% - 32px, 1440px);
    height: 74px;
  }

  .desktop-nav { display: none; }
  .nav-mobile-actions { display: flex; }
  .menu-toggle { display: block; z-index: 100000; position: relative; }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #080808 !important;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    min-height: 100%;
    padding: 86px 20px 40px;
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .mobile-menu-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--white);
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .mobile-menu-links a .menu-arrow {
    color: var(--orange);
    font-size: 15px;
    transition: transform .2s ease;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a:focus-visible,
  .mobile-menu-links a.is-active {
    background: rgba(196, 106, 50, 0.16) !important;
    border-color: var(--orange) !important;
    color: var(--orange) !important;
  }

  .mobile-menu-links a:hover .menu-arrow,
  .mobile-menu-links a:focus-visible .menu-arrow {
    transform: translateX(4px);
  }

  .mobile-menu-links a.mobile-cta {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #090909 !important;
    font-weight: 800;
    justify-content: center;
    margin-top: 6px;
    box-shadow: 0 4px 18px rgba(196, 106, 50, 0.35);
  }

  .site-header.menu-open .mobile-menu-links a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-header.menu-open .mobile-menu-links a:nth-child(1) { transition-delay: .04s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(2) { transition-delay: .08s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(3) { transition-delay: .12s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(4) { transition-delay: .16s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(5) { transition-delay: .20s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(6) { transition-delay: .24s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(7) { transition-delay: .28s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(8) { transition-delay: .32s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(9) { transition-delay: .36s; }
  .site-header.menu-open .mobile-menu-links a:nth-child(10) { transition-delay: .40s; }

  .hero-content {
    left: 20px;
    width: min(520px, calc(100vw - 40px));
  }
}

@media (max-width: 600px) {
  .navbar { width: calc(100% - 32px); }
  .brand { font-size: 11px; letter-spacing: .16em; }
  .hero {
    min-height: 78svh;
  }
  .hero-image {
    background-position: 62% center;
  }
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.16) 100%),
      linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.25) 100%);
  }
  .hero-content {
    left: 20px;
    width: calc(100vw - 40px);
    top: 54%;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }
  h1 {
    font-size: clamp(34px, 11vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Projects — minimal editorial showcase */
.projects-section {
  position: relative;
  background: var(--ink);
  padding: clamp(96px, 11vw, 170px) 0 clamp(110px, 12vw, 190px);
  border-top: 1px solid rgba(255,255,255,.04);
}

.projects-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.projects-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(64px, 8vw, 120px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.projects-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .20em;
}

.projects-header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -.045em;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: clamp(90px, 12vw, 190px);
}

.project {
  position: relative;
  width: min(100%, 1120px);
}

.project--wide {
  align-self: flex-start;
}

.project--offset {
  width: min(78%, 900px);
  align-self: flex-end;
}

.project--right {
  align-self: flex-end;
}

.project--last {
  align-self: flex-start;
}

.project-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  color: inherit;
  text-decoration: none;
}

.project img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.project-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.03) 18%,
    rgba(0,0,0,.20) 42%,
    rgba(0,0,0,.82) 100%
  );
  opacity: .78;
  transition: opacity .35s ease;
}

.project-number {
  position: absolute;
  top: clamp(20px, 3vw, 38px);
  left: clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(242,238,232,.82);
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .18em;
}

.project-number::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange);
  transform-origin: left center;
  transition: width .35s ease, background .35s ease;
}

.project-copy {
  position: absolute;
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(5px);
  transition: transform .35s ease;
}

.project-meta {
  margin-bottom: 11px;
  color: rgba(242,238,232,.64);
  font-size: 8px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .18em;
}

.project h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.project h3 span,
.project h3 em {
  display: block;
}

.project h3 em {
  color: var(--orange);
  font-style: normal;
  transition: color .35s ease;
}

.project-copy p {
  margin: 15px 0 0;
  max-width: 420px;
  color: rgba(242,238,232,.66);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .035em;
  opacity: .78;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}

.project-media:hover img,
.project-media:focus-visible img {
  transform: scale(1.025);
}

.project-media:hover .project-overlay,
.project-media:focus-visible .project-overlay {
  opacity: .9;
}

.project-media:hover .project-copy,
.project-media:focus-visible .project-copy {
  transform: translateY(0);
}

.project-media:hover .project-copy p,
.project-media:focus-visible .project-copy p {
  opacity: 1;
  transform: translateY(0);
}

.project-media:hover .project-number::before,
.project-media:focus-visible .project-number::before {
  width: 24px;
}

@media (max-width: 900px) {
  .projects-wrap {
    width: min(100% - 40px, 1440px);
  }

  .project,
  .project--offset,
  .project--wide,
  .project--right,
  .project--last {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 600px) {
  .projects-section {
    padding: 88px 0 110px;
  }

  .projects-wrap {
    width: calc(100% - 40px);
  }

  .projects-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 58px;
  }

  .projects-list {
    gap: 72px;
  }

  .project-media {
    aspect-ratio: 4 / 5;
  }

  .project-number {
    top: 20px;
    left: 20px;
  }

  .project-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: none;
  }

  .project-overlay {
    opacity: .84;
  }

  .project h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .project-meta {
    font-size: 8px;
    letter-spacing: .13em;
  }

  .project-copy p {
    opacity: 1;
    transform: none;
  }
}

/* Quiet motion system — restrained editorial reveals */
.hero-image {
  opacity: .68;
  filter: brightness(.72);
  animation: hero-image-reveal .9s cubic-bezier(.2,.7,.2,1) .04s forwards;
}

@keyframes hero-image-reveal {
  to {
    opacity: 1;
    filter: brightness(1);
  }
}

.what-we-do {
  position: relative;
  background: #0b0b0b;
  padding: clamp(100px, 12vw, 180px) 0 clamp(120px, 14vw, 200px);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.035);
  overflow: hidden;
}

.what-we-do-wrap {
  width: min(100% - 64px, 1360px);
  margin: 0 auto;
}

.what-we-do-intro {
  max-width: 1160px;
  margin-bottom: clamp(88px, 10vw, 138px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.what-we-do-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro-label {
  position: relative;
  display: inline-block;
  padding-bottom: 9px;
  color: var(--orange);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-intro-label > span {
  display: none;
}

.section-intro-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  opacity: .8;
  transition: width .75s cubic-bezier(.2,.7,.2,1);
}

.what-we-do-intro.is-visible .section-intro-label::after {
  width: 100%;
}

.what-we-do-intro h2 {
  max-width: 1080px;
  margin: 25px 0 0;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: .91;
  font-weight: 600;
  letter-spacing: -.012em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .72s ease .12s, transform .72s cubic-bezier(.2,.7,.2,1) .12s;
}

.what-we-do-intro.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do-intro h2 em {
  color: var(--orange);
  font-style: normal;
}

.capabilities {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 13vw, 190px);
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  align-items: center;
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.capability.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.capability:nth-child(2) { transition-delay: .10s; }
.capability:nth-child(3) { transition-delay: .20s; }
.capability:nth-child(4) { transition-delay: .30s; }

.capability:nth-child(even) {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.capability:nth-child(even) .capability-media {
  order: 2;
}

.capability:nth-child(even) .capability-content {
  order: 1;
  padding-left: 0;
  padding-right: clamp(36px, 6vw, 110px);
}

.capability-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  color: inherit;
  text-decoration: none;
  clip-path: inset(0 100% 0 0);
  opacity: .72;
  transition: clip-path .85s cubic-bezier(.2,.7,.2,1), opacity .65s ease;
}

.capability.is-visible .capability-media {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.capability-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.capability--build .capability-media img,
.capability--civil .capability-media img,
.capability--renovate .capability-media img {
  object-position: center top;
}

@media (min-width: 901px) {
  .capability--build .capability-media,
  .capability--civil .capability-media,
  .capability--renovate .capability-media {
    aspect-ratio: 1.18 / 1;
  }
}

.capability-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
  pointer-events: none;
  transition: background .35s ease;
}

.capability-content {
  max-width: 620px;
  padding-left: clamp(36px, 6vw, 110px);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .6s ease .18s, transform .6s cubic-bezier(.2,.7,.2,1) .18s;
}

.capability.is-visible .capability-content {
  opacity: 1;
  transform: translateY(0);
}

.capability-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 9px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .19em;
}

.capability-label span:nth-child(2) {
  opacity: .65;
}

.capability-label::after {
  content: "";
  width: 0;
  height: 1px;
  margin-left: 4px;
  background: var(--orange);
  transition: width .35s ease;
}

.capability:hover .capability-label::after,
.capability:focus-within .capability-label::after {
  width: 22px;
}

.capability h3 {
  margin: 0;
  max-width: 560px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .86;
  font-weight: 700;
  letter-spacing: -.018em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.capability p {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(242,238,232,.62);
  font-size: 11px;
  line-height: 1.75;
  font-weight: 500;
}

.capability-media:hover img,
.capability-media:focus-visible img {
  transform: scale(1.025);
}

.capability-media:hover .capability-overlay,
.capability-media:focus-visible .capability-overlay {
  background: rgba(0,0,0,.18);
}

.capability:has(.capability-media:hover) h3,
.capability:has(.capability-media:focus-visible) h3 {
  transform: translateY(-4px);
}

.projects-section {
  background: var(--ink);
  padding-top: clamp(90px, 12vw, 175px);
}

.projects-kicker {
  margin-bottom: clamp(54px, 7vw, 100px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}

.projects-kicker.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.project.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project.reveal-on-scroll:nth-child(2) { transition-delay: .08s; }
.project.reveal-on-scroll:nth-child(3) { transition-delay: .16s; }
.project.reveal-on-scroll:nth-child(4) { transition-delay: .24s; }

.project-media.reveal-image {
  opacity: .85;
  transition: opacity .5s ease .25s;
}

.project.is-visible .project-media.reveal-image {
  opacity: 1;
}

.project-media.reveal-image::before {
  content: "";
  position: absolute;
  inset: -15% -25%;
  z-index: 2;
  background: var(--ink);
  transform: skewX(-14deg) translateX(0%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}

.project-media.reveal-image::after {
  content: "";
  position: absolute;
  inset: -15% -25%;
  z-index: 2;
  background: var(--orange);
  transform: skewX(-14deg) translateX(0%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1) .09s;
  pointer-events: none;
}

.project.is-visible .project-media.reveal-image::before {
  transform: skewX(-14deg) translateX(135%);
}

.project.is-visible .project-media.reveal-image::after {
  transform: skewX(-14deg) translateX(135%);
}

.final-cta {
  position: relative;
  background: #0b0b0b;
  padding: clamp(110px, 15vw, 220px) 0 clamp(120px, 16vw, 240px);
  border-top: 1px solid rgba(255,255,255,.04);
  overflow: hidden;
}

.final-cta-inner {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.final-cta-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta h2 {
  margin: 24px 0 0;
  max-width: 900px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 100px);
  line-height: .9;
  font-weight: 600;
  letter-spacing: -.055em;
}

.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(242,238,232,.62);
  font-size: 12px;
  line-height: 1.75;
}

.final-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 14px;
  border: 1px solid rgba(196,106,50,.65);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .17em;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.final-cta-link span {
  display: inline-block;
  transition: transform .3s ease;
}

.final-cta-link:hover,
.final-cta-link:focus-visible {
  background: rgba(196,106,50,.1);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.final-cta-link:hover span,
.final-cta-link:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .what-we-do-wrap,
  .final-cta-inner {
    width: min(100% - 40px, 1280px);
  }

  .capability,
  .capability:nth-child(even) {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .capability:nth-child(even) .capability-media {
    order: 2;
  }

  .capability:nth-child(even) .capability-content {
    padding-right: 28px;
  }

  .capability-content {
    padding-left: 28px;
  }

  .capability h3 {
    font-size: clamp(36px, 5vw, 54px);
  }
}

@media (max-width: 600px) {
  .hero-image {
    animation-duration: .7s;
  }

  .what-we-do {
    padding: 88px 0 112px;
  }

  .what-we-do-wrap,
  .final-cta-inner {
    width: calc(100% - 40px);
  }

  .what-we-do-intro {
    max-width: 100%;
    margin-bottom: 72px;
  }

  .section-intro-label {
    font-size: 8px;
    letter-spacing: .2em;
    padding-bottom: 8px;
  }

  .what-we-do-intro h2 {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(40px, 10.8vw, 58px);
    line-height: .92;
    letter-spacing: -.014em;
  }

  .capabilities {
    gap: 78px;
  }

  .capability,
  .capability:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .capability:nth-child(even) .capability-media,
  .capability:nth-child(even) .capability-content {
    order: initial;
  }

  .capability-media {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .capability-content,
  .capability:nth-child(even) .capability-content {
    max-width: 100%;
    padding: 28px 0 0;
  }

  .capability h3 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 52px);
  }

  .capability p {
    max-width: 100%;
    margin-top: 16px;
    font-size: 10.5px;
  }

  .capability-label {
    margin-bottom: 13px;
  }

  .capability-media:hover img,
  .capability-media:focus-visible img {
    transform: scale(1.018);
  }

  .capability:has(.capability-media:hover) h3,
  .capability:has(.capability-media:focus-visible) h3 {
    transform: translateY(-2px);
  }

  .projects-section {
    padding-top: 86px;
  }

  .projects-kicker {
    margin-bottom: 52px;
  }

  .project.reveal-on-scroll {
    transform: translateY(12px);
  }

  .project-media.reveal-image::before,
  .project-media.reveal-image::after {
    transform: skewX(0deg) translateY(0%);
  }

  .project.is-visible .project-media.reveal-image::before,
  .project.is-visible .project-media.reveal-image::after {
    transform: skewX(0deg) translateY(130%);
  }

  .final-cta {
    padding: 96px 0 120px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 12vw, 66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    opacity: 1;
    filter: none;
  }

  .project-media.reveal-image {
    opacity: 1;
  }

  .project-media.reveal-image::before,
  .project-media.reveal-image::after {
    display: none;
  }

  .reveal-on-scroll,
  .capability,
  .section-intro h2,
  .projects-kicker,
  .final-cta-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .section-intro-label > span,
  .projects-kicker > span {
    width: 34px;
  }
}

/* Refined service accent: orange is reserved for alternating service names. */
.capability:nth-child(even) h3 {
  color: var(--orange);
}

.capability:nth-child(even) .capability-label {
  color: rgba(242,238,232,.72);
}

@media (max-width: 900px) {
  .capability h3 {
    font-size: clamp(42px, 7vw, 62px);
  }

  .capability:nth-child(even) h3 {
    color: var(--orange);
  }
}

@media (max-width: 600px) {
  .capability--build .capability-media,
  .capability--civil .capability-media,
  .capability--renovate .capability-media {
    aspect-ratio: 1.18 / 1;
  }

  .capability--demolish .capability-media {
    aspect-ratio: 4 / 5;
  }

  .capability h3 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: .88;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}

.stats-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 34px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  color: var(--white);
}

.stat-suffix {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--orange);
  margin-left: 2px;
}

.stat-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}

.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.9);
}

.stat-desc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.42);
}

@media (max-width: 900px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    padding: 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .stat {
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================================
   CHALLENGE / WHAT WE DO INTRO
   ============================================ */
.challenge-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  overflow: hidden;
}

.challenge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.025) 0,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 120px
  );
  pointer-events: none;
}

.challenge-wrap {
  position: relative;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.section-intro-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(242,238,232,.72);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.section-intro-label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro-label span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  transition: width .6s cubic-bezier(.2,.7,.2,1) .15s;
}

.section-intro-label.is-visible span {
  width: 40px;
}

.challenge-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.challenge-heading {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 7.2vw, 108px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
  max-width: 900px;
}

.challenge-heading .line {
  display: block;
  overflow: hidden;
}

.challenge-heading .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .85s cubic-bezier(.16,.84,.24,1), opacity .6s ease;
}

.challenge-heading .word.accent {
  color: var(--orange);
}

.challenge-heading.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}

.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(1) { transition-delay: .05s; }
.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(3) { transition-delay: .13s; }
.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(5) { transition-delay: .21s; }
.challenge-heading.is-visible .line[data-line="2"] .word { transition-delay: .3s; }

.challenge-copy {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.6);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .25s, transform .8s cubic-bezier(.2,.7,.2,1) .25s;
}

.challenge-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .challenge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .challenge-copy {
    max-width: 100%;
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(242,238,232,.22);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s, border-color .3s ease, background .3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.scroll-top span {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

.scroll-top:hover span {
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4vw, 48px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: .75;
}

.scroll-indicator-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(242,238,232,.8);
}

.scroll-indicator-line {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(242,238,232,.18);
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scroll-line-drop 2.1s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes scroll-line-drop {
  0%   { top: -100%; }
  55%  { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator-line::after { animation: none; top: 0; }
}

@media (max-width: 600px) {
  .scroll-indicator { display: none; }
}

/* ============================================
   HERO -> STATS TRANSITION SPACING
   ============================================ */
.stats-bar {
  margin-top: 0;
  padding-top: 2px;
}

.stats-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14) 50%, transparent);
}

/* ============================================
   PROJECT CARD PREMIUM TEXT
   ============================================ */
.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-type {
  color: rgba(242,238,232,.64);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
}

.project-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.project-location {
  color: rgba(242,238,232,.4);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
}

.project h3 {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: -.01em;
}

.ph-line {
  display: block;
  overflow: hidden;
}

.ph-word {
  display: inline-block;
  transform: translateY(100%);
  transition: transform .75s cubic-bezier(.16,.84,.24,1);
}

.project.is-visible .ph-line:nth-of-type(1) .ph-word {
  transition-delay: .1s;
}

.project.is-visible .ph-line:nth-of-type(2) .ph-word {
  transition-delay: .2s;
}

.project.is-visible .ph-word {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ph-word { transform: none; transition: none; }
}

/* ============================================
   PROJECTS HEADING UNDERLINE
   ============================================ */
.projects-underline {
  position: absolute;
  right: 0;
  bottom: -22px;
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,122,26,0));
  transition: width 1s cubic-bezier(.16,.84,.24,1) .3s;
}

.projects-header.is-visible .projects-underline {
  width: clamp(90px, 14vw, 200px);
}

@media (max-width: 900px) {
  .projects-underline {
    right: auto;
    left: 0;
    bottom: -18px;
  }
}

/* ============================================
   GENERIC MASK-REVEAL HEADING SYSTEM
   ============================================ */
.mask-heading {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
}

.reveal-mask {
  display: block;
  overflow: hidden;
}

.reveal-mask-word {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform .85s cubic-bezier(.16,.84,.24,1), opacity .6s ease;
}

.reveal-mask-word.accent {
  color: var(--orange);
}

.mask-heading.is-visible .reveal-mask-word {
  transform: translateY(0);
  opacity: 1;
}

.mask-heading.is-visible .reveal-mask:nth-of-type(1) .reveal-mask-word { transition-delay: .05s; }
.mask-heading.is-visible .reveal-mask:nth-of-type(2) .reveal-mask-word { transition-delay: .14s; }
.mask-heading.is-visible .reveal-mask:nth-of-type(3) .reveal-mask-word { transition-delay: .23s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-mask-word { transform: none; opacity: 1; transition: none; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.about-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.about-row .mask-heading {
  max-width: 620px;
}

.about-copy-col {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 10px;
}

.about-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(242,238,232,.62);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .1s, transform .8s cubic-bezier(.2,.7,.2,1) .1s;
}

.about-values.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-value-num {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.about-value-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.78);
}

@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.services-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.services-wrap .mask-heading {
  margin-bottom: clamp(50px, 7vw, 96px);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.service-row {
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.service-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-row:nth-child(2).is-visible { transition-delay: .06s; }
.service-row:nth-child(3).is-visible { transition-delay: .12s; }
.service-row:nth-child(4).is-visible { transition-delay: .18s; }

.service-link {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px) 4px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
  opacity: .06;
}

.service-link:hover::before,
.service-link:focus-visible::before {
  transform: scaleX(1);
}

.service-num {
  position: relative;
  z-index: 1;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: 14px;
  color: rgba(242,238,232,.4);
  transition: color .35s ease;
}

.service-link:hover .service-num {
  color: var(--orange);
}

.service-name {
  position: relative;
  z-index: 1;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -.01em;
  color: var(--white);
}

.service-desc {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  color: rgba(242,238,232,.48);
  max-width: 340px;
}

.service-arrow {
  position: relative;
  z-index: 1;
  justify-self: end;
  font-size: 16px;
  color: var(--white);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}

.service-link:hover .service-arrow,
.service-link:focus-visible .service-arrow {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .service-link {
    grid-template-columns: 40px 1fr 30px;
  }
  .service-desc {
    display: none;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}

.contact-bg-number {
  position: absolute;
  top: 50%;
  right: clamp(-40px, -2vw, 0px);
  transform: translateY(-50%);
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-intro {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
}

.contact-intro .mask-heading {
  margin-bottom: 22px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(242,238,232,.75);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease .05s, transform .7s cubic-bezier(.2,.7,.2,1) .05s;
}

.availability-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc84;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(61,220,132,.55);
  animation: availability-pulse 2.2s ease-out infinite;
}

@keyframes availability-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,220,132,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(61,220,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}

@media (prefers-reduced-motion: reduce) {
  .availability-dot { animation: none; }
}

.contact-copy {
  margin: 0 0 44px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(242,238,232,.6);
  max-width: 420px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.contact-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .1s, transform .8s cubic-bezier(.2,.7,.2,1) .1s;
}

.contact-details.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-detail {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit;
  text-decoration: none;
  transition: padding-left .3s cubic-bezier(.2,.7,.2,1);
}

a.contact-detail:hover {
  padding-left: 12px;
}

.contact-detail-label {
  flex-shrink: 0;
  width: 64px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.4);
}

.contact-detail-value {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: color .3s ease;
}

.contact-detail-arrow {
  font-size: 13px;
  color: var(--orange);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}

a.contact-detail:hover .contact-detail-value {
  color: var(--orange);
}

a.contact-detail:hover .contact-detail-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-form {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1), border-color .4s ease;
}

.contact-form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form:focus-within {
  border-color: rgba(255,122,26,.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.5);
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 10px 2px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  resize: none;
  transition: border-color .3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(242,238,232,.28);
}

.form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s ease, transform .2s ease;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}

.form-submit:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.form-submit:active {
  transform: scale(.98);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.form-submit span:last-child {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

.form-submit:hover span:last-child {
  transform: translateX(4px);
}

.form-status {
  margin: 0;
  min-height: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 900px) {
  .contact-wrap {
    flex-direction: column;
    gap: 48px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 0 32px;
}

.footer-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(242,238,232,.55);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(242,238,232,.35);
}

@media (max-width: 600px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   HERO -> STATS BLURRED BLEED
   ============================================ */
.hero-bleed {
  position: relative;
  height: clamp(120px, 15vw, 220px);
  overflow: hidden;
  background: #090909;
}

.hero-bleed-img {
  position: absolute;
  inset: -30% -6% auto -6%;
  height: 170%;
  background: url("hero.png") center 0% / cover no-repeat;
  filter: blur(42px) brightness(.4) saturate(1.05);
  transform: scale(1.12);
  opacity: .85;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,.15) 0%, rgba(9,9,9,.75) 55%, rgba(9,9,9,1) 100%);
}

@media (max-width: 600px) {
  .hero-bleed {
    height: clamp(80px, 18vw, 140px);
  }
}

/* ============================================
   MARQUEE CTA — full-bleed scrolling strip
   ============================================ */
.marquee-cta {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.marquee-cta-link {
  display: block;
  position: relative;
  text-decoration: none;
  padding: clamp(28px, 4vw, 46px) 0;
  transition: background .3s ease;
}

.marquee-cta-link:hover,
.marquee-cta-link:focus-visible {
  background: rgba(196,106,50,.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-cta-link:hover .marquee-track,
.marquee-cta-link:focus-visible .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 5.4vw, 68px);
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "◆";
  display: inline-block;
  margin-left: 28px;
  font-size: .28em;
  color: rgba(255,255,255,.25);
}

.marquee-track span em {
  margin-left: 28px;
  font-style: normal;
  color: var(--orange);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 600px) {
  .marquee-track span {
    padding: 0 18px;
  }
  .marquee-track span::after {
    margin-left: 18px;
  }
  .marquee-track span em {
    margin-left: 18px;
  }
}

/* ============================================
   PROJECT LIGHTBOX — full-screen case-study view
   ============================================ */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(100%, 780px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(.96) translateY(14px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}

.project-lightbox.is-open .lightbox-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-media {
  position: relative;
  min-height: 260px;
  background: #111;
  overflow: hidden;
}

.lightbox-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  position: relative;
  padding: clamp(28px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(9,9,9,.55);
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--orange);
  background: rgba(196,106,50,.15);
  transform: rotate(90deg);
}

.lightbox-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(242,238,232,.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.lightbox-info h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.lightbox-info p {
  margin: 0 0 28px;
  color: rgba(242,238,232,.6);
  font-size: 13px;
  line-height: 1.75;
  max-width: 420px;
}

.lightbox-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 20px;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 2px;
  transition: transform .25s ease, background .25s ease;
}

.lightbox-cta:hover,
.lightbox-cta:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 780px) {
  .lightbox-panel {
    grid-template-columns: 1fr;
    max-height: min(100%, 92svh);
    overflow-y: auto;
  }
  .lightbox-media {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-lightbox,
  .lightbox-panel {
    transition: none;
  }
}

/* ==========================================================================
   TRUSTED MATERIAL & INDUSTRY PARTNERS MARQUEE
   ========================================================================== */
.partners-section {
  position: relative;
  background: #080808;
  border-bottom: 1px solid rgba(242, 238, 232, 0.08);
  padding: 36px 0 32px;
  overflow: hidden;
}

.partners-wrap {
  width: 100%;
  margin: 0 auto;
}

.partners-label {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(242, 238, 232, 0.45);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: partners-scroll 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(242, 238, 232, 0.03);
  border: 1px solid rgba(242, 238, 232, 0.08);
  border-radius: 3px;
  min-width: 180px;
  transition: all 0.3s ease;
  cursor: default;
}

.partner-item:hover {
  background: rgba(196, 106, 50, 0.08);
  border-color: rgba(196, 106, 50, 0.35);
  transform: translateY(-2px);
}

.partner-logo {
  font-family: "Anton", sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: rgba(242, 238, 232, 0.85);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.partner-item:hover .partner-logo {
  color: var(--orange);
}

.partner-type {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(242, 238, 232, 0.45);
  margin-top: 3px;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 28px 0 24px;
  }
  .partners-track {
    gap: 18px;
    animation-duration: 22s;
  }
  .partner-item {
    min-width: 150px;
    padding: 10px 18px;
  }
  .partner-logo {
    font-size: 15px;
  }
  .partner-type {
    font-size: 9px;
  }
}

/* ==========================================================================
   WORK MEDIA GALLERY SECTION (PHOTOS & VIDEOS)
   ========================================================================== */
.gallery-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background: #0c0c0c;
}

.gallery-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

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

.gallery-subtitle {
  max-width: 460px;
  margin: 0;
  color: rgba(242, 238, 232, 0.65);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.gallery-filter-btn {
  padding: 10px 20px;
  background: rgba(242, 238, 232, 0.05);
  color: rgba(242, 238, 232, 0.75);
  border: 1px solid rgba(242, 238, 232, 0.12);
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn:focus-visible {
  background: rgba(242, 238, 232, 0.12);
  color: var(--white);
  border-color: rgba(242, 238, 232, 0.28);
}

.gallery-filter-btn.is-active {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.is-hidden {
  display: none !important;
}

.gallery-card {
  position: relative;
  background: #121212;
  border: 1px solid rgba(242, 238, 232, 0.08);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 106, 50, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.gallery-media-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #181818;
  overflow: hidden;
}

.gallery-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.gallery-card:hover .gallery-media-thumb img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.media-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 238, 232, 0.15);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 2px;
  z-index: 2;
}

.media-type-badge.video-badge {
  background: rgba(196, 106, 50, 0.9);
  color: var(--ink);
  font-weight: 700;
  border-color: var(--orange);
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 106, 50, 0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  z-index: 3;
}

.play-btn-circle svg {
  margin-left: 2px;
}

.gallery-card:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--white);
}

.gallery-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-meta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gallery-card-body h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.gallery-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(242, 238, 232, 0.6);
}

/* ==========================================================================
   FAQ SECTION (INTERACTIVE ACCORDION)
   ========================================================================== */
.faq-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.faq-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 24px;
}

.faq-intro-col .mask-heading {
  margin-bottom: 20px;
}

.faq-lead {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: rgba(242, 238, 232, 0.7);
  margin-bottom: 36px;
}

.faq-contact-card {
  padding: 24px;
  background: rgba(242, 238, 232, 0.03);
  border: 1px solid rgba(242, 238, 232, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 2px;
}

.faq-contact-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(242, 238, 232, 0.75);
}

.faq-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.faq-direct-link:hover {
  gap: 12px;
  color: var(--white);
}

.faq-list-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #111;
  border: 1px solid rgba(242, 238, 232, 0.09);
  border-radius: 3px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.accordion-item:hover,
.accordion-item.is-open {
  border-color: rgba(196, 106, 50, 0.4);
}

.accordion-item.is-open {
  background: #141414;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--orange);
}

.accordion-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  opacity: 0.85;
}

.accordion-question {
  flex-grow: 1;
}

.accordion-icon {
  font-family: "Barlow Condensed", monospace;
  font-size: 22px;
  font-weight: 400;
  color: rgba(242, 238, 232, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-open .accordion-content {
  max-height: 380px;
}

.accordion-body {
  padding: 0 26px 24px 62px;
}

.accordion-body p {
  margin: 0;
  color: rgba(242, 238, 232, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.accordion-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   BLOG / FIELD INSIGHTS SECTION
   ========================================================================== */
.blog-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background: #0b0b0b;
}

.blog-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 50px;
}

.blog-subtitle {
  max-width: 460px;
  margin: 0;
  color: rgba(242, 238, 232, 0.65);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #111;
  border: 1px solid rgba(242, 238, 232, 0.08);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 106, 50, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.blog-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #171717;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  z-index: 2;
}

.blog-content {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(242, 238, 232, 0.5);
  margin-bottom: 12px;
}

.blog-dot {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}

.blog-title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--orange);
}

.blog-excerpt {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 238, 232, 0.6);
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: gap 0.25s ease, color 0.25s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  gap: 12px;
  color: var(--white);
}

/* ==========================================================================
   ARTICLE READER MODAL
   ========================================================================== */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.article-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.article-modal-panel {
  position: relative;
  width: min(840px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #131313;
  border: 1px solid rgba(242, 238, 232, 0.15);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.article-modal.is-open .article-modal-panel {
  transform: translateY(0);
}

.article-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.8);
  border: 1px solid rgba(242, 238, 232, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: all 0.2s ease;
}

.article-modal-close:hover {
  background: var(--orange);
  color: var(--ink);
}

.article-modal-hero {
  position: relative;
  aspect-ratio: 21 / 9;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.article-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-meta {
  position: absolute;
  bottom: 16px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.article-modal-badge {
  color: var(--orange);
  font-weight: 700;
}

.article-modal-body {
  padding: 36px clamp(24px, 4vw, 48px) 44px;
}

.article-modal-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 24px;
}

.article-modal-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 238, 232, 0.8);
}

.article-modal-text p {
  margin: 0 0 18px;
}

.article-modal-text h4 {
  font-size: 18px;
  color: var(--white);
  margin: 28px 0 12px;
}

.article-modal-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(242, 238, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.article-modal-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(242, 238, 232, 0.7);
}

.article-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.article-modal-cta:hover {
  background: var(--white);
}

body.article-modal-open {
  overflow: hidden;
}

/* ==========================================================================
   BULLETPROOF MOBILE RESPONSIVE SYSTEM (FIX SIZING, ZOOM & OVERFLOW)
   ========================================================================== */

/* Universal Word Wrapping & Input Zoom Prevention */
h1, h2, h3, h4, h5, h6,
.mask-heading,
.challenge-heading,
.hero-content h1,
.gallery-hero h1,
.project-info h3,
.blog-title,
.service-name {
  word-break: break-word;
  overflow-wrap: break-word;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  font-size: 16px !important; /* Prevents auto-zoom on iOS */
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Tablet & Smaller Screens (<= 1024px) */
@media (max-width: 1024px) {
  .gallery-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Universal Container Fix for Mobile */
  .stats-wrap,
  .challenge-wrap,
  .projects-wrap,
  .about-wrap,
  .services-wrap,
  .faq-wrap,
  .blog-wrap,
  .contact-wrap,
  .gallery-wrap,
  .footer-wrap,
  .gallery-hero-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* Header & Navbar */
  .site-header {
    padding: 16px 0 !important;
  }

  .navbar {
    width: calc(100% - 32px) !important;
    left: 16px !important;
    margin: 0 auto !important;
    padding: 12px 18px !important;
  }

  /* Hero Section */
  .hero {
    min-height: 82svh !important;
    height: auto !important;
  }

  .hero-content {
    left: 20px !important;
    right: 20px !important;
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    top: 52% !important;
    transform: translateY(-50%) !important;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10vw, 54px) !important;
    line-height: 1.02 !important;
  }

  .eyebrow {
    font-size: 9px !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 12px !important;
  }

  /* Hide Side Progress on Mobile */
  .side-progress {
    display: none !important;
  }

  /* Headings */
  .mask-heading,
  .challenge-heading {
    font-size: clamp(30px, 8.5vw, 48px) !important;
    line-height: 1.05 !important;
  }

  .challenge-row,
  .about-row,
  .contact-wrap {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .about-copy-col,
  .contact-intro,
  .contact-form {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0 !important;
  }

  /* Stats Bar 2-column Grid */
  .stats-bar {
    padding: 0 !important;
  }

  .stats-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: 0 16px !important;
  }

  .stat {
    padding: 20px 12px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .stat-number {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  .stat-label {
    font-size: 9px !important;
  }

  .stat-desc {
    font-size: 11px !important;
  }

  /* Services */
  .service-link {
    grid-template-columns: 32px 1fr !important;
    row-gap: 8px !important;
    padding: 22px 0 !important;
  }

  .service-desc {
    grid-column: 2 / -1 !important;
  }

  .service-arrow {
    display: none !important;
  }

  /* Gallery & Blog */
  .gallery-header-row,
  .blog-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .gallery-filters {
    gap: 8px !important;
    margin-bottom: 28px !important;
  }

  .gallery-filter-btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  /* FAQ Accordion */
  .accordion-trigger {
    padding: 16px 18px !important;
    font-size: 15px !important;
    gap: 12px !important;
  }

  .accordion-body {
    padding: 0 18px 18px 46px !important;
  }

  /* Project Cards */
  .project,
  .project--offset,
  .project--wide,
  .project--right,
  .project--last {
    width: 100% !important;
    align-self: stretch !important;
  }

  .project-info {
    padding: 20px 18px !important;
  }

  .project-info h3 {
    font-size: clamp(22px, 6.5vw, 32px) !important;
  }

  /* Contact Form */
  .form-row input,
  .form-row textarea {
    padding: 14px 16px !important;
  }

  .contact-details {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Modals on Mobile */
  .lightbox-panel,
  .article-modal-panel {
    width: 95vw !important;
    max-height: 92vh !important;
    padding: 0 !important;
  }

  .article-modal-body {
    padding: 24px 20px 32px !important;
  }

  .article-modal-body h2 {
    font-size: 22px !important;
  }
}

/* Extra Small Mobile (<= 420px) */
@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 32px !important;
  }

  .mask-heading,
  .challenge-heading {
    font-size: 28px !important;
  }

  .stats-wrap {
    grid-template-columns: 1fr 1fr !important;
  }

  .stat {
    padding: 16px 8px !important;
  }

  .stat-number {
    font-size: 26px !important;
  }

  .stat-desc {
    display: none !important;
  }
}

/* ==========================================================================
   COMPLETE BULLETPROOF LIGHT MODE THEME OVERRIDES ([data-theme="light"])
   ========================================================================== */

[data-theme="light"] {
  color-scheme: light;
}

[data-theme="light"] body {
  background-color: #fbfaf7 !important;
  color: #1a1a1a !important;
}

[data-theme="light"] .grain-overlay {
  opacity: 0.02;
}

/* Header & Navigation in Light Theme — Keep identical to dark theme */
[data-theme="light"] .site-header {
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(5, 5, 5, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] .brand {
  color: #ffffff !important;
}

[data-theme="light"] .desktop-nav > a {
  color: rgba(242, 238, 232, 0.9) !important;
}

[data-theme="light"] .desktop-nav > a:hover,
[data-theme="light"] .desktop-nav > a.is-active {
  color: var(--orange) !important;
}

[data-theme="light"] .menu-toggle span {
  background: #ffffff !important;
}

[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

[data-theme="light"] .cta {
  background: var(--orange) !important;
  color: #090909 !important;
  border-color: var(--orange) !important;
}

[data-theme="light"] .cta:hover {
  background: #d8763a !important;
  color: #ffffff !important;
}

/* Side Progress & Scroll */
[data-theme="light"] .side-progress {
  color: rgba(20, 20, 20, 0.6) !important;
}

[data-theme="light"] .side-progress-current {
  color: var(--orange) !important;
}

[data-theme="light"] .side-progress-line {
  background: rgba(0, 0, 0, 0.15) !important;
}

/* Hero Section — PRESERVED 100% IDENTICAL TO DARK THEME */
[data-theme="light"] .hero {
  background: #090909 !important;
}

[data-theme="light"] .hero-image {
  opacity: 1 !important;
  filter: none !important;
}

[data-theme="light"] .hero-vignette {
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.05) 43%, rgba(0,0,0,.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 34%, rgba(0,0,0,.20) 100%) !important;
}

[data-theme="light"] .eyebrow {
  color: rgba(242,238,232,.75) !important;
}

[data-theme="light"] .hero-content h1,
[data-theme="light"] .hero h1 {
  color: #ffffff !important;
}

[data-theme="light"] .hero-content h1 em,
[data-theme="light"] .hero h1 em {
  color: var(--orange) !important;
}

[data-theme="light"] .hero-bleed {
  background: #090909 !important;
}

[data-theme="light"] .scroll-indicator-label {
  color: rgba(242, 238, 232, 0.65) !important;
}

[data-theme="light"] .scroll-indicator-line {
  background: rgba(242, 238, 232, 0.25) !important;
}

/* Stats Bar */
[data-theme="light"] .stats-bar {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .stat {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .stat-number,
[data-theme="light"] .stat-count,
[data-theme="light"] .stat-suffix {
  color: #0c0c0c !important;
}

[data-theme="light"] .stat-label {
  color: #1a1a1a !important;
}

[data-theme="light"] .stat-desc {
  color: #555555 !important;
}

/* Partners Marquee */
[data-theme="light"] .partners-section {
  background: #f4f1ea !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .partners-label {
  color: #666666 !important;
}

[data-theme="light"] .partner-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .partner-logo {
  color: #0c0c0c !important;
}

[data-theme="light"] .partner-type {
  color: var(--orange) !important;
}

/* Section Labels & Headings */
[data-theme="light"] .section-intro-label {
  color: var(--orange) !important;
}

[data-theme="light"] .section-intro-label span {
  background: var(--orange) !important;
}

[data-theme="light"] .mask-heading,
[data-theme="light"] .reveal-mask-word,
[data-theme="light"] .challenge-heading,
[data-theme="light"] .challenge-heading .word,
[data-theme="light"] #projects-title,
[data-theme="light"] #about-title,
[data-theme="light"] #services-title,
[data-theme="light"] #faq-title,
[data-theme="light"] #blog-title,
[data-theme="light"] #contact-title {
  color: #0c0c0c !important;
}

[data-theme="light"] .mask-heading .accent,
[data-theme="light"] .challenge-heading .accent,
[data-theme="light"] .reveal-mask-word.accent {
  color: var(--orange) !important;
}

/* Challenge Section */
[data-theme="light"] .challenge-section {
  background: #fbfaf7 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .challenge-copy {
  color: #383838 !important;
}

/* Projects Section */
[data-theme="light"] .projects-section {
  background: #fbfaf7 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .projects-kicker {
  color: var(--orange) !important;
}

[data-theme="light"] .projects-underline {
  background: rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] .project-info {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .project-number span {
  color: rgba(20, 20, 20, 0.4) !important;
}

[data-theme="light"] .project-type {
  color: var(--orange) !important;
}

[data-theme="light"] .project-location {
  color: #666666 !important;
}

[data-theme="light"] .project-dot {
  background: rgba(0, 0, 0, 0.25) !important;
}

[data-theme="light"] .project-copy h3,
[data-theme="light"] .ph-word {
  color: #0c0c0c !important;
}

[data-theme="light"] .project-copy h3 em .ph-word {
  color: var(--orange) !important;
}

[data-theme="light"] .project-copy p {
  color: #4a4a4a !important;
}

/* About Section */
[data-theme="light"] .about-section {
  background: #f4f1ea !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .about-copy {
  color: #383838 !important;
}

[data-theme="light"] .about-values li {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .about-value-num {
  color: var(--orange) !important;
}

[data-theme="light"] .about-value-text {
  color: #1a1a1a !important;
}

/* Services Section */
[data-theme="light"] .services-section {
  background: #fbfaf7 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .service-row {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .service-num {
  color: rgba(20, 20, 20, 0.4) !important;
}

[data-theme="light"] .service-name {
  color: #0c0c0c !important;
}

[data-theme="light"] .service-desc {
  color: #4a4a4a !important;
}

[data-theme="light"] .service-arrow {
  color: var(--orange) !important;
}

[data-theme="light"] .service-row:hover {
  background: #f5f2eb !important;
}

[data-theme="light"] .service-row:hover .service-name {
  color: var(--orange) !important;
}

/* FAQ Section */
[data-theme="light"] .faq-section {
  background: #f4f1ea !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .faq-lead {
  color: #444444 !important;
}

[data-theme="light"] .faq-contact-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .faq-contact-card p {
  color: #1a1a1a !important;
}

[data-theme="light"] .faq-direct-link {
  color: var(--orange) !important;
}

[data-theme="light"] .accordion-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .accordion-num {
  color: var(--orange) !important;
}

[data-theme="light"] .accordion-question {
  color: #0e0e0e !important;
}

[data-theme="light"] .accordion-item.is-open .accordion-question {
  color: var(--orange) !important;
}

[data-theme="light"] .accordion-icon {
  color: var(--orange) !important;
}

[data-theme="light"] .accordion-body {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .accordion-body p {
  color: #404040 !important;
}

[data-theme="light"] .accordion-body strong {
  color: #0e0e0e !important;
}

[data-theme="light"] .accordion-body a {
  color: var(--orange) !important;
}

/* Blog Section */
[data-theme="light"] .blog-section {
  background: #fbfaf7 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .blog-subtitle {
  color: #444444 !important;
}

[data-theme="light"] .blog-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .blog-meta span {
  color: #666666 !important;
}

[data-theme="light"] .blog-dot {
  background: rgba(0, 0, 0, 0.25) !important;
}

[data-theme="light"] .blog-title a {
  color: #0c0c0c !important;
}

[data-theme="light"] .blog-title a:hover {
  color: var(--orange) !important;
}

[data-theme="light"] .blog-excerpt {
  color: #4a4a4a !important;
}

[data-theme="light"] .blog-read-more {
  color: var(--orange) !important;
}

[data-theme="light"] .blog-read-more span {
  color: var(--orange) !important;
}

/* Article Modal Reader */
[data-theme="light"] .article-modal-panel {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .article-modal-close {
  background: #f2efe7 !important;
  color: #111111 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .article-modal-date,
[data-theme="light"] .article-modal-read {
  color: #666666 !important;
}

[data-theme="light"] #modalArticleTitle {
  color: #0c0c0c !important;
}

[data-theme="light"] .article-modal-text p,
[data-theme="light"] .article-modal-text li {
  color: #333333 !important;
}

[data-theme="light"] .article-modal-text h3,
[data-theme="light"] .article-modal-text h4,
[data-theme="light"] .article-modal-text strong {
  color: #0c0c0c !important;
}

[data-theme="light"] .article-modal-footer {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .article-modal-footer p {
  color: #222222 !important;
}

[data-theme="light"] .article-modal-cta {
  color: var(--orange) !important;
}

/* Contact Section */
[data-theme="light"] .contact-section {
  background: #f4f1ea !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .contact-bg-number {
  color: rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .availability-badge {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #333333 !important;
}

[data-theme="light"] .contact-copy {
  color: #383838 !important;
}

[data-theme="light"] .contact-detail {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .contact-detail-label {
  color: rgba(20, 20, 20, 0.5) !important;
}

[data-theme="light"] .contact-detail-value {
  color: #0c0c0c !important;
}

[data-theme="light"] .contact-detail-arrow {
  color: var(--orange) !important;
}

[data-theme="light"] .contact-form {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .form-row label {
  color: #1a1a1a !important;
}

[data-theme="light"] .form-row input,
[data-theme="light"] .form-row textarea {
  background: #f7f5ee !important;
  color: #0c0c0c !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
}

[data-theme="light"] .form-row input:focus,
[data-theme="light"] .form-row textarea:focus {
  background: #ffffff !important;
  border-color: var(--orange) !important;
}

[data-theme="light"] .form-row input::placeholder,
[data-theme="light"] .form-row textarea::placeholder {
  color: #777777 !important;
}

[data-theme="light"] .form-submit {
  background: var(--orange) !important;
  color: #ffffff !important;
}

[data-theme="light"] .form-status {
  color: #222222 !important;
}

/* Marquee CTA Banner */
[data-theme="light"] .marquee-cta {
  background: #080808 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] .marquee-track span {
  color: #f2eee8 !important;
}

[data-theme="light"] .marquee-track em {
  color: var(--orange) !important;
}

/* Footer in Light Mode */
[data-theme="light"] .site-footer {
  background: #f0ece3 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .footer-brand {
  color: #0c0c0c !important;
}

[data-theme="light"] .footer-nav a {
  color: #444444 !important;
}

[data-theme="light"] .footer-nav a:hover {
  color: var(--orange) !important;
}

[data-theme="light"] .footer-bottom p,
[data-theme="light"] .footer-bottom span {
  color: #666666 !important;
}

[data-theme="light"] .scroll-top {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #111111 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}

/* Lightbox Modal */
[data-theme="light"] .lightbox-panel {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18) !important;
}

[data-theme="light"] .lightbox-close {
  background: #f2efe7 !important;
  color: #111111 !important;
}

[data-theme="light"] .lightbox-number {
  color: var(--orange) !important;
}

[data-theme="light"] .lightbox-meta {
  color: #666666 !important;
}

[data-theme="light"] #lightboxTitle {
  color: #0c0c0c !important;
}

[data-theme="light"] #lightboxDesc {
  color: #444444 !important;
}

[data-theme="light"] .lightbox-cta {
  color: var(--orange) !important;
}

/* Gallery & Interior Showcase in Light Mode */
[data-theme="light"] .gallery-hero {
  background: linear-gradient(180deg, rgba(196, 106, 50, 0.08) 0%, rgba(251, 250, 247, 0) 100%) !important;
}

[data-theme="light"] .gallery-hero h1 {
  color: #0c0c0c !important;
}

[data-theme="light"] .gallery-hero-lead {
  color: #444444 !important;
}

[data-theme="light"] .gallery-filter-btn {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .gallery-filter-btn.is-active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

[data-theme="light"] .gallery-card,
[data-theme="light"] .interior-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .interior-showcase-section {
  background: #f6f3eb !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .interior-subtitle {
  color: #444444 !important;
}

[data-theme="light"] .interior-badge-count {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #1a1a1a !important;
}

[data-theme="light"] .interior-card-title {
  color: #0c0c0c !important;
}

[data-theme="light"] .interior-card-desc {
  color: #444444 !important;
}

[data-theme="light"] .interior-spec-chip {
  background: #f2eee7 !important;
  color: #333333 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .gallery-card-info h4 {
  color: #0c0c0c !important;
}

[data-theme="light"] .gallery-card-info p {
  color: #444444 !important;
}


/* =========================================================
   FINAL LIGHT THEME STABILIZATION
   Keeps the existing ALP BUILDCON design intact while making
   every light-theme surface/text combination readable.
   ========================================================= */
:root {
  --light-page: #fbfaf7;
  --light-surface: #f4f1ea;
  --light-card: #ffffff;
  --light-text: #111111;
  --light-muted: #555555;
  --light-subtle: #707070;
  --light-border: rgba(0,0,0,.10);
}

/* Header stays exactly identical to dark theme in all modes */
[data-theme="light"] .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(7, 7, 7, .68) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06) !important;
}

[data-theme="light"] .site-header .brand {
  color: #f2eee8 !important;
}

[data-theme="light"] .site-header .desktop-nav > a:not(.cta) {
  color: rgba(242, 238, 232, .88) !important;
}

[data-theme="light"] .site-header .desktop-nav > a:not(.cta):hover,
[data-theme="light"] .site-header .desktop-nav > a:not(.cta):focus-visible {
  color: #ffffff !important;
}

[data-theme="light"] .site-header .desktop-nav > a.is-active {
  color: #C46A32 !important;
}

[data-theme="light"] .site-header .menu-toggle span {
  background: #f2eee8 !important;
}

[data-theme="light"] .site-header .theme-toggle,
[data-theme="light"] .mobile-menu .theme-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f2eee8 !important;
}

[data-theme="light"] .site-header .theme-toggle:hover,
[data-theme="light"] .mobile-menu .theme-toggle:hover {
  background: rgba(196, 106, 50, 0.18) !important;
  border-color: #C46A32 !important;
  color: #C46A32 !important;
}

[data-theme="light"] .site-header .cta {
  background: #C46A32 !important;
  border-color: #C46A32 !important;
  color: #090909 !important;
}

[data-theme="light"] .site-header .cta:hover,
[data-theme="light"] .site-header .cta:focus-visible {
  background: #d8763a !important;
  border-color: #d8763a !important;
  color: #ffffff !important;
}

[data-theme="light"] .project-number { color: rgba(255,255,255,.82) !important; }
[data-theme="light"] .project-meta { color: rgba(255,255,255,.70) !important; }
[data-theme="light"] .project-copy p { color: rgba(255,255,255,.72) !important; }
[data-theme="light"] .capability p { color: var(--light-muted) !important; }
[data-theme="light"] .capability:nth-child(even) .capability-label { color: var(--light-muted) !important; }

[data-theme="light"] .final-cta {
  background: var(--light-page) !important;
  color: var(--light-text);
  border-top-color: var(--light-border) !important;
}

[data-theme="light"] .final-cta p,
[data-theme="light"] .lightbox-meta,
[data-theme="light"] .lightbox-info p {
  color: var(--light-muted) !important;
}

[data-theme="light"] .gallery-section {
  background: var(--light-page) !important;
  color: var(--light-text);
  border-top-color: var(--light-border) !important;
}

[data-theme="light"] .gallery-section .gallery-subtitle,
[data-theme="light"] .gallery-section .gallery-card p,
[data-theme="light"] .gallery-section .gallery-meta,
[data-theme="light"] .gallery-section .gallery-caption {
  color: var(--light-muted) !important;
}

[data-theme="light"] .gallery-section .gallery-card,
[data-theme="light"] .gallery-section .gallery-item {
  background: var(--light-card) !important;
  border-color: var(--light-border) !important;
}

[data-theme="light"] .scroll-indicator,
[data-theme="light"] .scroll-indicator span {
  color: var(--light-muted) !important;
  border-color: var(--light-muted) !important;
}

[data-theme="light"] .mobile-menu {
  background: rgba(10,10,10,.98) !important;
  color: #fff !important;
}

[data-theme="light"] .mobile-menu a { color: #fff !important; }
[data-theme="light"] .mobile-menu a:hover,
[data-theme="light"] .mobile-menu a.active { color: var(--accent, #C46A32) !important; }

[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select,
[data-theme="light"] button {
  color-scheme: light;
}

/* ==========================================================================
   LEADERSHIP & ADVISORY SECTION
   ========================================================================== */

.leadership-section {
  position: relative;
  background: var(--ink, #090909);
  color: var(--white, #f2eee8);
  padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.leadership-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 38px);
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}

.team-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:nth-child(2) { transition-delay: .08s; }
.team-card:nth-child(3) { transition-delay: .16s; }
.team-card:nth-child(4) { transition-delay: .24s; }
.team-card:nth-child(5) { transition-delay: .32s; }
.team-card:nth-child(6) { transition-delay: .40s; }
.team-card:nth-child(7) { transition-delay: .48s; }

.team-card:hover {
  border-color: rgba(196, 106, 50, 0.5);
  box-shadow: 0 16px 40px rgba(196, 106, 50, 0.18);
  transform: translateY(-4px);
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: none;
  transform: scale(1.01);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.team-card:hover .team-photo img {
  filter: none;
  transform: scale(1.05);
}

.team-photo::after {
  display: none;
}

.team-info {
  padding: 20px 22px 24px;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,.06);
}

.team-name {
  margin: 0 0 6px;
  color: var(--white, #f2eee8);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-role {
  margin: 0;
  color: var(--orange, #C46A32);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 28px auto 0;
  }
  .leadership-wrap {
    width: calc(100% - 32px);
  }
}

/* Standalone Hero for Gallery & Our Team */
.gallery-hero {
  padding: clamp(140px, 16vw, 195px) 0 36px;
  background: linear-gradient(180deg, rgba(196, 106, 50, 0.08) 0%, rgba(9, 9, 9, 0) 100%);
}

.gallery-hero-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.gallery-hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 12px 0 14px;
  color: var(--white);
}

.gallery-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Light Mode Overrides for Leadership & Header */
[data-theme="light"] .site-header {
  background: rgba(6, 6, 6, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(4, 4, 4, 0.98) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .leadership-section {
  background: #fbfaf7 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .team-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .team-card:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 16px 36px rgba(196, 106, 50, 0.12) !important;
}

[data-theme="light"] .team-photo img {
  filter: none !important;
}

[data-theme="light"] .team-photo::after {
  display: none !important;
}

[data-theme="light"] .team-info {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .team-name {
  color: #0c0c0c !important;
}

[data-theme="light"] .team-role {
  color: var(--orange) !important;
}



/* ==========================================================================
   COMPANY PROFILE PAGE STYLES
   ========================================================================== */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange, #ff6b35), #ff9f1c);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease-out;
}

.company-profile-page {
  background-color: var(--bg-primary, #0d0e11);
  color: var(--text-primary, #f2eee8);
}

.profile-hero {
  padding: 140px 0 40px;
  background: radial-gradient(circle at 50% 10%, rgba(255, 107, 53, 0.08) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-primary, #0d0e11) 0%, rgba(18, 20, 24, 0.95) 100%);
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.profile-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.profile-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange, #ff6b35);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange, #ff6b35);
  box-shadow: 0 0 8px var(--orange, #ff6b35);
}

.profile-hero-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
  color: var(--text-primary, #f2eee8);
}

.profile-hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-secondary, rgba(242, 238, 232, 0.72));
  max-width: 760px;
  margin: 0 auto 36px;
}

.profile-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.profile-toolbar-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-profile-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--orange, #ff6b35);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-profile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
  background: #ff7d4d;
}

.btn-profile-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
  color: var(--text-primary, #f2eee8);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-profile-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.profile-stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-secondary, rgba(242, 238, 232, 0.7));
}

.profile-stats-pill .stat-divider {
  opacity: 0.4;
}

/* Quick Jump Strip */
.profile-jump-strip {
  padding: 14px 0;
  background: var(--bg-secondary, #14171c);
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  position: sticky;
  top: 70px;
  z-index: 90;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jump-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.jump-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary, rgba(242, 238, 232, 0.6));
  white-space: nowrap;
}

.jump-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 0;
}

.jump-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary, #f2eee8);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.jump-chip:hover, .jump-chip.active {
  background: var(--orange, #ff6b35);
  color: #fff;
  border-color: var(--orange, #ff6b35);
}

/* Profile Pages Grid */
.profile-pages-section {
  padding: 50px 0 80px;
  background: var(--bg-primary, #0d0e11);
}

.profile-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .profile-pages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.profile-card {
  background: var(--bg-card, #161920);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.15);
}

.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.06));
}

.profile-page-badge {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange, #ff6b35);
}

.profile-page-total {
  color: var(--text-secondary, rgba(242, 238, 232, 0.45));
  font-weight: 500;
}

.profile-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-zoom-btn, .profile-page-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary, #f2eee8);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.profile-zoom-btn:hover, .profile-page-link:hover {
  background: var(--orange, #ff6b35);
  color: #fff;
  border-color: var(--orange, #ff6b35);
}

.profile-img-wrap {
  position: relative;
  width: 100%;
  background: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-img-wrap picture, .profile-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.profile-card:hover .profile-img-wrap img {
  transform: scale(1.015);
}

.profile-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.profile-card:hover .profile-img-overlay {
  opacity: 1;
}

.overlay-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

/* Lightbox Modal */
.profile-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.profile-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 95vw;
  max-width: 1300px;
  height: 92vh;
  background: #12151b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  overflow: hidden;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #0d0f14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-page-indicator {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange, #ff6b35);
  letter-spacing: 0.05em;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f2eee8;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.lightbox-btn:hover {
  background: var(--orange, #ff6b35);
  color: #fff;
  border-color: var(--orange, #ff6b35);
}

.lightbox-close-btn:hover {
  background: #e63946;
  border-color: #e63946;
}

.lightbox-body {
  flex: 1;
  position: relative;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #080a0d;
}

.lightbox-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #0d0f14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f2eee8;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: var(--orange, #ff6b35);
  color: #fff;
}

.lightbox-nav-btn.pdf {
  background: var(--orange, #ff6b35);
  color: #fff;
  border-color: var(--orange, #ff6b35);
}

/* Light Mode Overrides for Company Profile */
[data-theme="light"] .company-profile-page,
[data-theme="light"] .profile-hero,
[data-theme="light"] .profile-pages-section {
  background: #fbfaf7 !important;
  background-color: #fbfaf7 !important;
}

[data-theme="light"] .profile-hero {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .profile-hero-title {
  color: #111111 !important;
}

[data-theme="light"] .profile-hero-desc {
  color: #555555 !important;
}

[data-theme="light"] .profile-jump-strip {
  background: #f3f0e8 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .jump-chip {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #111111 !important;
}

[data-theme="light"] .profile-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .profile-card-header {
  background: #faf9f6 !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .profile-zoom-btn,
[data-theme="light"] .profile-page-link {
  background: #f0ede6 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #111111 !important;
}
